/* =========================================
   VIBECODEX — GLOBAL CSS
   ========================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* =====================
   PAGE LOADER
   ===================== */
#vs-loader {
  position: fixed; inset: 0; z-index: 9999;
  background:
    radial-gradient(ellipse 62% 58% at 50% 42%, #173322 0%, transparent 70%),
    radial-gradient(circle at 50% 55%, #0d1c13 0%, #081109 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 28px;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
#vs-loader.hide { opacity: 0; visibility: hidden; }

.loader-logo-wrap {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.loader-logo-wrap::before {
  content: ''; position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,192,144,0.20) 0%, rgba(95,154,118,0.12) 38%, transparent 70%);
  filter: blur(8px); z-index: 0;
  animation: loaderGlow 2.4s ease-in-out infinite;
}
@keyframes loaderGlow {
  0%,100% { opacity: 0.5; transform: scale(0.9); }
  50%     { opacity: 1;   transform: scale(1.08); }
}
.loader-logo-img {
  position: relative; z-index: 1;
  width: 170px; height: auto;
  animation: loaderLogoIn 0.85s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes loaderLogoIn {
  0%   { opacity: 0; transform: scale(0.7) translateY(16px); filter: blur(6px); }
  60%  { filter: blur(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}
.loader-bar {
  position: relative; z-index: 1;
  width: 170px; height: 3px;
  background: rgba(95,154,118,0.16);
  border-radius: 3px; overflow: hidden;
}
.loader-bar-fill {
  position: absolute; top: 0; left: 0;
  height: 100%; width: 45%; border-radius: 3px;
  background: linear-gradient(90deg, rgba(95,154,118,0), #5f9a76 35%, #d8c090 75%, rgba(216,192,144,0));
  animation: loaderSlide 1.15s cubic-bezier(0.65,0,0.35,1) infinite;
}
@keyframes loaderSlide {
  0%   { transform: translateX(-130%); }
  100% { transform: translateX(330%); }
}
@media (prefers-reduced-motion: reduce) {
  .loader-logo-wrap::before, .loader-bar-fill { animation: none; }
  .loader-logo-img { animation-duration: 0.3s; }
}

/* =====================
   SMOOTH PAGE ENTRANCE
   ===================== */
body { opacity: 0; transition: opacity 0.4s ease; }
body.loaded { opacity: 1; }

/* Hero staggered entrance */
.hero-badge   { animation: heroSlide 0.7s 0.15s cubic-bezier(0.22,1,0.36,1) both; }
.hero-title   { animation: heroSlide 0.7s 0.28s cubic-bezier(0.22,1,0.36,1) both; }
.hero-sub     { animation: heroSlide 0.7s 0.40s cubic-bezier(0.22,1,0.36,1) both; }
.hero-actions { animation: heroSlide 0.7s 0.50s cubic-bezier(0.22,1,0.36,1) both; }
.hero-stats   { animation: heroSlide 0.7s 0.60s cubic-bezier(0.22,1,0.36,1) both; }
.hero-visual  { animation: heroSlide 0.7s 0.35s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes heroSlide {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* Card spotlight glow on hover */
.service-mini, .stack-card, .testimonial-card, .portfolio-card, .faq-item {
  position: relative; overflow: hidden;
}
.service-mini::before, .stack-card::before, .testimonial-card::before, .portfolio-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(95,154,118,0.06), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none; z-index: 0;
}
.service-mini:hover::before, .stack-card:hover::before,
.testimonial-card:hover::before, .portfolio-card:hover::before { opacity: 1; }
.service-mini > *, .stack-card > *, .testimonial-card > *, .portfolio-card > * { position: relative; z-index: 1; }


/* =====================
   WHATSAPP BUTTON
   ===================== */
.wa-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  transition: all 0.3s;
  text-decoration: none;
}
.wa-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.5); }
.wa-btn span { white-space: nowrap; }
@media (max-width: 480px) { .wa-btn span { display: none; } .wa-btn { padding: 14px; border-radius: 50%; } }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials { padding: 110px 0; position: relative; z-index: 1; background: var(--bg); }
.testimonials-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; align-items: stretch; }
.testimonial-feature {
  background: linear-gradient(150deg, #21402e 0%, #142a1c 100%);
  border-radius: var(--radius-lg); padding: 48px 44px;
  display: flex; flex-direction: column; gap: 28px;
  color: #eef4ee; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.testimonial-feature::before {
  content: '\201D'; position: absolute; top: -36px; right: 14px;
  font-family: 'Space Grotesk', sans-serif; font-size: 13rem; line-height: 1;
  color: rgba(216,192,144,0.14); pointer-events: none;
}
.testimonial-feature > * { position: relative; }
.testimonial-feature .testimonial-stars { color: #d8c090; }
.testimonial-feature-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.55; font-weight: 500; flex: 1;
}
.testimonial-feature .testimonial-name strong { color: #fff; }
.testimonial-feature .testimonial-name span { color: rgba(238,244,238,0.65); }
.testimonials-side { display: flex; flex-direction: column; gap: 24px; }
.testimonials-side .testimonial-card { flex: 1; }
.testimonial-card {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 36px 30px; transition: all 0.35s cubic-bezier(0.22,1,0.36,1); display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow);
}
.testimonial-card:hover { border-color: rgba(47,112,83,0.22); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #c09c6c; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-dim); line-height: 1.8; font-style: italic; flex: 1; }
.testimonial-text::before { content: '"'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -0.55rem; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.testimonial-name strong { display: block; font-size: 0.9rem; font-weight: 700; }
.testimonial-name span { font-size: 0.78rem; color: var(--text-dim); }

/* =====================
   FAQ
   ===================== */
.faq-section { padding: 100px 0; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.faq-split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; }
.faq-intro { position: sticky; top: 110px; }
.faq-intro .section-tag { margin-bottom: 18px; }
.faq-intro h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); font-weight: 800; margin-bottom: 18px; letter-spacing: -0.8px; }
.faq-intro p { color: var(--text-dim); line-height: 1.75; margin-bottom: 30px; }
.faq-split .faq-list { max-width: none; margin: 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(95,154,118,0.35); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 0.95rem;
  user-select: none; gap: 16px;
}
.faq-question:hover { color: var(--purple); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(95,154,118,0.1); border: 1px solid rgba(95,154,118,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s, background 0.2s;
  font-size: 1rem; color: var(--purple);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(95,154,118,0.2); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px; color: var(--text-dim); font-size: 0.9rem; line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

@media (max-width: 900px) {
  .testimonials-layout { grid-template-columns: 1fr; }
  .testimonial-feature { padding: 38px 28px; }
  .faq-split { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
}

:root {
  --purple: #2f7053;
  --purple-light: #5f9a76;
  --blue: #1f3d2e;
  --warm: #c09c6c; /* goud uit de S van het logo */
  --warm-light: #d8c090;
  --gold: #a87f45;        /* accentgoud voor grote koppen */
  --gold-deep: #8a6636;   /* donkerder goud voor kleine labels (contrast) */
  --gold-bg: rgba(156,116,64,0.08);
  --gold-border: rgba(156,116,64,0.22);
  --bg: #f7f9f5;
  --bg2: #eef2eb;
  --bg3: #e3ebe1;
  --card: #ffffff;
  --border: rgba(47,112,83,0.09);
  --border-soft: rgba(0,0,0,0.06);
  --text: #14201a;
  --text-dim: #5c6b61;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow: 0 4px 20px rgba(47,112,83,0.07), 0 1px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 16px 48px rgba(47,112,83,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }
h1,h2,h3 { text-wrap: balance; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Zichtbare focus voor toetsenbordgebruikers */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--purple); outline-offset: 2px; border-radius: 4px;
}
.hero-dark a:focus-visible, .hero-dark button:focus-visible { outline-color: #a7d3b8; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Nadrukwoorden in koppen: effen goud (geen gradient-tekst — zie DESIGN.md) */
.gradient-text {
  color: var(--gold);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; background: var(--purple);
  color: #fff; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: background 0.25s, transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s; cursor: pointer; border: none;
  box-shadow: 0 4px 20px rgba(47,112,83,0.25), 0 1px 4px rgba(0,0,0,0.08);
}
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(47,112,83,0.35), 0 2px 8px rgba(0,0,0,0.08); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; background: white; color: var(--text);
  border-radius: 50px; font-weight: 500; border: 1.5px solid var(--border-soft); transition: all 0.25s;
  box-shadow: var(--shadow);
}
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); background: var(--bg2); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; background: transparent; color: var(--text);
  border-radius: 50px; font-weight: 600; border: 1.5px solid var(--border-soft); transition: all 0.25s; cursor: pointer; width: 100%;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.full-width { width: 100%; justify-content: center; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 5px 0; transition: all 0.3s;
  background: rgba(247,249,245,0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}
.navbar.scrolled {
  background: rgba(247,249,245,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft); padding: 3px 0;
  box-shadow: 0 2px 18px rgba(47,112,83,0.10);
}
.nav-container {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.88rem; color: var(--text-dim); font-weight: 500; transition: color 0.2s; padding: 4px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--purple); border-bottom-color: var(--purple); }
.nav-cta {
  padding: 10px 22px !important; background: var(--purple) !important;
  color: #fff !important; border-radius: 50px; font-weight: 600 !important; border-bottom: none !important;
}
.nav-cta:hover { box-shadow: 0 8px 30px rgba(95,154,118,0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 72px; }
/* Sectielabel: gewone goudkleurige zin, geen uppercase eyebrow-pill (zie DESIGN.md) */
.section-tag {
  display: inline-block; font-size: 0.95rem; color: var(--gold-deep);
  font-weight: 600; margin-bottom: 14px;
}
.hero-dark .section-tag {
  color: var(--warm-light);
}
.section-header h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 800; margin-bottom: 18px; letter-spacing: -0.8px; }
.section-header p { color: var(--text-dim); max-width: 540px; margin: 0 auto; font-size: 1rem; line-height: 1.75; }

/* BG DECORATIONS */
.page-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(47,112,83,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 70% 55% at 90% 80%, rgba(31,61,46,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 55% 45%, rgba(192,156,108,0.04) 0%, transparent 55%);
}
/* Ambient tint: statisch en nauwelijks zichtbaar — geen zwevende blur-orbs (zie DESIGN.md) */
.orb { position: absolute; border-radius: 50%; filter: blur(110px); }
.orb-1 { width: 700px; height: 600px; background: rgba(47,112,83,0.05); top: -200px; left: -200px; }
.orb-2 { width: 550px; height: 520px; background: rgba(31,61,46,0.04); top: 100px; right: -150px; }
.orb-3 { width: 450px; height: 400px; background: rgba(192,156,108,0.05); bottom: -50px; left: 30%; }

/* WAVE DIVIDER: uitgefaseerd — secties eindigen op een rechte lijn (zie DESIGN.md) */
.wave-divider { position: relative; z-index: 1; line-height: 0; overflow: hidden; margin-top: -2px; }
.wave-divider svg { display: none; }

/* PAGE HERO (non-home pages) */
.page-hero {
  padding: 140px 0 80px; text-align: center; position: relative; z-index: 1;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.page-hero p { font-size: 1.1rem; color: var(--text-dim); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* FOOTER */
.footer { padding: 48px 0 32px; border-top: 1px solid var(--border-soft); background: var(--bg2); position: relative; z-index: 1; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-brand p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.6; margin-top: 12px; max-width: 240px; }
.footer-links h5 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 14px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--purple); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-dim); border-top: 1px solid var(--border); padding-top: 24px; flex-wrap: wrap; gap: 12px; }

/* CARD BASE */
.card {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  box-shadow: var(--shadow); transition: all 0.3s;
}
.card:hover { border-color: rgba(47,112,83,0.2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* FORM */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-dim); }
.form-group input, .form-group select, .form-group textarea {
  background: white; border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm); padding: 12px 16px; color: var(--text);
  font-size: 0.9rem; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; outline: none; resize: vertical;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(47,112,83,0.1);
}
.form-group select option { background: white; }
.form-success {
  display: none; text-align: center; padding: 14px;
  background: rgba(47,112,83,0.07); border: 1px solid rgba(47,112,83,0.2);
  border-radius: var(--radius-sm); color: var(--purple); font-weight: 500; font-size: 0.9rem;
}
.form-success.show { display: block; }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: none; }

/* =====================
   HOME PAGE
   ===================== */
.hero-section {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; width: 100%;
}
.hero {
  display: flex; align-items: center; position: relative;
  padding: 130px 24px 100px; gap: 72px;
  max-width: 1180px; margin: 0 auto; width: 100%;
  z-index: 1;
}
.hero-content { flex: 1; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px;
  background: rgba(47,112,83,0.08); border: 1px solid rgba(47,112,83,0.18);
  border-radius: 50px; font-size: 0.82rem; color: var(--purple); font-weight: 500; margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.badge-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);box-shadow:0 0 0 3px rgba(34,197,94,0.2)} 50%{opacity:0.8;transform:scale(0.85);box-shadow:0 0 0 6px rgba(34,197,94,0.08)} }

.hero-title { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 800; line-height: 1.08; margin-bottom: 22px; letter-spacing: -1.5px; }
.hero-sub { font-size: 1.1rem; color: var(--text-dim); max-width: 500px; margin-bottom: 40px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; align-items: center; gap: 28px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.6rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif; color: var(--gold); }
.stat-label { font-size: 0.78rem; color: var(--text-dim); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-visual { flex: 0 0 500px; position: relative; z-index: 1; }

/* =====================
   HERO DARK
   ===================== */
.hero-dark {
  background: #0b1611; width: 100%;
}
.hero-dark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 80% at -5% 50%, rgba(47,112,83,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 55% 65% at 105% 20%, rgba(31,61,46,0.10) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero-dark .hero-content { color: #fff; }
.hero-dark .hero-sub { color: rgba(255,255,255,0.58); }
.hero-dark .stat-label { color: rgba(255,255,255,0.42); }
.hero-dark .stat-divider { background: rgba(255,255,255,0.1); }
.hero-dark .hero-badge {
  background: rgba(95,154,118,0.1);
  border-color: rgba(95,154,118,0.28);
  color: #a7d3b8;
}
.hero-dark .btn-ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
.hero-dark .btn-ghost:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(95,154,118,0.45);
  color: #fff;
  transform: translateY(-2px);
}

.wave-divider-dark { background: #0b1611; }

/* =====================
   CLAUDE CODE TERMINAL
   ===================== */
.cc-terminal {
  background: #0e1a14;
  border: 1px solid rgba(95,154,118,0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(95,154,118,0.06),
    0 32px 80px rgba(0,0,0,0.65),
    0 0 120px rgba(47,112,83,0.1);
  font-family: 'Courier New', 'Menlo', 'Monaco', monospace;
  min-height: 400px;
}
.cc-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.055);
}
.cc-dots { display: flex; gap: 7px; align-items: center; }
.cc-dot { width: 13px; height: 13px; border-radius: 50%; }
.cc-dot.cc-red    { background: #ff5f56; }
.cc-dot.cc-yellow { background: #ffbd2e; }
.cc-dot.cc-green  { background: #27c93f; box-shadow: 0 0 8px rgba(39,201,63,0.55); }
.cc-title-bar {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.77rem; color: rgba(255,255,255,0.35);
  font-family: inherit; letter-spacing: 0.02em;
}
.cc-body {
  padding: 20px 24px 28px;
  min-height: 360px;
  display: flex; flex-direction: column;
}
.cc-line {
  font-size: 0.87rem;
  line-height: 1.95;
  color: rgba(255,255,255,0.82);
  display: flex; align-items: baseline;
  white-space: pre;
}
.cc-spacer { height: 8px; flex-shrink: 0; }
.cc-dollar  { color: #22c55e; margin-right: 9px; font-weight: 700; }
.cc-chevron { color: #5f9a76; margin-right: 9px; font-size: 1rem; }
.cc-muted   { color: rgba(255,255,255,0.22) !important; font-size: 0.76rem !important; }
.cc-step    { font-size: 0.84rem; }
.cc-step-icon { width: 18px; display: inline-block; margin-right: 8px; flex-shrink: 0; }
.cc-done    { font-weight: 700; }
.cc-cursor  {
  color: #5f9a76;
  animation: ccBlink 1s step-end infinite;
  margin-left: 1px;
}
@keyframes ccBlink { 0%,49%{opacity:1} 50%,100%{opacity:0} }

/* =====================
   SERVICE MINI TERMINALS
   ===================== */
.svc-terminal {
  background: #0e1a14;
  border: 1px solid rgba(95,154,118,0.16);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  height: 148px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-mini:hover .svc-terminal {
  border-color: rgba(95,154,118,0.35);
  box-shadow: 0 0 24px rgba(47,112,83,0.12);
}
.svc-term-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.045);
}
.svc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.12); flex-shrink: 0;
}
.svc-dot:nth-child(1) { background: rgba(255,95,86,0.7); }
.svc-dot:nth-child(2) { background: rgba(255,189,46,0.7); }
.svc-dot-green { background: rgba(39,201,63,0.85) !important; box-shadow: 0 0 5px rgba(39,201,63,0.4); }
.svc-term-label {
  margin-left: 6px; font-size: 0.67rem; color: rgba(255,255,255,0.28);
  font-family: 'Courier New', monospace; letter-spacing: 0.01em;
}
.svc-term-body {
  padding: 8px 11px 6px;
  font-family: 'Courier New', 'Menlo', monospace;
  font-size: 0.7rem;
  line-height: 1.85;
  height: calc(148px - 30px);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-line {
  display: flex; align-items: baseline; gap: 0;
  color: rgba(255,255,255,0.75);
  white-space: pre;
}
.svc-dollar  { color: #22c55e; margin-right: 6px; font-weight: 700; }
.svc-chevron { color: #5f9a76; margin-right: 6px; }
.svc-muted   { color: rgba(255,255,255,0.2) !important; }
.svc-step    { }
.svc-done    { font-weight: 700; }
.svc-cursor  { color: #5f9a76; animation: ccBlink 1s step-end infinite; }

/* HOME SERVICES PREVIEW */
.home-services { padding: 100px 0; position: relative; z-index: 1; background: var(--bg2); }
.services-grid-4, .services-grid-5, .services-grid-6 { display: grid; gap: 20px; }
.services-grid-4 { grid-template-columns: repeat(4,1fr); }
.services-grid-5 { grid-template-columns: repeat(5,1fr); }
.services-grid-6 { grid-template-columns: repeat(3,1fr); }
.service-mini {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 28px 20px 24px; transition: all 0.35s cubic-bezier(0.22,1,0.36,1); text-align: center;
  box-shadow: var(--shadow);
}
.service-mini:hover { border-color: rgba(47,112,83,0.2); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-mini-icon { width: 48px; height: 48px; margin: 0 auto 14px; }
.service-mini h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-mini p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.55; }

/* HOME TECH STRIP */
.tech-strip { padding: 56px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); position: relative; z-index: 1; background: var(--bg); }
.tech-strip-inner { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.tech-item { display: flex; align-items: center; gap: 10px; color: var(--text-dim); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.tech-item:hover { color: var(--purple); }
.tech-item svg { opacity: 0.65; transition: opacity 0.2s; }
.tech-item:hover svg { opacity: 1; }

/* =====================
   SERVICES PAGE
   ===================== */
.services-page { padding: 0 0 100px; position: relative; z-index: 1; }
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 80px 0; border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-visual {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  height: 320px; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.service-block-content h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.service-block-content p { color: var(--text-dim); line-height: 1.75; margin-bottom: 24px; }
.service-tag-num { font-size: 0.75rem; font-weight: 700; color: var(--gold-deep); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-dim); }
.feature-dot { width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--purple), var(--blue)); flex-shrink: 0; }

/* =====================
   WERKWIJZE PAGE
   ===================== */
.werkwijze-page { padding: 0 0 100px; position: relative; z-index: 1; }
.stack-section { padding: 80px 0; }
.stack-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.stack-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; transition: all 0.3s;
}
.stack-card:hover { border-color: rgba(95,154,118,0.35); transform: translateY(-4px); }
.stack-card-icon { width: 52px; height: 52px; margin-bottom: 18px; }
.stack-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.stack-card p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.65; }
.stack-card .stack-badge {
  display: inline-block; margin-top: 14px; padding: 4px 12px;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 50px; font-size: 0.75rem; color: var(--gold-deep); font-weight: 600;
}

.flow-section { padding: 80px 0; border-top: 1px solid var(--border); }
.flow-steps { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.flow-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 40px 0;
  border-bottom: 1px solid var(--border); align-items: start;
}
.flow-step:last-child { border-bottom: none; }
.flow-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(216,192,144,0.25), rgba(156,116,64,0.10));
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--gold-deep);
  flex-shrink: 0;
}
.flow-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.flow-content p { font-size: 0.92rem; color: var(--text-dim); line-height: 1.7; }
.flow-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.flow-tag {
  padding: 4px 12px; background: rgba(44,94,70,0.1); border: 1px solid rgba(44,94,70,0.2);
  border-radius: 50px; font-size: 0.75rem; color: var(--blue); font-weight: 600;
}

/* =====================
   OVER ONS PAGE
   ===================== */
.over-ons-page { padding: 0 0 100px; position: relative; z-index: 1; }
.founder-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  padding: 80px 0;
}
.founder-photo-wrap { position: relative; }
.founder-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top;
  border-radius: 24px; border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(95,154,118,0.1);
}
.founder-badge-card {
  position: absolute; bottom: -20px; left: -20px;
  background: rgba(14,26,20,0.95); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 20px;
  backdrop-filter: blur(20px); box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.founder-badge-card strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 2px; color: #fff; }
.founder-badge-card span { font-size: 0.8rem; color: #a7d3b8; }
.founder-content { }
.founder-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 20px; letter-spacing: -0.5px; }
.founder-content p { color: var(--text-dim); line-height: 1.8; margin-bottom: 18px; font-size: 0.97rem; }
.founder-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.value-item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px;
}
.value-item strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.value-item span { font-size: 0.8rem; color: var(--text-dim); }

/* Waarden cards upgrade */
.waarden-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px;
}
.waarden-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 32px; position: relative; overflow: hidden; transition: all 0.35s;
  display: flex; flex-direction: column; gap: 0;
}
.waarden-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #5f9a76, #2c5e46); opacity: 0; transition: opacity 0.35s;
}
.waarden-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(95,154,118,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.35s; pointer-events: none;
}
.waarden-card:hover { border-color: rgba(95,154,118,0.3); transform: translateY(-3px); box-shadow: 0 24px 60px rgba(95,154,118,0.1); }
.waarden-card:hover::before { opacity: 1; }
.waarden-card:hover::after { opacity: 1; }
.waarden-card-num {
  font-size: 3.2rem; font-weight: 900; line-height: 1; margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif; letter-spacing: -2px;
  color: rgba(95,154,118,0.5);
}
.waarden-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(95,154,118,0.1); border: 1px solid rgba(95,154,118,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.waarden-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.waarden-card > p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; }
.waarden-list {
  list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--border); padding-top: 18px;
  display: flex; flex-direction: column; gap: 9px; margin-top: auto;
}
.waarden-list li {
  font-size: 0.82rem; color: var(--text-dim); padding-left: 18px; position: relative; line-height: 1.4;
}
.waarden-list li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, #5f9a76, #2c5e46);
}

.mission-section { padding: 80px 0; border-top: 1px solid var(--border); text-align: center; }
.mission-quote {
  max-width: 720px; margin: 0 auto;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700;
  font-family: 'Space Grotesk', sans-serif; line-height: 1.45; color: var(--text);
}
.mission-quote em { font-style: normal; color: var(--gold); }

/* =====================
   PORTFOLIO PAGE
   ===================== */
.portfolio-page { padding: 0 0 100px; position: relative; z-index: 1; }
.portfolio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.portfolio-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; }
.portfolio-card:hover { border-color: rgba(95,154,118,0.35); transform: translateY(-3px); }
.portfolio-visual { height: 220px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.v1{background:linear-gradient(135deg,#0e2419,#0d2a1e)} .v2{background:linear-gradient(135deg,#0d2a1e,#0e2419)} .v3{background:linear-gradient(135deg,#102619,#0c2a1f)} .v4{background:linear-gradient(135deg,#102417,#10261a)}
.portfolio-info { padding: 24px; }
.portfolio-tag { display:inline-block; padding:3px 10px; background:rgba(95,154,118,0.12); border:1px solid rgba(95,154,118,0.2); border-radius:50px; font-size:0.72rem; color:var(--purple); font-weight:600; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:8px; }
/* Hoeklinten op portfolio-kaarten */
.portfolio-ribbon {
  position: absolute; top: 0; right: 0; z-index: 2;
  width: 150px; height: 150px; overflow: hidden; pointer-events: none;
}
.portfolio-ribbon span {
  position: absolute; display: block; width: 220px;
  padding: 7px 0; text-align: center;
  transform: rotate(45deg); right: -58px; top: 38px;
  font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.09em;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 4px 14px rgba(0,0,0,0.28);
}
.ribbon-gold span {
  background: linear-gradient(115deg, #ecd9b0, #d8c090 45%, #b8894a);
  color: #2f2412;
}
.ribbon-green span {
  background: linear-gradient(135deg, #2f7053, #1f3d2e);
  color: #fff;
}

/* 'In aanbouw'-scherm met kruislings bouwlint (OBAN) */
.construction-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: rgba(8,15,11,0.55);
  overflow: hidden; pointer-events: none;
}
.ctape {
  position: absolute; left: -8%; right: -8%;
  padding: 9px 0; text-align: center; white-space: nowrap; overflow: hidden;
  background: linear-gradient(100deg, #ecd9b0, #d8c090 45%, #b8894a);
  color: #241a0b;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  box-shadow: 0 8px 22px rgba(0,0,0,0.4);
}
.ctape-1 { top: 40%; transform: rotate(-8deg); }
.ctape-2 { top: 52%; transform: rotate(6deg); }
.portfolio-info h4 { font-size:1.1rem; font-weight:700; margin-bottom:6px; }
.portfolio-info p { font-size:0.88rem; color:var(--text-dim); line-height:1.6; }

/* Mock visuals */
.mock-browser { width:85%; background:rgba(14,26,20,.9); border-radius:8px; border:1px solid rgba(255,255,255,.1); overflow:hidden; }
.mock-bar { display:flex; gap:5px; padding:8px 10px; background:rgba(255,255,255,.04); border-bottom:1px solid rgba(255,255,255,.06); }
.mock-bar span { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.2); }
.mock-bar span:nth-child(1){background:#ff5f56} .mock-bar span:nth-child(2){background:#ffbd2e} .mock-bar span:nth-child(3){background:#27c93f}
.mock-content { padding:12px; }
.mock-hero-block { height:60px; background:linear-gradient(135deg,rgba(95,154,118,.3),rgba(44,94,70,.3)); border-radius:6px; margin-bottom:10px; }
.mock-lines { display:flex; flex-direction:column; gap:6px; }
.mock-lines div { height:8px; background:rgba(255,255,255,.08); border-radius:4px; }
.mock-lines div:nth-child(2){width:70%} .mock-lines div:nth-child(3){width:50%}

.mock-dashboard { width:85%; height:150px; display:flex; gap:8px; background:rgba(14,26,20,.9); border-radius:8px; border:1px solid rgba(255,255,255,.1); overflow:hidden; }
.mock-sidebar { width:28%; background:rgba(95,154,118,.08); }
.mock-nav-items { padding:8px 6px; display:flex; flex-direction:column; gap:6px; }
.mock-nav-item { height:8px; background:rgba(255,255,255,.08); border-radius:4px; }
.mock-nav-item.active { background:rgba(95,154,118,.5); }
.mock-main { flex:1; padding:10px; display:flex; flex-direction:column; gap:8px; }
.mock-kpi-row { display:flex; gap:5px; }
.mock-kpi { flex:1; background:rgba(95,154,118,.12); border-radius:4px; padding:6px 5px; }
.mock-kpi-num { height:10px; background:rgba(95,154,118,.5); border-radius:3px; margin-bottom:4px; width:60%; }
.mock-kpi-label { height:6px; background:rgba(255,255,255,.1); border-radius:3px; width:80%; }
.mock-charts { display:flex; gap:6px; flex:1; }
.mock-chart-bar { flex:1; background:linear-gradient(180deg,rgba(95,154,118,.4),rgba(95,154,118,.1)); border-radius:4px; }
.mock-chart-line { flex:1; background:linear-gradient(135deg,rgba(44,94,70,.3),rgba(95,154,118,.2)); border-radius:4px; }

.mock-app { display:flex; justify-content:center; }
.mock-phone { width:90px; height:160px; background:rgba(14,26,20,.9); border-radius:16px; border:2px solid rgba(255,255,255,.1); overflow:hidden; display:flex; flex-direction:column; }
.mock-notch { width:30px; height:8px; background:rgba(255,255,255,.06); border-radius:0 0 6px 6px; margin:0 auto 4px; }
.mock-screen { flex:1; display:flex; flex-direction:column; padding:4px; }
.mock-app-header { height:16px; background:linear-gradient(90deg,rgba(95,154,118,.4),rgba(44,94,70,.3)); border-radius:4px; margin-bottom:6px; }
.mock-app-cards { display:flex; gap:4px; flex:1; }
.mock-app-cards div { flex:1; background:rgba(95,154,118,.15); border-radius:4px; }
.mock-app-nav { height:14px; background:rgba(255,255,255,.04); border-radius:4px; margin-top:4px; }

.mock-wp { width:88%; height:150px; background:rgba(14,26,20,.9); border-radius:8px; border:1px solid rgba(255,255,255,.1); overflow:hidden; display:flex; flex-direction:column; }
.mock-wp-adminbar { height:16px; background:#1d2327; border-bottom:1px solid rgba(255,255,255,.05); }
.mock-wp-body { display:flex; flex:1; }
.mock-wp-sidebar { width:28%; background:#1d2327; padding:6px 4px; }
.mock-wp-menu { display:flex; flex-direction:column; gap:5px; }
.mock-wp-menu div { height:7px; background:rgba(255,255,255,.1); border-radius:3px; }
.mock-wp-menu div.active { background:rgba(95,154,118,.6); }
.mock-wp-content { flex:1; padding:8px; }
.mock-wp-title { height:10px; background:rgba(255,255,255,.15); border-radius:3px; width:55%; margin-bottom:10px; }
.mock-wp-settings { display:flex; flex-direction:column; gap:6px; }
.mock-wp-row { display:flex; gap:5px; }
.mock-wp-row div:first-child { width:35%; height:8px; background:rgba(255,255,255,.08); border-radius:3px; }
.mock-wp-row div:last-child { flex:1; height:8px; background:rgba(255,255,255,.12); border-radius:3px; }
.mock-wp-btn { height:14px; width:50px; background:linear-gradient(90deg,rgba(95,154,118,.6),rgba(44,94,70,.5)); border-radius:4px; margin-top:4px; }

/* =====================
   PRICING PAGE
   ===================== */
.pricing-page { padding: 0 0 100px; position: relative; z-index: 1; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.pricing-card { background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:36px 28px; position:relative; transition:all 0.3s; }
.pricing-card:hover { border-color:rgba(95,154,118,.3); }
.pricing-card.featured { background:linear-gradient(135deg,rgba(95,154,118,.08),rgba(44,94,70,.05)); border-color:rgba(95,154,118,.35); transform:scale(1.03); }
.pricing-badge { position:absolute; top:-14px; left:50%; transform:translateX(-50%); padding:6px 18px; background:linear-gradient(135deg,var(--purple),var(--blue)); border-radius:50px; font-size:.78rem; font-weight:700; color:#fff; white-space:nowrap; }
.pricing-card h3 { font-size:1.2rem; font-weight:700; margin-bottom:16px; }
.price { margin-bottom:8px; }
.price-from { display:block; font-size:.8rem; color:var(--text-dim); margin-bottom:2px; }
.price-amount { font-size:2.4rem; font-weight:800; font-family:'Space Grotesk',sans-serif; color:var(--purple); }
.price-desc { font-size:.88rem; color:var(--text-dim); margin-bottom:24px; line-height:1.5; }
.price-features { margin-bottom:28px; }
.price-features li { font-size:.85rem; color:var(--text-dim); padding:7px 0; border-bottom:1px solid rgba(255,255,255,.04); }
.price-features li::before { content:'✓ '; color:var(--purple); font-weight:700; }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-page { padding: 0 0 100px; position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; padding-top: 20px; }
.contact-info-block h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 16px; }
.contact-info-block p { color: var(--text-dim); margin-bottom: 36px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item-icon { width: 42px; height: 42px; background: rgba(95,154,118,.1); border: 1px solid rgba(95,154,118,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 2px; }
.contact-item-text span { font-size: .82rem; color: var(--text-dim); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .services-grid-4 { grid-template-columns: repeat(2,1fr); }
  .services-grid-5 { grid-template-columns: repeat(3,1fr); }
  .services-grid-6 { grid-template-columns: repeat(2,1fr); }
  .stack-grid { grid-template-columns: repeat(2,1fr); }
  .waarden-grid { grid-template-columns: repeat(2,1fr); }
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block.reverse { direction: ltr; }
  .founder-section { grid-template-columns: 1fr; gap: 48px; }
  .founder-photo { max-height: 480px; width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { flex-direction: column; padding-top: 100px; text-align: center; gap: 48px; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; flex: none; }
  .cc-terminal { min-height: 300px; }
  .cc-body { min-height: 260px; }
  .services-grid-5 { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* Open menu: uitklappaneel onder de navbar. Let op: position:fixed werkt hier
     niet zoals verwacht, want de backdrop-filter op .navbar maakt de navbar het
     referentiekader — vandaar absolute + top:100%. */
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 22px 40px rgba(20,32,26,0.16);
    padding: 10px 24px 24px;
    max-height: calc(100vh - 100%); overflow-y: auto;
    z-index: 99;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    display: block; font-size: 1.08rem; padding: 13px 4px;
    border-bottom: 1px solid var(--border-soft);
  }
  .nav-links.open li:last-child a { border-bottom: none; }
  .nav-links.open .nav-cta { margin-top: 14px; text-align: center; border-radius: 50px; }
  .services-grid-4, .services-grid-5, .services-grid-6 { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: 1fr; }
  .waarden-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .founder-values { grid-template-columns: 1fr; }
  .flow-step { grid-template-columns: 1fr; gap: 16px; }
  .tech-strip-inner { gap: 24px; }
  /* Footer: nette twee-koloms indeling i.p.v. rommelig omvallende flex-kolommen */
  .footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand .logo-img { height: 50px !important; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

/* =====================
   WERKWIJZE PAGE
   ===================== */

/* Hero */
.wk-hero-section { min-height: 70vh; }
.wk-hero {
  max-width: 1180px; margin: 0 auto; width: 100%;
  padding: 140px 24px 100px;
  display: flex; align-items: center; gap: 64px;
  position: relative; z-index: 1;
}
.wk-hero-content { flex: 1; }
.wk-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800;
  line-height: 1.1; letter-spacing: -1.5px;
  color: #fff; margin: 20px 0 22px;
}
.wk-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.58);
  line-height: 1.75; max-width: 480px; margin-bottom: 32px;
}
.wk-hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.wk-pill {
  padding: 7px 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; font-size: 0.8rem; color: rgba(255,255,255,0.65);
  font-weight: 500; transition: all 0.2s;
}
.wk-pill:hover { background: rgba(95,154,118,0.15); border-color: rgba(95,154,118,0.35); color: #a7d3b8; }

/* Hero flow preview */
.wk-hero-visual { flex: 0 0 380px; }
.wk-flow-preview {
  display: flex; flex-direction: column; gap: 0;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 28px 24px;
  backdrop-filter: blur(12px);
}
.wk-fp-step {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 12px;
  color: rgba(255,255,255,0.45); font-size: 0.9rem; font-weight: 500;
  transition: all 0.3s;
}
.wk-fp-step.wk-fp-done {
  color: rgba(255,255,255,0.85);
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.18);
}
.wk-fp-step.wk-fp-active {
  color: #fff;
  background: rgba(95,154,118,0.15); border: 1px solid rgba(95,154,118,0.3);
  box-shadow: 0 0 20px rgba(47,112,83,0.12);
}
.wk-fp-icon { width: 28px; display: flex; align-items: center; justify-content: center; }
.wk-fp-icon svg { display: block; }
.wk-fp-arrow {
  text-align: center; color: rgba(255,255,255,0.18);
  font-size: 0.9rem; padding: 4px 0;
}

/* Stack section */
.wk-stack { padding: 100px 0; position: relative; z-index: 1; }
.wk-stack-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.wk-stack-card {
  background: var(--card); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  display: flex; flex-direction: column; gap: 12px;
}
.wk-stack-card:hover { border-color: rgba(47,112,83,0.22); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.wk-stack-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.wk-stack-logo {
  width: 52px; height: 52px; border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.wk-stack-logo img { width: 52px; height: 52px; object-fit: contain; }
.wk-stack-badge {
  padding: 5px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--gold-bg); border: 1px solid var(--gold-border); color: var(--gold-deep);
}
.wk-stack-card h3 { font-size: 1.05rem; font-weight: 700; }
.wk-stack-card p { font-size: 0.87rem; color: var(--text-dim); line-height: 1.7; flex: 1; }
.wk-stack-bar {
  height: 4px; background: var(--bg3); border-radius: 4px; overflow: hidden; margin-top: 8px;
}
.wk-stack-fill { height: 100%; border-radius: 4px; }
.wk-stack-bar-label { font-size: 0.72rem; color: var(--text-dim); }

/* Timeline */
.wk-timeline-section {
  padding: 80px 0 120px; position: relative; z-index: 1;
  background: var(--bg2);
}
.wk-timeline { display: flex; flex-direction: column; max-width: 860px; margin: 0 auto; }
.wk-tl-item {
  display: flex; gap: 32px; align-items: flex-start;
}
.wk-tl-left {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; width: 72px;
}
.wk-tl-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1rem;
  color: #fff; flex-shrink: 0; z-index: 1; position: relative;
  box-shadow: 0 4px 20px rgba(47,112,83,0.3);
}
.wk-tl-line {
  width: 2px; flex: 1; min-height: 40px;
  background: linear-gradient(to bottom, rgba(47,112,83,0.3), rgba(47,112,83,0.05));
  margin: 4px 0;
}
.wk-tl-card {
  flex: 1; background: var(--card); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 28px 32px;
  box-shadow: var(--shadow); margin-bottom: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.wk-tl-card:hover { border-color: rgba(47,112,83,0.2); box-shadow: var(--shadow-lg); }
.wk-tl-card-last { border-color: rgba(34,197,94,0.25); background: rgba(34,197,94,0.02); }
.wk-tl-card-last:hover { border-color: rgba(34,197,94,0.4); }
.wk-tl-header {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px;
}
.wk-tl-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(47,112,83,0.08); border: 1px solid rgba(47,112,83,0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
}
.wk-tl-icon-live {
  background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.25); color: #22c55e;
}
.wk-tl-duration {
  display: block; font-size: 0.75rem; font-weight: 600; color: var(--gold-deep);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.wk-tl-card h3 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.wk-tl-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 16px; }
.wk-tl-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wk-tl-tags span {
  padding: 4px 12px; border-radius: 50px; font-size: 0.73rem; font-weight: 600;
  background: rgba(31,61,46,0.08); border: 1px solid rgba(31,61,46,0.18); color: var(--blue);
}

@media (max-width: 1024px) { .wk-stack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .wk-hero { flex-direction: column; padding-top: 110px; }
  .wk-hero-visual { display: none; }
  .wk-stack-grid { grid-template-columns: 1fr; }
  .wk-tl-item { gap: 16px; }
  .wk-tl-card { padding: 20px; }
}

/* =====================
   SERVICES PAGE
   ===================== */

/* Hero */
.sv-hero {
  max-width: 1180px; margin: 0 auto; width: 100%;
  padding: 150px 24px 110px;
  text-align: center; position: relative; z-index: 1;
}
.sv-hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 800;
  line-height: 1.08; letter-spacing: -1.5px; color: #fff;
  margin: 20px 0 24px;
}
.sv-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.58);
  line-height: 1.75; max-width: 560px; margin: 0 auto 40px;
}
.sv-hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin-bottom: 40px;
}
.sv-stat { text-align: center; }
.sv-stat-num {
  display: block; font-size: 2rem; font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #d8c090;
  line-height: 1.1; margin-bottom: 4px;
}
.sv-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.42); }
.sv-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

.sv-hero-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.sv-nav-pill {
  padding: 9px 20px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; font-size: 0.85rem; color: rgba(255,255,255,0.7);
  font-weight: 500; transition: all 0.22s; text-decoration: none;
}
.sv-nav-pill:hover {
  background: rgba(95,154,118,0.18); border-color: rgba(95,154,118,0.4);
  color: #fff; transform: translateY(-2px);
}

/* Grid */
.sv-grid-section { padding: 80px 0 120px; position: relative; z-index: 1; }
.sv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}

/* Cards */
.sv-card {
  background: var(--card); border: 1px solid var(--border-soft);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.sv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: rgba(47,112,83,0.2); }
.sv-card-wide { grid-column: 1 / -1; flex-direction: row; }

/* Terminal top */
.sv-card-terminal {
  background: #0e1a14;
  border-bottom: 1px solid rgba(95,154,118,0.14);
  height: 200px; display: flex; flex-direction: column;
}
.sv-terminal-wide { height: auto; width: 420px; flex-shrink: 0; border-bottom: none; border-right: 1px solid rgba(95,154,118,0.14); }
.sv-term-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  flex-shrink: 0;
}
.sv-term-body {
  padding: 12px 14px 10px; flex: 1; overflow: hidden;
  font-family: 'Courier New', 'Menlo', monospace;
  font-size: 0.78rem; line-height: 1.9;
  display: flex; flex-direction: column;
}

/* Card body */
.sv-card-body { padding: 28px 30px 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.sv-body-wide { justify-content: center; }
.sv-card-top { display: flex; align-items: center; justify-content: space-between; }
.sv-card-num {
  font-size: 0.72rem; font-weight: 800; color: var(--gold-deep);
  letter-spacing: 0.12em; text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}
.sv-card-tag {
  padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600;
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); color: #16a34a;
}
.sv-card-body h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.3px; margin: 0; }
.sv-card-body p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; margin: 0; }

/* Feature list */
.sv-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; flex: 1; }
.sv-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.87rem; color: var(--text-dim);
}
.sv-features li::before {
  content: '✓'; color: var(--purple); font-weight: 700;
  font-size: 0.8rem; flex-shrink: 0; width: 16px;
}
.sv-features-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }

/* CTA button in card */
.sv-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: rgba(47,112,83,0.08); border: 1.5px solid rgba(47,112,83,0.2);
  border-radius: 50px; font-size: 0.88rem; font-weight: 600; color: var(--purple);
  transition: all 0.25s; margin-top: 4px; align-self: flex-start;
  text-decoration: none;
}
.sv-cta:hover { background: var(--purple); color: #fff; border-color: var(--purple); transform: translateY(-2px); }
.sv-cta-accent {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 20px rgba(47,112,83,0.3);
}
.sv-cta-accent:hover { box-shadow: 0 8px 32px rgba(47,112,83,0.45); background: linear-gradient(135deg, #1f3d2e, #1a4733); }

/* CTA Banner */
.sv-cta-banner {
  background: var(--bg2); border-top: 1px solid var(--border-soft);
  padding: 64px 0; position: relative; z-index: 1;
}
.sv-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.sv-cta-inner h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin-bottom: 8px; }
.sv-cta-inner p { color: var(--text-dim); font-size: 0.95rem; }

@media (max-width: 900px) {
  .sv-grid { grid-template-columns: 1fr; }
  .sv-card-wide { flex-direction: column; }
  .sv-terminal-wide { width: 100%; height: 180px; border-right: none; border-bottom: 1px solid rgba(95,154,118,0.14); }
  .sv-features-2col { grid-template-columns: 1fr; }
  .sv-hero-stats { gap: 20px; }
  .sv-cta-inner { flex-direction: column; text-align: center; align-items: center; }
}

/* =====================
   FUN PROMO POP-UP
   ===================== */
.vs-promo {
  position: fixed; inset: 0; z-index: 9990;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(11,22,17,0.55); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease;
}
.vs-promo.show { opacity: 1; visibility: visible; }
.vs-promo-card {
  position: relative;
  width: 100%; max-width: 440px;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 36px 34px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(11,22,17,0.35), 0 0 0 1px rgba(47,112,83,0.06);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
}
.vs-promo-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--warm));
}
.vs-promo.show .vs-promo-card { transform: translateY(0) scale(1); }
.vs-promo-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; line-height: 1; color: var(--text-dim);
  width: 32px; height: 32px; border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.vs-promo-close:hover { background: var(--bg2); color: var(--text); }
.vs-promo-emoji { font-size: 2.6rem; margin-bottom: 10px; animation: vsPromoPop 0.5s 0.1s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes vsPromoPop { from { transform: scale(0); } to { transform: scale(1); } }
.vs-promo-card h3 {
  font-size: 1.4rem; font-weight: 800; letter-spacing: -0.4px;
  margin-bottom: 12px; color: var(--text);
}
.vs-promo-sub { font-size: 0.95rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 26px; }
.vs-promo-actions { display: flex; flex-direction: column; gap: 10px; }
.vs-promo-actions .btn-primary,
.vs-promo-actions .btn-ghost { width: 100%; justify-content: center; }
@media (min-width: 420px) {
  .vs-promo-actions { flex-direction: row; }
}

/* =====================
   VISUAL POLISH
   ===================== */

/* Gemarkeerde woorden op donkere hero's: licht effen goud voor beter contrast */
.hero-dark .gradient-text,
.sv-hero-title .gradient-text,
.wk-hero-title .gradient-text {
  color: #d8c090;
}
.hero-dark .stat-num {
  color: #d8c090;
}

/* Accentlijn bovenop servicekaarten bij hover */
.sv-card { position: relative; }
.sv-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #5f9a76, #c09c6c);
  opacity: 0; transition: opacity 0.35s; z-index: 2;
}
.sv-card:hover::after { opacity: 1; }

/* Ankerlinks niet onder de vaste navbar laten verdwijnen */
.sv-card[id], section[id] { scroll-margin-top: 110px; }

/* Warme ring om testimonial-avatars */
.testimonial-avatar { box-shadow: 0 0 0 3px rgba(192,156,108,0.35); }

/* =====================
   HOME: WERKWIJZE PREVIEW (tijdlijn)
   ===================== */
.home-flow { padding: 100px 0; position: relative; z-index: 1; background: var(--bg); }
.hw-timeline { display: grid; grid-template-columns: repeat(5,1fr); }
.hw-tl-step { position: relative; text-align: center; padding: 0 16px; }
.hw-tl-step::before, .hw-tl-step::after {
  content: ''; position: absolute; top: 23px; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(47,112,83,0.30) 0 6px, transparent 6px 13px);
}
.hw-tl-step::before { left: 0; right: calc(50% + 32px); }
.hw-tl-step::after { left: calc(50% + 32px); right: 0; }
.hw-tl-step:first-child::before, .hw-tl-step:last-child::after { display: none; }
.hw-tl-marker {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 0.9rem;
  margin-bottom: 18px; box-shadow: 0 4px 14px rgba(47,112,83,0.3);
  position: relative; z-index: 1;
}
.hw-tl-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.hw-tl-step p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.65; max-width: 220px; margin: 0 auto; }

@media (max-width: 900px) {
  .hw-timeline { grid-template-columns: 1fr; }
  .hw-tl-step {
    display: grid; grid-template-columns: 48px 1fr; column-gap: 18px;
    text-align: left; padding: 0 0 34px;
  }
  .hw-tl-step:last-child { padding-bottom: 0; }
  .hw-tl-step::before { display: none; }
  .hw-tl-step::after {
    top: 56px; bottom: 8px; left: 23px; right: auto; width: 2px; height: auto;
    background: repeating-linear-gradient(180deg, rgba(47,112,83,0.30) 0 6px, transparent 6px 13px);
  }
  .hw-tl-marker { grid-row: 1 / span 2; margin-bottom: 0; }
  .hw-tl-step h3 { align-self: center; margin-bottom: 0; }
  .hw-tl-step p { margin: 6px 0 0; max-width: none; }
}

/* =====================
   HOME: WAAROM VIBECODEX (splitlayout)
   ===================== */
.home-usps { padding: 110px 0 100px; position: relative; z-index: 1; background: var(--bg2); border-top: 1px solid var(--border-soft); }
.usp-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.usp-intro { position: sticky; top: 110px; }
.usp-intro h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); font-weight: 800; margin-bottom: 18px; letter-spacing: -0.8px; }
.usp-intro p { color: var(--text-dim); font-size: 1rem; line-height: 1.75; margin-bottom: 30px; }
.usp-points { display: flex; flex-direction: column; }
.usp-point { display: flex; gap: 20px; align-items: flex-start; padding: 26px 0; }
.usp-point:first-child { padding-top: 6px; }
.usp-point + .usp-point { border-top: 1px solid rgba(47,112,83,0.12); }
.usp-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(95,154,118,0.1); border: 1px solid rgba(95,154,118,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); flex-shrink: 0;
}
.usp-point-text h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.usp-point-text p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }

@media (max-width: 900px) {
  .usp-split { grid-template-columns: 1fr; gap: 40px; }
  .usp-intro { position: static; }
}

/* =====================
   OVER ONS: DRIE REDENEN
   ===================== */
.redenen-list {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 1020px; margin: 48px auto 0;
}
.reden-row {
  display: grid; grid-template-columns: 64px 1.15fr 1fr; gap: 32px; align-items: center;
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 32px 36px; box-shadow: var(--shadow);
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
}
.reden-row:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(47,112,83,0.2); }
.reden-head { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.reden-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(95,154,118,0.1); border: 1px solid rgba(95,154,118,0.2);
  display: flex; align-items: center; justify-content: center;
}
.reden-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold-deep);
}
.reden-main h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.reden-main p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }
.reden-checks {
  list-style: none; margin: 0; padding: 0 0 0 32px;
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 11px;
}
.reden-checks li { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; color: var(--text-dim); }
.reden-checks li::before { content: '✓'; color: var(--purple); font-weight: 700; flex-shrink: 0; }
@media (max-width: 900px) {
  .reden-row { grid-template-columns: 1fr; gap: 18px; padding: 28px; }
  .reden-head { flex-direction: row; }
  .reden-checks { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 18px; }
}

/* =====================
   BLOG OVERZICHT
   ===================== */
.blog-page { padding: 0 0 100px; position: relative; z-index: 1; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
}
.blog-card:hover { transform: translateY(-3px); border-color: rgba(47,112,83,0.22); box-shadow: var(--shadow-lg); }
.blog-card-visual {
  height: 160px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0e2419, #0d2a1e);
  border-bottom: 1px solid var(--border);
}
.blog-card-visual svg { opacity: 0.9; }
.blog-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 0.76rem; color: var(--text-dim); }
.blog-card-tag {
  padding: 4px 12px; background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 50px; font-size: 0.72rem; color: var(--gold-deep); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.blog-card h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.35; }
.blog-card h3 a { transition: color 0.2s; }
.blog-card h3 a:hover { color: var(--purple); }
.blog-card-body > p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; flex: 1; }
.blog-card-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.88rem; font-weight: 600; color: var(--purple); margin-top: 4px;
}
.blog-card-link svg { transition: transform 0.25s; }
.blog-card:hover .blog-card-link svg { transform: translateX(4px); }

/* =====================
   BLOG ARTIKEL
   ===================== */
.post-hero { padding: 150px 0 36px; position: relative; z-index: 1; }
.post-hero-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.post-breadcrumb { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 22px; }
.post-breadcrumb a { color: var(--purple); font-weight: 500; }
.post-breadcrumb a:hover { text-decoration: underline; }
.post-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; letter-spacing: -0.8px; line-height: 1.18; margin-bottom: 18px; }
.post-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-dim); }
.post-meta .blog-card-tag { font-size: 0.7rem; }
.post-meta-divider { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

.blog-post { max-width: 760px; margin: 0 auto; padding: 0 24px 90px; position: relative; z-index: 1; }
.post-content { font-size: 0.98rem; }
.post-content > p { color: var(--text-dim); line-height: 1.85; margin-bottom: 18px; }
.post-content .post-intro { font-size: 1.08rem; color: var(--text); line-height: 1.8; }
.post-content h2 {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.4px;
  margin: 46px 0 16px; scroll-margin-top: 110px;
}
.post-content h3 { font-size: 1.12rem; font-weight: 700; margin: 30px 0 10px; scroll-margin-top: 110px; }
.post-content ul, .post-content ol { margin: 0 0 18px 4px; display: flex; flex-direction: column; gap: 9px; }
.post-content ul li, .post-content ol li {
  color: var(--text-dim); line-height: 1.7; padding-left: 22px; position: relative; font-size: 0.94rem;
}
.post-content ul li::before {
  content: ''; position: absolute; left: 2px; top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--blue));
}
.post-content ol { list-style: none; counter-reset: post-ol; }
.post-content ol li { counter-increment: post-ol; padding-left: 30px; }
.post-content ol li::before {
  content: counter(post-ol) '.'; position: absolute; left: 0; top: 0;
  font-weight: 700; color: var(--gold); font-family: 'Space Grotesk', sans-serif;
}
.post-content li strong, .post-content p strong { color: var(--text); }
.post-content a:not(.btn-primary):not(.btn-ghost) { color: var(--purple); font-weight: 500; }
.post-content a:not(.btn-primary):not(.btn-ghost):hover { text-decoration: underline; }

/* TL;DR / antwoord-in-het-kort blok */
.tldr-box {
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold); border-radius: var(--radius-sm);
  padding: 22px 26px; margin: 28px 0 34px;
}
.tldr-box strong.tldr-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold-deep); margin-bottom: 10px; font-family: 'Space Grotesk', sans-serif;
}
.tldr-box p, .tldr-box li { color: var(--text); font-size: 0.93rem; line-height: 1.75; }
.tldr-box p { margin: 0; }
.tldr-box ul { margin: 8px 0 0; display: flex; flex-direction: column; gap: 7px; }
.tldr-box ul li { padding-left: 20px; position: relative; }
.tldr-box ul li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--purple);
}

/* Tabel */
.post-table-wrap { overflow-x: auto; margin: 22px 0 30px; border: 1px solid var(--border-soft); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.post-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; background: var(--card); min-width: 540px; }
.post-table th {
  text-align: left; padding: 13px 18px; background: rgba(47,112,83,0.07);
  color: var(--text); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border);
}
.post-table td { padding: 13px 18px; color: var(--text-dim); border-bottom: 1px solid var(--border-soft); line-height: 1.55; }
.post-table tr:last-child td { border-bottom: none; }
.post-table td strong { color: var(--text); }

/* Quote/definitie blok */
.post-quote {
  border-left: 4px solid var(--warm); background: rgba(192,156,108,0.07);
  border-radius: var(--radius-sm); padding: 20px 26px; margin: 26px 0;
  font-size: 1.02rem; color: var(--text); line-height: 1.75; font-style: italic;
}

/* Auteur */
.author-box {
  display: flex; align-items: center; gap: 18px; margin-top: 54px;
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 24px 26px; box-shadow: var(--shadow);
}
.author-avatar { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; object-position: center top; flex-shrink: 0; border: 2px solid rgba(47,112,83,0.25); }
.author-info strong { display: block; font-size: 0.95rem; font-weight: 700; }
.author-info span { font-size: 0.82rem; color: var(--text-dim); line-height: 1.55; display: block; margin-top: 3px; }

/* CTA in artikel */
.post-cta {
  margin: 48px 0 0; text-align: center;
  background: linear-gradient(135deg, rgba(47,112,83,0.08), rgba(31,61,46,0.05));
  border: 1px solid rgba(47,112,83,0.18); border-radius: var(--radius);
  padding: 44px 32px;
}
.post-cta h2 { margin: 0 0 12px !important; font-size: 1.4rem !important; }
.post-cta p { max-width: 460px; margin: 0 auto 24px; color: var(--text-dim); line-height: 1.7; font-size: 0.94rem; }

/* Gerelateerde artikelen */
.related-section { padding: 70px 0 100px; border-top: 1px solid var(--border); position: relative; z-index: 1; }
.related-section .blog-grid { grid-template-columns: repeat(2,1fr); max-width: 820px; margin: 0 auto; }

/* FAQ in artikel */
.post-faq { margin-top: 52px; }
.post-faq h2 { margin-bottom: 20px; }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .blog-grid, .related-section .blog-grid { grid-template-columns: 1fr; }
  .post-hero { padding-top: 130px; }
  .author-box { flex-direction: column; align-items: flex-start; }
}

/* =====================
   COOKIE BANNER
   ===================== */
#vs-cookies {
  position: fixed; left: 24px; bottom: 24px; z-index: 400;
  max-width: 390px; background: var(--card); border: 1px solid var(--border-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 22px 24px; opacity: 0; transform: translateY(16px);
  transition: opacity 0.35s, transform 0.35s;
}
#vs-cookies.show { opacity: 1; transform: none; }
#vs-cookies p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 6px; }
#vs-cookies p strong { color: var(--text); font-size: 0.92rem; }
#vs-cookies a { color: var(--purple); font-weight: 500; text-decoration: underline; }
.vs-cookies-actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.vs-cookies-actions .btn-primary, .vs-cookies-actions .btn-ghost { padding: 10px 18px; font-size: 0.85rem; }
@media (max-width: 520px) {
  #vs-cookies { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* =====================
   MOBIELE PERFORMANCE
   ===================== */
/* De grote blur-orbs zijn zwaar voor telefoon-GPU's: op mobiel uit */
@media (max-width: 768px) {
  .orb { display: none; }
}
