/* ============================================================
   VIBE AGENCY – MAIN STYLESHEET
   Marketing & Intelligence | vibe-agency.nl
   ============================================================ */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&family=Inter:wght@400;500;600&display=swap');

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --green-primary: #084d2c;
  --brass-accent:  #c4b33d;
  --bg-ivory:      #f7f7f2;
  --text-black:    #050505;
  --text-gray:     #4a4a4a;
  --mint-light:    #a8e6cf;
  --white:         #ffffff;

  --container-max:     1280px;
  --container-pad:     1.5rem;
  --nav-h:             72px;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-card:       0 4px 24px rgba(8,77,44,.08);
  --shadow-card-hover: 0 16px 48px rgba(8,77,44,.18);

  --ease:  0.3s ease;
  --ease-s: 0.6s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text-black);
  background: var(--bg-ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { line-height: 1.72; }

em { font-style: normal; color: var(--brass-accent); }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--mint-light) 100%);
  color: var(--text-black);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(8,77,44,.28);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}
.btn-ghost:hover {
  background: var(--green-primary);
  color: var(--white);
}

.btn-brass {
  background: var(--brass-accent);
  color: var(--text-black);
  font-weight: 700;
}
.btn-brass:hover {
  background: linear-gradient(135deg, var(--brass-accent) 0%, #e8d96a 100%);
  color: var(--text-black);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196,179,61,.35);
}

/* ===== SECTION LABEL ===== */
.label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .6875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-accent);
  margin-bottom: .75rem;
}

/* ===== DIAGONAL PATTERN OVERLAY ===== */
.diag::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 58px,
    rgba(168,230,207,.05) 58px,
    rgba(168,230,207,.05) 59px
  );
  pointer-events: none;
  z-index: 0;
}
.diag > * { position: relative; z-index: 1; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ==============================================================
   NAVIGATION
   ============================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--ease), box-shadow var(--ease);
}
.nav.scrolled, .nav.solid {
  background: var(--green-primary);
  box-shadow: 0 2px 24px rgba(0,0,0,.18);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity var(--ease);
}
.nav-logo:hover .nav-logo-img { opacity: .85; }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-links a {
  font-weight: 500;
  font-size: .8125rem;
  color: rgba(255,255,255,.82);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 3px;
}

/* Service items get a subtle visual distinction */
.nav-dienst a {
  color: rgba(255,255,255,.68);
  font-size: .75rem;
  letter-spacing: .01em;
}
.nav-dienst a:hover { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--brass-accent);
  transition: width var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Inloggen knop in nav */
.nav-login {
  padding: .35rem .85rem !important;
  border: 1.5px solid var(--brass-accent) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--brass-accent) !important;
  font-weight: 600 !important;
  transition: all var(--ease) !important;
}
.nav-login:hover {
  background: var(--brass-accent) !important;
  color: var(--text-black) !important;
}
.nav-login::after { display: none !important; }

/* CTA */
.nav-cta { flex-shrink: 0; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}

/* ==============================================================
   HERO (Homepage)
   ============================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  animation: heroZoom 9s ease-out forwards;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}

/* Grain overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(5,5,5,.72) 0%,
    rgba(8,77,44,.52) 55%,
    rgba(5,5,5,.38) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) var(--container-pad) 5rem;
}
.hero-content-inner { max-width: 740px; }

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ==============================================================
   USP SECTION
   ============================================================== */
.usp {
  padding: 6rem 0;
  background: var(--bg-ivory);
  position: relative;
  overflow: hidden;
}

.usp-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.usp-header h2 { margin-top: .5rem; }
.usp-header p {
  color: var(--text-gray);
  max-width: 580px;
  margin: 1rem auto 0;
  font-size: 1.0625rem;
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.usp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(8,77,44,.07);
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.usp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--green-primary), var(--mint-light));
  transition: height var(--ease-s);
  border-radius: 0 0 4px 0;
}
.usp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.usp-card:hover::before { height: 100%; }

.usp-icon-wrap {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: rgba(8,77,44,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.usp-card h3 { color: var(--green-primary); margin-bottom: .625rem; }
.usp-card p { color: var(--text-gray); font-size: .9375rem; margin-bottom: 1.125rem; flex: 1; }
.usp-tag {
  display: inline-block;
  background: rgba(8,77,44,.07);
  color: var(--green-primary);
  font-weight: 600;
  font-size: .8125rem;
  padding: .35rem .875rem;
  border-radius: 100px;
}

/* ==============================================================
   SOCIAL PROOF
   ============================================================== */
.social-proof {
  padding: 5.5rem 0;
  background: var(--green-primary);
  position: relative;
  overflow: hidden;
}

.sp-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.sp-header h2 { color: var(--white); }

.stat-badges {
  display: flex;
  gap: .875rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.stat-badge {
  background: rgba(196,179,61,.12);
  border: 1px solid rgba(196,179,61,.38);
  color: var(--brass-accent);
  font-weight: 600;
  font-size: .8125rem;
  padding: .375rem 1rem;
  border-radius: 100px;
}

.carousel-wrap { position: relative; z-index: 1; }

.carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: .5rem .25rem 1.25rem;
}
.carousel::-webkit-scrollbar { display: none; }

.carousel-card {
  flex: 0 0 min(420px, 82vw);
  scroll-snap-align: center;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 1.75rem;
}

.carousel-quote {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.carousel-quote::before {
  content: '\201C';
  font-size: 3.5rem;
  color: var(--brass-accent);
  line-height: 0;
  vertical-align: -.9rem;
  margin-right: .2rem;
  font-family: 'Montserrat', serif;
}
.carousel-author {
  font-weight: 600;
  font-size: .9375rem;
  color: var(--brass-accent);
}
.carousel-author span {
  color: rgba(255,255,255,.5);
  font-weight: 400;
  font-size: .875rem;
}

.carousel-dots {
  display: flex;
  gap: .75rem;
  justify-content: center;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: all var(--ease);
  border: none; padding: 0;
}
.carousel-dot.active {
  background: var(--brass-accent);
  width: 26px;
  border-radius: 4px;
}

/* ==============================================================
   HOW IT WORKS
   ============================================================== */
.how {
  padding: 6rem 0;
  background: var(--bg-ivory);
  position: relative;
  overflow: hidden;
}

.how-header {
  text-align: center;
  margin-bottom: 4rem;
}
.how-header h2 { margin-top: .5rem; }
.how-header p { color: var(--text-gray); max-width: 520px; margin: .875rem auto 0; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--brass-accent);
  opacity: .35;
}

.step-body h3 { color: var(--green-primary); margin-bottom: .4rem; }
.step-body p { color: var(--text-gray); font-size: .9375rem; }
.step-tagline { color: var(--brass-accent) !important; font-style: italic; font-size: .875rem !important; margin-top: .25rem; }

/* Connector line on desktop */
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .step { flex-direction: column; }
}

/* ==============================================================
   FINAL CTA
   ============================================================== */
.final-cta {
  padding: 6.5rem 0;
  background: var(--green-primary);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(196,179,61,.04) 80px,
    rgba(196,179,61,.04) 81px
  );
  pointer-events: none;
}

.final-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.final-cta h2 { color: var(--white); margin-bottom: 1rem; }
.final-cta p  { color: rgba(255,255,255,.82); font-size: 1.125rem; margin-bottom: 2.25rem; }

/* ==============================================================
   PAGE HERO (inner pages)
   ============================================================== */
.page-hero {
  padding: calc(var(--nav-h) + 5.5rem) 0 4.5rem;
  background: var(--green-primary);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent, transparent 58px,
    rgba(168,230,207,.05) 58px,
    rgba(168,230,207,.05) 59px
  );
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.page-hero h1    { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead { color: rgba(255,255,255,.82); font-size: 1.125rem; line-height: 1.65; }

/* ==============================================================
   DIENSTEN PAGE
   ============================================================== */
.service-section {
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.service-section:nth-child(odd)  { background: var(--bg-ivory); }
.service-section:nth-child(even) { background: var(--white); }

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.service-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 20px 64px rgba(8,77,44,.16);
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--ease-s);
}
.service-img-wrap:hover img { transform: scale(1.04); }

.service-content h2 { color: var(--green-primary); margin-bottom: .875rem; }
.service-content > p { color: var(--text-gray); font-size: 1.0625rem; line-height: 1.72; }

.service-vibe {
  background: rgba(8,77,44,.05);
  border-left: 3px solid var(--brass-accent);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-gray);
  font-size: .9375rem;
}

.service-results {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-bottom: 2rem;
}
.service-result {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9375rem;
  color: var(--text-gray);
}
.service-result::before {
  content: '';
  width: 22px; height: 22px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='11' fill='%23084d2c'/%3E%3Cpath d='M6.5 11l3.2 3.2 5.8-6.4' stroke='%23c4b33d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}

/* Service card (Dienst 3) */
.service-extra {
  padding: 4rem 0 5.5rem;
  background: var(--bg-ivory);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(8,77,44,.09);
  box-shadow: var(--shadow-card);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.service-card h3 { color: var(--green-primary); margin-bottom: .75rem; }
.service-card p  { color: var(--text-gray); font-size: 1rem; margin-bottom: 1.75rem; }

/* ==============================================================
   OVER PAGE
   ============================================================== */
.about-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.about-hero-bg {
  position: absolute;
  inset: 0;
}
.about-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,5,5,.82) 0%,
    rgba(8,77,44,.6) 50%,
    rgba(5,5,5,.25) 100%
  );
}
.about-hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 180px; pointer-events: none;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}
.about-hero-content h1 { color: var(--white); margin-bottom: 1.25rem; max-width: 680px; }
.about-hero-content .lead {
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 560px;
  line-height: 1.68;
}

.about-story {
  padding: 5.5rem 0;
  background: var(--bg-ivory);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-text p {
  color: var(--text-gray);
  font-size: 1.0625rem;
  line-height: 1.78;
  margin-bottom: 1.25rem;
}
.about-text p:last-child { margin-bottom: 0; }

.founders {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.founder-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(8,77,44,.08);
  box-shadow: var(--shadow-card);
  /* Gelijke hoogte en uitlijning */
  display: flex;
  flex-direction: column;
}
.founder-card h3 {
  color: var(--green-primary);
  margin-bottom: 1.2rem;
}
.founder-card p  { color: var(--text-gray); font-size: .9375rem; margin-bottom: 1rem; flex: 1; }
.founder-li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--green-primary);
  font-weight: 600;
  font-size: .875rem;
  transition: color var(--ease);
}
.founder-li:hover { color: var(--brass-accent); }
.founder-li svg { width: 18px; height: 18px; }

.about-badge {
  background: var(--green-primary);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-top: 2.5rem;
  text-align: center;
}
.about-badge p {
  color: rgba(255,255,255,.9) !important;
  font-style: italic;
  font-size: 1rem !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}
.about-badge strong { color: var(--brass-accent); }

.kvk {
  text-align: center;
  margin-top: 1.25rem;
  color: var(--text-gray);
  font-size: .875rem;
}

/* ==============================================================
   CONTACT PAGE
   ============================================================== */
.contact-section {
  padding: calc(var(--nav-h) + 4.5rem) 0 5.5rem;
  background: var(--bg-ivory);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h1 { color: var(--green-primary); margin-bottom: 1rem; }
.contact-info > p { color: var(--text-gray); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.125rem; margin-bottom: 2.5rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .9375rem;
  color: var(--text-gray);
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(8,77,44,.07);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--green-primary); }
.contact-detail a { color: var(--green-primary); font-weight: 500; transition: color var(--ease); }
.contact-detail a:hover { color: var(--brass-accent); }

/* Calendly placeholder */
.calendly-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(8,77,44,.18);
  padding: 3rem 2rem;
  text-align: center;
  min-height: 360px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 2rem;
}
.calendly-wrap p { color: var(--text-gray); font-size: .9375rem; }
.calendly-logo {
  width: 48px; height: 48px;
  background: var(--green-primary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.calendly-logo svg { width: 26px; height: 26px; stroke: var(--white); }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(8,77,44,.07);
}
.contact-form-wrap h3 { color: var(--green-primary); margin-bottom: 1.5rem; font-size: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-group label {
  font-weight: 600;
  font-size: .8125rem;
  color: var(--text-black);
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea {
  padding: .75rem 1rem;
  border: 2px solid rgba(8,77,44,.11);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: var(--text-black);
  background: var(--bg-ivory);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 4px rgba(8,77,44,.08);
}
.form-group input.error,
.form-group textarea.error { border-color: #d64040; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* ==============================================================
   FOOTER
   ============================================================== */
.footer {
  background: #080808;
  padding: 4.5rem 0 2rem;
}

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

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: .25rem;
}
.footer-brand-desc {
  color: rgba(255,255,255,.4);
  font-size: .875rem;
  margin-top: 1.125rem;
  line-height: 1.65;
}
.footer-socials { display: flex; gap: .625rem; margin-top: 1.25rem; }
.footer-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease);
}
.footer-social:hover { background: var(--green-primary); border-color: var(--green-primary); }
.footer-social svg { width: 18px; height: 18px; fill: rgba(255,255,255,.65); transition: fill var(--ease); }
.footer-social:hover svg { fill: var(--white); }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.125rem;
}
.footer-col a, .footer-col p {
  color: rgba(255,255,255,.45);
  font-size: .875rem;
  line-height: 2.1;
  display: block;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--brass-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  text-align: center;
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-legal a, .footer-bottom p { color: rgba(255,255,255,.3); font-size: .8125rem; transition: color var(--ease); }
.footer-legal a:hover { color: var(--brass-accent); }

/* ==============================================================
   RESPONSIVE – 768px
   ============================================================== */
@media (min-width: 768px) {
  :root { --container-pad: 2rem; }

  .usp-grid { grid-template-columns: repeat(3, 1fr); }

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

  .founders { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ==============================================================
   RESPONSIVE – 1024px
   ============================================================== */
@media (min-width: 1024px) {
  :root { --container-pad: 3rem; }

  .service-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .service-section:nth-child(even) .service-grid > :first-child { order: 2; }
  .service-section:nth-child(even) .service-grid > :last-child  { order: 1; }

  .contact-grid { grid-template-columns: 1fr 1.5fr; gap: 4.5rem; }

  .about-story-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ==============================================================
   RESPONSIVE – 1280px
   ============================================================== */
@media (min-width: 1280px) {
  :root { --container-pad: 4rem; }
}

/* ==============================================================
   MOBILE NAV (hamburger below 1100px – 6 nav items need space)
   ============================================================== */
@media (max-width: 1099px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--green-primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.22);
    border-top: 1px solid rgba(255,255,255,.1);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  /* In dropdown, all links same size */
  .nav-links a,
  .nav-dienst a { font-size: .9375rem; color: rgba(255,255,255,.82); }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (min-width: 1100px) {
  .nav-burger { display: none; }
}

/* ==============================================================
   DIENSTEN PREVIEW (homepage – drie pijlers)
   ============================================================== */
.diensten-preview {
  padding: 5.5rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.dp-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.dp-header h2 { margin-top: .5rem; }
.dp-header p {
  color: var(--text-gray);
  max-width: 560px;
  margin: .875rem auto 0;
  font-size: 1.0625rem;
}

.dp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .dp-grid { grid-template-columns: repeat(3, 1fr); }
}

.dp-card {
  background: var(--bg-ivory);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 2rem;
  border: 1px solid rgba(8,77,44,.08);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}
.dp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(to bottom, var(--green-primary), var(--mint-light));
  transition: height var(--ease-s);
  border-radius: 0 0 4px 0;
}
.dp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.dp-card:hover::before { height: 100%; }
.dp-card h3 { color: var(--green-primary); margin-bottom: 0; }
.dp-card p  { color: var(--text-gray); font-size: .9375rem; flex: 1; }
.dp-subtitle {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .8125rem;
  color: var(--brass-accent);
  letter-spacing: .04em;
  margin-top: .2rem;
  margin-bottom: .25rem;
}
.dp-link {
  font-weight: 600;
  font-size: .875rem;
  color: var(--green-primary);
  transition: color var(--ease);
  margin-top: .25rem;
}
.dp-link:hover { color: var(--brass-accent); }

/* ==============================================================
   REFERENTIES (logo grid)
   ============================================================== */
.referenties {
  padding: 4.5rem 0;
  background: var(--bg-ivory);
  text-align: center;
}

.ref-header {
  margin-bottom: 2.5rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2rem 2.5rem;
  align-items: center;
  justify-items: center;
  margin-bottom: 2rem;
}

.logo-grid img {
  height: 36px;
  width: 100%;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0);
  opacity: 0.6;
  transition: opacity var(--ease), filter var(--ease);
}
.logo-grid img:hover {
  opacity: 0.9;
}

.ref-tagline {
  color: var(--text-gray);
  font-size: .875rem;
  font-style: italic;
  margin-top: 1rem;
}

@media (max-width: 1023px) {
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
  .logo-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .logo-grid img { height: 28px; }
}

/* ==============================================================
   VACATURES
   ============================================================== */
.vacatures {
  padding: 5rem 0;
  background: var(--bg-ivory);
  border-top: 1px solid rgba(8,77,44,.07);
}

.vacatures-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(8,77,44,.08);
  box-shadow: var(--shadow-card);
  align-items: center;
}

@media (min-width: 768px) {
  .vacatures-inner {
    grid-template-columns: 1fr auto;
    gap: 3rem;
    padding: 3rem 3.5rem;
  }
}

.vacatures-text h2 {
  color: var(--green-primary);
  margin-bottom: .875rem;
}
.vacatures-text p {
  color: var(--text-gray);
  font-size: .9375rem;
  line-height: 1.72;
  margin-bottom: .75rem;
}
.vacatures-text p:last-child { margin-bottom: 0; }

.vacatures-cta { flex-shrink: 0; }

/* ==============================================================
   COOKIE BANNER
   ============================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #111;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform .4s ease;
}
.cookie-banner.hidden {
  transform: translateY(110%);
}
.cookie-banner p {
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.cookie-accept {
  padding: .6rem 1.25rem;
  font-size: .875rem;
}
.cookie-more {
  color: rgba(255,255,255,.45);
  font-size: .8125rem;
  transition: color var(--ease);
}
.cookie-more:hover { color: var(--brass-accent); }

/* ==============================================================
   PRIVACY PAGE
   ============================================================== */
.privacy-section {
  padding: 4rem 0 6rem;
  background: var(--bg-ivory);
}

.privacy-content {
  max-width: 720px;
  margin: 0 auto;
}

.privacy-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 2.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(8,77,44,.07);
  box-shadow: var(--shadow-card);
}

.privacy-block h2 {
  color: var(--green-primary);
  font-size: 1.2rem;
  margin-bottom: .875rem;
}

.privacy-block p {
  color: var(--text-gray);
  font-size: .9375rem;
  line-height: 1.72;
  margin-bottom: .75rem;
}
.privacy-block p:last-child { margin-bottom: 0; }

.privacy-block ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--text-gray);
  font-size: .9375rem;
  line-height: 1.9;
  margin-bottom: .75rem;
}

.privacy-block a {
  color: var(--green-primary);
  font-weight: 500;
  transition: color var(--ease);
}
.privacy-block a:hover { color: var(--brass-accent); }

.privacy-updated {
  color: var(--text-gray);
  font-size: .8125rem;
  text-align: center;
  margin-top: 2rem;
}

/* Agentic bullets left-aligned in card */
.agentic-results { text-align: left; }

/* ==============================================================
   RESPONSIVE IMPROVEMENTS – MOBILE (max-width: 767px)
   ============================================================== */
@media (max-width: 767px) {

  /* ── Section padding reduction ── */
  .usp,
  .how,
  .diensten-preview,
  .referenties,
  .social-proof,
  .vacatures,
  .service-section,
  .service-extra,
  .about-story     { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .final-cta       { padding: 4rem 0; }

  /* ── Buttons: allow wrap on small screens ── */
  .btn { white-space: normal; text-align: center; }

  /* ── Hero ── */
  .hero-content {
    padding-top:    calc(var(--nav-h) + 2.25rem);
    padding-bottom: 3.5rem;
  }
  .hero-sub    { font-size: 1rem; max-width: 100%; }
  .hero-scroll { display: none; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }
  .hero-actions .btn {
    justify-content: center;
    line-height: 1.4;
  }

  /* ── Drie pijlers: compacte header op mobiel ── */
  .dp-header { margin-bottom: 2rem; }

  /* ── Page hero (inner pages) ── */
  .page-hero {
    padding-top:    calc(var(--nav-h) + 2.5rem);
    padding-bottom: 2.5rem;
  }

  /* ── About hero ── */
  .about-hero         { min-height: 55vh; }
  .about-hero-content { padding: 3rem var(--container-pad); }

  /* ── Section sub-headers ── */
  .usp-header  { margin-bottom: 2.5rem; }
  .how-header  { margin-bottom: 2.5rem; }

  /* ── Steps: tighter gap on mobile ── */
  .step        { gap: 1rem; }

  /* ── Service grid: reduce gap ── */
  .service-grid       { gap: 2rem; }
  .about-story-grid   { gap: 2rem; }

  /* ── Service card (Agentic AI pijler 3) ── */
  .service-card { padding: 2rem 1.5rem; }

  /* ── Vacatures inner ── */
  .vacatures-inner { padding: 2rem 1.5rem; }

  /* ── Contact form ── */
  .contact-form-wrap { padding: 1.75rem 1.25rem; }

  /* ── Trust strip separators (contact.html) ── */
  .trust-sep { display: none !important; }

  /* ── Footer: 2-col layout for nav columns ── */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }

  /* ── Cookie banner: stack on small screens ── */
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: .875rem;
    padding: 1.25rem 1rem;
  }
  .cookie-actions { width: 100%; justify-content: space-between; }

  /* ── Nav dropdown: max-height safety ── */
  .nav-links {
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
  }

  /* ── Vacatures page ── */
  .vac-intro-section,
  .vac-list-section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .vac-card-header  { padding: 1.5rem 1.25rem 1.25rem; }
  .vac-card-body    { padding: 1.5rem 1.25rem 1.75rem; }

  /* ── Referenties page ── */
  .ref-logos-section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
}

/* ==============================================================
   VERY SMALL PHONES (max-width: 374px)
   ============================================================== */
@media (max-width: 374px) {
  :root { --container-pad: 1rem; }
  .contact-form-wrap { padding: 1.5rem 1rem; }
  .vacatures-inner   { padding: 1.75rem 1rem; }
  .service-card      { padding: 1.75rem 1rem; }
}

/* ==============================================================
   TABLET (768px – 1023px) – targeted padding improvements
   ============================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  .usp,
  .how,
  .diensten-preview,
  .service-section,
  .service-extra { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .final-cta     { padding: 5.5rem 0; }

}

/* ==============================================================
   DRIE PIJLERS – kolom-fix
   ============================================================== */
/* 1 kolom tot de nav-breakpoint (nav is ook 1100px) */
@media (max-width: 1099px) {
  .dp-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* 3 kolommen op volledig scherm */
@media (min-width: 1100px) {
  .dp-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==============================================================
   LOGO TICKER
   ============================================================== */
.logo-ticker-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to right, transparent 0%, black 6%, black 94%, transparent 100%
  );
  mask-image: linear-gradient(
    to right, transparent 0%, black 6%, black 94%, transparent 100%
  );
}

.logo-ticker {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: logoTicker 32s linear infinite;
}

.logo-ticker-wrap:hover .logo-ticker { animation-play-state: paused; }

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

.logo-ticker img {
  height: 38px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  opacity: .82;
  transition: opacity var(--ease);
}
.logo-ticker img:hover { opacity: 1; }

@media (max-width: 767px) {
  .logo-ticker      { gap: 3rem; }
  .logo-ticker img  { height: 28px; }
}

/* ==============================================================
   PRIVACY PAGE (new style with icons)
   ============================================================== */
.privacy-block-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.privacy-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(8,77,44,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.privacy-icon svg {
  width: 20px; height: 20px;
  stroke: var(--green-primary);
  fill: none;
}

.privacy-block h2 {
  font-size: 1.15rem;
  color: var(--green-primary);
  margin: 0;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: .75rem 0;
}
.privacy-list li {
  padding: .3rem 0 .3rem 1.5rem;
  position: relative;
  color: var(--text-gray);
  font-size: .9375rem;
  line-height: 1.6;
}
.privacy-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .6rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass-accent);
}

.privacy-contact-block {
  background: var(--green-primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: .5rem;
}
.privacy-contact-block h2 {
  color: var(--white);
  margin-bottom: .625rem;
}
.privacy-contact-block > p {
  color: rgba(255,255,255,.78);
  font-size: .9375rem;
  margin-bottom: 1.75rem;
}

.privacy-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .privacy-contact-grid { grid-template-columns: repeat(3, 1fr); }
}

.privacy-contact-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}
.privacy-contact-card .label {
  color: var(--brass-accent);
  margin-bottom: .5rem;
}
.privacy-contact-card a {
  color: rgba(255,255,255,.9);
  font-size: .9375rem;
  font-weight: 500;
  transition: color var(--ease);
}
.privacy-contact-card a:hover { color: var(--brass-accent); }

/* ==============================================================
   REFERENTIES PAGE
   ============================================================== */
.ref-intro {
  padding: 3.5rem 0;
  background: var(--green-primary);
  position: relative;
  overflow: hidden;
}
.ref-intro-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.ref-intro-inner p {
  color: rgba(255,255,255,.82);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.ref-logos-section {
  padding: 5rem 0 6rem;
  background: var(--bg-ivory);
}

.ref-page-header {
  text-align: center;
  margin-bottom: 3rem;
}
.ref-page-header h2 { margin-top: .5rem; }

/* Sectorenblok onder logo grid */
.ref-sectors-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(8,77,44,.1);
}

@media (min-width: 640px) {
  .ref-sectors-block { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .ref-sectors-block { grid-template-columns: repeat(3, 1fr); }
}

.ref-sector-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(8,77,44,.07);
  padding: 1.5rem 1.75rem;
}
.ref-sector-item .label { margin-bottom: .625rem; }
.ref-sector-item p {
  color: var(--text-gray);
  font-size: .9rem;
  line-height: 1.65;
}

/* ==============================================================
   VACATURES PAGE
   ============================================================== */

/* Intro section */
.vac-intro-section {
  padding: 5.5rem 0;
  background: var(--bg-ivory);
  position: relative;
  overflow: hidden;
}

.vac-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .vac-intro-grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
}

.vac-intro-text h2 { color: var(--green-primary); margin-bottom: .875rem; margin-top: .5rem; }
.vac-intro-text p { color: var(--text-gray); font-size: 1.0625rem; line-height: 1.72; margin-bottom: 1rem; }
.vac-intro-text p:last-child { margin-bottom: 0; }

/* Kernwaarden grid – altijd gestapeld, 2 kolommen alleen op brede schermen */
.vac-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 1280px) {
  .vac-values-grid { grid-template-columns: 1fr 1fr; }
}

.vac-value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(8,77,44,.08);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  display: flex;
  gap: .875rem;
  align-items: flex-start;
  transition: transform var(--ease), box-shadow var(--ease);
}
.vac-value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }

.vac-value-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(8,77,44,.06);
  display: flex; align-items: center; justify-content: center;
}

.vac-value-card strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .875rem;
  color: var(--green-primary);
  margin-bottom: .3rem;
  line-height: 1.2;
}
.vac-value-card p {
  font-size: .8125rem;
  color: var(--text-gray);
  line-height: 1.55;
}

/* Vacature list section */
.vac-list-section {
  padding: 5rem 0 6rem;
  background: var(--white);
}

.vac-list-header {
  margin-bottom: 2.5rem;
}
.vac-list-header h2 { margin-top: .5rem; color: var(--green-primary); }

/* Vacature cards */
.vac-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(8,77,44,.1);
  box-shadow: var(--shadow-card);
  margin-bottom: 2rem;
  overflow: hidden;
  background: var(--white);
}

.vac-card-header {
  padding: 2.25rem 2.5rem 2rem;
  border-bottom: 1px solid rgba(8,77,44,.07);
}

/* Green accent for intern card */
.vac-card--intern { border-top: 4px solid var(--green-primary); }
.vac-card--intern .vac-card-header { background: linear-gradient(to bottom right, rgba(8,77,44,.03), transparent); }

/* Brass accent for fulltime card */
.vac-card--brass { border-top: 4px solid var(--brass-accent); }
.vac-card--brass .vac-card-header { background: linear-gradient(to bottom right, rgba(196,179,61,.04), transparent); }

.vac-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.vac-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: .25rem .75rem;
}
.vac-tag--green {
  color: var(--green-primary);
  background: rgba(8,77,44,.07);
  border: 1px solid rgba(8,77,44,.18);
}
.vac-tag--brass {
  color: #7a6e00;
  background: rgba(196,179,61,.1);
  border: 1px solid rgba(196,179,61,.3);
}
.vac-tag--neutral {
  color: var(--text-gray);
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.1);
}

.vac-card-header h2 {
  color: var(--green-primary);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-bottom: .75rem;
}
.vac-card--brass .vac-card-header h2 { color: #5a5200; }

.vac-lead {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.68;
  max-width: 680px;
}

/* Card body – 2-column grid */
.vac-card-body {
  padding: 2rem 2.5rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vac-card-body { grid-template-columns: 1fr 1fr; }
}

.vac-section h3 {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: .875rem;
}
.vac-card--brass .vac-section h3 { color: var(--brass-accent); }

.vac-list {
  list-style: none;
  padding: 0;
}
.vac-list li {
  font-size: .9375rem;
  color: var(--text-gray);
  padding: .3rem 0 .3rem 1.5rem;
  position: relative;
  line-height: 1.55;
}
.vac-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .7rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-primary);
  flex-shrink: 0;
}
.vac-card--brass .vac-list li::before { background: var(--brass-accent); }

.vac-section-p {
  font-size: .9375rem;
  color: var(--text-gray);
  line-height: 1.68;
}

.vac-superpower {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  line-height: 1.6;
  font-style: normal;
}
.vac-superpower--green {
  background: rgba(8,77,44,.05);
  border-left: 3px solid var(--green-primary);
  color: var(--text-gray);
}
.vac-superpower--brass {
  background: rgba(196,179,61,.07);
  border-left: 3px solid var(--brass-accent);
  color: var(--text-gray);
}
.vac-superpower strong { color: var(--green-primary); font-weight: 700; }
.vac-superpower--brass strong { color: #5a5200; }

/* Card CTA bar */
.vac-card-cta {
  padding: 1.5rem 2.5rem;
  border-top: 1px solid rgba(8,77,44,.07);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: var(--bg-ivory);
}

.vac-cta-note {
  font-size: .875rem;
  color: var(--text-gray);
}
.vac-cta-note a {
  color: var(--green-primary);
  font-weight: 500;
  transition: color var(--ease);
}
.vac-cta-note a:hover { color: var(--brass-accent); }

/* Open sollicitatie */
.vac-open-block {
  background: var(--bg-ivory);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(8,77,44,.09);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: .5rem;
}

.vac-open-text h3 {
  color: var(--green-primary);
  margin-bottom: .4rem;
}
.vac-open-text p {
  color: var(--text-gray);
  font-size: .9375rem;
}

/* Sfeer foto */
.vac-sfeer {
  padding: 0 0 4rem;
  background: var(--white);
}
.vac-sfeer-inner {
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.vac-sfeer-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==============================================================
   REDUCED MOTION
   ============================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-bg img { animation: none; }
}

/* ===================== LOGO TICKER ===================== */
.logo-ticker {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-ticker-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}

.logo-ticker-track img {
  height: 40px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;
  opacity: 1;
}

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

@media (prefers-reduced-motion: reduce) {
  .logo-ticker-track { animation: none; }
}
