/* ================================================
   PeopleSync & Digital Transformers
   Design tokens — exact Figma extract (april 2026)

   Figma variabelen:
   Body/Primary:              #362b4d
   Branding/Primary/Full/Base:#8466c5
   Primary/Blue/600:          #2563EB
   Icons/Tertiary:            #b2cf7a
   Borders/Primary:           rgba(0,0,0,.08)
   Borders/Tertiary:          rgba(0,0,0,.04)
   Background/Secondary:      #ffffff
   Radius-06:                 24px
   Spacing-09:                48px
   Spacing-10:                64px
   Spacing-11:                80px
   ================================================ */

:root {
  /* ── Kleur — exact uit Figma ── */
  --purple-dark: #362b4d;          /* Body/Primary — tekst & titels */
  --purple:      #8466c5;          /* Branding/Primary/Full/Base */
  --purple-mid:  #9477d4;          /* iets lichter voor hovers */
  --purple-lt:   #ede5ff;          /* chip/tag achtergrond (uit design context) */
  --purple-pill: rgba(54,43,77,.2);/* chip/tag rand (uit design context) */
  --blue:        #2563EB;          /* Primary/Blue/600 — toggles, links */
  --green:       #b2cf7a;          /* Icons/Tertiary — sage-groen CTA */
  --green-dk:    #93b355;

  /* ── Achtergronden ── */
  --white:       #ffffff;          /* Background/Secondary */
  --off:         #faf9fc;          /* subtiel warm-wit voor secties */
  --gray-lt:     #f5f3f9;          /* lichte sectie-achtergrond */

  /* ── Tekst ── */
  --text:        #362b4d;          /* = Body/Primary */
  --gray:        rgba(54,43,77,.55);/* Body/Primary @ 55% — subtiele tekst */
  --gray-dk:     rgba(54,43,77,.75);/* Body/Primary @ 75% — labels */

  /* ── Randen ── */
  --border:      rgba(0,0,0,.08);  /* Borders/Primary */
  --border-lt:   rgba(0,0,0,.04);  /* Borders/Tertiary */

  /* ── Radius ── */
  --r-pill:      999px;
  --r-lg:        24px;             /* Radius-06 (Figma) — grote cards */
  --r:           16px;             /* standaard cards */
  --r-sm:        10px;             /* kleine elementen */

  /* ── Schaduw — gebaseerd op Figma card shadows rgba(0,0,0,.12) ── */
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.12);
  --shadow-card: 0 4px 80px rgba(0,0,0,.10); /* grote Figma-kaart schaduw */

  /* ── Spacing — Figma tokens ── */
  --sp-sm:  48px;   /* Spacing-09 */
  --sp-md:  64px;   /* Spacing-10 */
  --sp-lg:  80px;   /* Spacing-11 */

  --t: .22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Seasonsanstrial', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--purple-dark);        /* Body/Primary exact */
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAVIGATIE ──────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
}
.nav-logo {
  display: flex; align-items: center;
  line-height: 1;
}
.nav-logo img {
  height: 22px;
  width: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a {
  color: var(--gray-dk); font-size: .9rem; font-weight: 500;
  transition: color var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-right { display: flex; align-items: center; gap: .8rem; }
.lang-switcher { display: flex; gap: .25rem; }
.lang-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--gray); font-size: .75rem; font-weight: 600;
  padding: .22rem .52rem; border-radius: var(--r-sm);
  cursor: pointer; transition: var(--t); font-family: inherit;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--purple); border-color: var(--purple); color: white;
}
.nav-cta {
  background: var(--green); color: var(--purple-dark);
  font-weight: 700; font-size: .88rem;
  padding: .5rem 1.3rem; border-radius: var(--r-pill);
  transition: var(--t); white-space: nowrap;
  box-shadow: 0 2px 10px rgba(178,207,122,.35);
}
.nav-cta:hover { background: var(--green-dk); color: white; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(178,207,122,.45); }
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--purple-dark); transition: var(--t); }

/* ── KNOPPEN ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .75rem 1.8rem; border-radius: var(--r-pill);
  font-weight: 700; font-size: .95rem; font-family: inherit;
  cursor: pointer; transition: var(--t); border: 2px solid transparent;
}
.btn-primary {
  background: var(--green); color: var(--purple-dark);
  box-shadow: 0 3px 14px rgba(178,207,122,.4);
}
.btn-primary:hover {
  background: var(--green-dk); color: white; transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(178,207,122,.5);
}
.btn-outline {
  background: transparent;
  border-color: var(--border); color: var(--gray-dk);
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-1px); }
.btn-purple {
  background: var(--purple); color: white;
  box-shadow: 0 3px 14px rgba(132,102,197,.35);
}
.btn-purple:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(132,102,197,.45); }
.btn-ghost { background: transparent; border-color: var(--purple-dark); color: var(--purple-dark); }
.btn-ghost:hover { background: var(--purple-dark); color: white; }

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, var(--off) 0%, #ede8fb 55%, var(--off) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(132,102,197,.1) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(178,207,122,.12) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--purple-lt);              /* #ede5ff — Figma chip */
  border: 1px solid var(--purple-pill);      /* rgba(54,43,77,.2) */
  color: var(--purple);                      /* #8466c5 */
  font-size: .8rem; font-weight: 700;
  padding: .35rem 1rem; border-radius: var(--r-pill);
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.hero-badge .pill {
  background: var(--purple); color: white;
  font-size: .72rem; font-weight: 700;
  padding: .15rem .6rem; border-radius: var(--r-pill);
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; color: var(--purple-dark);
  line-height: 1.08; letter-spacing: -.03em;
  max-width: 800px; margin: 0 auto 1.5rem;
  position: relative; z-index: 1;
}
.hero h1 em {
  font-style: normal; color: var(--purple);
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.1rem; color: var(--gray);
  max-width: 540px; margin: 0 auto 2.5rem;
  line-height: 1.7; position: relative; z-index: 1;
}
.hero-cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.hero-partners {
  margin-top: 3rem; color: var(--gray);
  font-size: .82rem; font-weight: 500;
  position: relative; z-index: 1;
}
.partner-logos { display: flex; gap: 1rem; justify-content: center; margin-top: .8rem; flex-wrap: wrap; }
.partner-pill {
  background: white; border: 1px solid var(--border);
  color: var(--gray-dk); font-size: .82rem; font-weight: 600;
  padding: .35rem .9rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}

/* ── SECTIE ─────────────────────────────────── */
section { padding: var(--sp-lg, 80px) 5%; }
.section-label {
  display: inline-block;
  color: var(--purple); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: .75rem;
  background: var(--purple-lt);
  padding: .25rem .75rem;
  border-radius: var(--r-pill);
}
.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--purple-dark);
  letter-spacing: -.025em; margin-bottom: .6rem; line-height: 1.15;
}
.section-title p { color: var(--gray); font-size: 1rem; max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ── CARDS ──────────────────────────────────── */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.card {
  /* Figma card: white bg, rgba(0,0,0,.08) border, 24px radius, soft shadow */
  background: var(--white);
  border: 1px solid var(--border);           /* Borders/Primary */
  border-radius: var(--r-lg);               /* Radius-06 = 24px */
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  position: relative; overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--green));
  opacity: 0; transition: opacity var(--t);
}
.card:hover {
  box-shadow: var(--shadow); transform: translateY(-4px);
  border-color: rgba(132,102,197,.3);
}
.card:hover::before { opacity: 1; }
.card-icon {
  /* Figma chip/tag: #ede5ff background */
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--purple-lt);
  border: 1px solid var(--purple-pill);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.card h3 { font-size: 1rem; font-weight: 800; color: var(--purple-dark); margin-bottom: .5rem; }
.card p  { font-size: .9rem; color: var(--gray); line-height: 1.7; }

/* ── STAPPEN ────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
  counter-reset: steps;
}
.step {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem 1.5rem; position: relative;
  counter-increment: steps; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--t);
}
.step:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step::before {
  content: counter(steps);
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white; font-weight: 800; font-size: .9rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .9rem;
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--purple-dark); margin-bottom: .5rem; }
.step p { font-size: .88rem; color: var(--gray); }

/* ── SECTIE-VARIANTEN ───────────────────────── */
.light-purple { background: linear-gradient(160deg, var(--off) 0%, var(--purple-lt) 100%); }
.light-gray   { background: var(--off); }

/* ── PAGE HERO ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--off) 0%, var(--purple-lt) 100%);
  border-bottom: 1px solid var(--border);
  padding: 120px 5% 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(132,102,197,.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900; color: var(--purple-dark);
  letter-spacing: -.03em; margin-bottom: .7rem;
  position: relative; z-index: 1;
}
.page-hero p { color: var(--gray); font-size: 1rem; max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }

/* ── ABOUT GRID ─────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto;
}
.about-visual {
  /* #ede5ff achtergrond — Figma chip/licht paars */
  background: linear-gradient(135deg, var(--purple-lt), #e8e0f8);
  border-radius: var(--r-lg); /* Radius-06 = 24px */
  height: 400px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 1px solid var(--border); /* Borders/Primary rgba(0,0,0,.08) */
  box-shadow: var(--shadow-card);
}
.about-visual .emoji { font-size: 6rem; opacity: .25; }
.about-visual .badge {
  position: absolute; bottom: 1.8rem; right: 1.8rem;
  background: var(--purple); color: white;
  padding: .4rem 1rem; border-radius: var(--r-pill);
  font-weight: 700; font-size: .82rem;
  box-shadow: 0 4px 14px rgba(132,102,197,.4);
}
.about-text h2 {
  font-size: 1.9rem; font-weight: 900; color: var(--purple-dark);
  letter-spacing: -.025em; margin-bottom: 1rem;
}
.about-text p { color: var(--gray); margin-bottom: .9rem; line-height: 1.7; }
.check-list { list-style: none; margin: 1.2rem 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .4rem 0; font-size: .95rem; color: var(--text);
}
.check-list li::before {
  content: '✓'; color: var(--green-dk); font-weight: 900;
  flex-shrink: 0; margin-top: 2px;
  background: rgba(178,207,122,.2);
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
}

/* ── WAARDEN ────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.value-card {
  background: var(--white); border-radius: var(--r);
  padding: 1.8rem; border: 1px solid var(--border);
  border-top: 3px solid var(--purple);  /* Branding/Primary */ transition: var(--t);
  box-shadow: var(--shadow-sm);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.value-card h3 { font-size: 1rem; font-weight: 800; color: var(--purple-dark); margin-bottom: .5rem; }
.value-card p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

/* ── DIENSTEN ───────────────────────────────── */
.dienst-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.dienst {
  background: var(--white); border-radius: var(--r-lg); /* Radius-06 = 24px */
  padding: 2rem; border: 1px solid var(--border);       /* Borders/Primary */
  border-left: 4px solid var(--purple); transition: var(--t);
  box-shadow: var(--shadow-sm);
}
.dienst:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-left-color: var(--green-dk); }
.dienst-num { font-size: 2.2rem; font-weight: 900; color: var(--purple-pill); line-height: 1; margin-bottom: .5rem; }
.dienst h3 { font-size: 1.05rem; font-weight: 800; color: var(--purple-dark); margin-bottom: .6rem; }
.dienst p { font-size: .9rem; color: var(--gray); line-height: 1.7; }

/* ── PAKKETTEN ──────────────────────────────── */
.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem; max-width: 1100px; margin: 0 auto;
}
.package {
  background: var(--white); border-radius: var(--r);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--t);
}
.package:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--purple-pill); }
.package-header {
  padding: 1.8rem;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  text-align: center;
}
.package-header h3 { font-size: 1.5rem; font-weight: 900; color: white; margin-bottom: .25rem; letter-spacing: -.02em; }
.package-header p { color: rgba(255,255,255,.55); font-size: .85rem; }
.package-body { padding: 1.8rem; }
.package-tag {
  display: inline-block; background: var(--purple-lt); color: var(--purple);
  font-size: .73rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .22rem .7rem; border-radius: var(--r-pill); margin-bottom: 1rem;
}
.package-body p { font-size: .9rem; color: var(--gray); margin-bottom: 1.2rem; line-height: 1.7; }
.ideal-list { list-style: none; }
.ideal-list li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .85rem; color: var(--text); padding: .25rem 0;
}
.ideal-list li::before { content: '→'; color: var(--purple); flex-shrink: 0; font-weight: 700; }

/* ── CONTACT ────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; max-width: 1000px; margin: 0 auto; align-items: start;
}
.contact-info h2 { font-size: 1.6rem; font-weight: 900; color: var(--purple-dark); letter-spacing: -.025em; margin-bottom: .8rem; }
.contact-info > p { color: var(--gray); margin-bottom: 1.8rem; font-size: .95rem; }
.contact-item { display: flex; gap: .9rem; margin-bottom: 1.2rem; align-items: flex-start; }
.contact-item .icon {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: var(--purple-lt);
  display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
  border: 1px solid var(--purple-pill);
}
.contact-item h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); margin-bottom: .15rem; }
.contact-item p { font-size: .9rem; color: var(--text); margin: 0; }
.contact-form-box {
  background: var(--off); border-radius: var(--r);
  padding: 2.5rem; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form-box h3 { font-size: 1.2rem; font-weight: 900; color: var(--purple-dark); margin-bottom: 1.5rem; letter-spacing: -.01em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
label { display: block; font-size: .82rem; font-weight: 700; color: var(--gray-dk); margin-bottom: .35rem; letter-spacing: .01em; }
input, textarea, select {
  width: 100%; padding: .75rem 1rem;
  border-radius: var(--r-sm); border: 1.5px solid var(--border);
  background: var(--white); font-size: .92rem;
  font-family: inherit; transition: border-color var(--t), box-shadow var(--t);
  outline: none; color: var(--text);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(132,102,197,.12);
}
textarea { min-height: 120px; resize: vertical; }
.btn-submit {
  width: 100%; background: var(--green); color: var(--purple-dark);
  padding: .95rem; border: none; border-radius: var(--r-pill);
  font-size: .95rem; font-weight: 700; cursor: pointer;
  transition: var(--t); font-family: inherit;
  box-shadow: 0 3px 14px rgba(178,207,122,.4);
}
.btn-submit:hover { background: var(--green-dk); color: white; box-shadow: 0 6px 22px rgba(178,207,122,.5); transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .big { font-size: 3rem; }
.form-success h3 { color: var(--purple-dark); margin: .6rem 0 .3rem; font-weight: 800; }
.form-success p { color: var(--gray); font-size: .9rem; }

/* ── CONTACT MAIL BOX ───────────────────────── */
.contact-mail-box {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.25rem;
}
.contact-mail-box .mail-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--purple-lt); color: var(--purple-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  border: 1px solid var(--purple-pill);
  margin: 0;
}
.contact-mail-box h3 { margin: 0; }
.contact-mail-box > p {
  color: var(--gray); font-size: .95rem; line-height: 1.6;
  max-width: 40ch; margin: 0;
}
.contact-mail-box .mail-btn {
  width: auto; max-width: 100%;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem; padding: 1rem 2.25rem; text-decoration: none;
  margin-top: .75rem;
}
.contact-mail-box .mail-btn .mail-btn-icon { font-size: 1.1rem; line-height: 1; }
.contact-mail-box .mail-sub { font-size: .82rem; color: var(--gray); margin: .5rem 0 0; }
.contact-mail-box .mail-sub a { color: var(--purple-dark); font-weight: 700; text-decoration: none; }
.contact-mail-box .mail-sub a:hover { text-decoration: underline; }

/* ── CTA BAND ───────────────────────────────── */
.cta-band {
  /* Body/Primary #362b4d — exact Figma donker paars */
  background: linear-gradient(135deg, #2c2244 0%, var(--purple-dark) 50%, #2c2244 100%);
  text-align: center; padding: var(--sp-lg, 80px) 5%;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(132,102,197,.35) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(178,207,122,.15) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: white;
  margin-bottom: .8rem; font-weight: 900; letter-spacing: -.025em;
  position: relative; z-index: 1;
}
.cta-band p {
  color: rgba(255,255,255,.65); max-width: 500px;
  margin: 0 auto 2rem; font-size: .98rem;
  position: relative; z-index: 1;
}
.cta-band .btn { position: relative; z-index: 1; }

/* ── FOOTER ─────────────────────────────────── */
footer {
  /* Body/Primary als basis voor de footer — Figma #362b4d */
  background: linear-gradient(160deg, #2c2244 0%, var(--purple-dark) 100%);
  color: rgba(255,255,255,.5); padding: var(--sp-md, 64px) 5% 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand .nav-logo { color: white; font-size: 1.2rem; margin-bottom: .9rem; }
.footer-brand p { font-size: .87rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: white; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .9rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a { font-size: .86rem; transition: color var(--t); }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.4rem; text-align: center; font-size: .8rem; }
.footer-bottom span { color: var(--green); }

/* ── LOGO BAND CARROUSEL ────────────────────── */
.logo-band {
  padding: 2.2rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.logo-band::before,
.logo-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 140px;
  z-index: 2; pointer-events: none;
}
.logo-band::before { left: 0;  background: linear-gradient(to right, var(--white), transparent); }
.logo-band::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: scroll-logos 22s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
  flex-shrink: 0;
}
.logo-item img {
  height: 34px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter .3s ease;
  display: block;
}
.logo-item img:hover { filter: grayscale(0%) opacity(1); }

/* ── STATS / PROOF ──────────────────────────── */
.stats-row {
  display: flex; gap: 0; justify-content: center;
  flex-wrap: wrap;
}
.stats-row > div {
  padding: 1.5rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.1);
  flex: 1; min-width: 160px;
  text-align: center;
}
.stats-row > div:last-child { border-right: none; }
.stat-num {
  font-size: 2.6rem; font-weight: 900; color: var(--green);
  line-height: 1; margin-bottom: .3rem;
  font-family: 'Seasonsanstrial', Arial, sans-serif;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.6); }

/* ── TESTIMONIALS ───────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.testimonial {
  background: var(--white); border-radius: var(--r);
  padding: 2rem 1.8rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--t);
  position: relative;
}
.testimonial:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial::before {
  content: '\201C';
  font-size: 4.5rem; color: var(--purple-lt);
  position: absolute; top: .5rem; left: 1.4rem;
  line-height: 1; font-weight: 900;
  font-family: Georgia, serif;
}
.testimonial blockquote {
  font-size: .92rem; color: var(--text); line-height: 1.7;
  margin-bottom: 1.2rem; margin-top: 1.6rem;
}
.testimonial cite {
  font-style: normal; display: flex; align-items: center; gap: .7rem;
}
.cite-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--green-dk));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; color: white; flex-shrink: 0;
}
.cite-name { font-weight: 700; font-size: .88rem; color: var(--purple-dark); }
.cite-role { font-size: .78rem; color: var(--gray); }

/* ── PARTNER LOGOS ──────────────────────────── */
/* Pakkettenheader logo */
.pkg-logo-wrap {
  display: flex; justify-content: center; align-items: center;
  margin-bottom: .7rem;
}
.pkg-logo {
  height: 36px; width: auto; max-width: 150px;
  object-fit: contain;
  background: white; border-radius: 10px;
  padding: .4rem 1rem;
  box-shadow: 0 3px 14px rgba(0,0,0,.2);
}
/* Hero / partner pill logo */
.partner-pill-logo {
  display: inline-flex; align-items: center;
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: .3rem 1rem;
  box-shadow: var(--shadow-sm); transition: var(--t);
  text-decoration: none;
}
.partner-pill-logo:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.partner-pill-logo img {
  height: 20px; width: auto; max-width: 90px;
  object-fit: contain; display: block;
}
/* Segment matcher logo */
.match-logo-wrap {
  display: flex; justify-content: center; margin-bottom: .6rem;
}
.match-logo {
  height: 30px; width: auto; max-width: 130px;
  object-fit: contain;
  background: white; border-radius: 8px;
  padding: .3rem .8rem;
  box-shadow: var(--shadow-sm);
}
/* Inline tekst logo chip */
.inline-logo-chip {
  display: inline-flex; align-items: center;
  background: white; border: 1px solid var(--border);
  border-radius: 6px; padding: .15rem .5rem;
  vertical-align: middle; margin: 0 .2rem;
  box-shadow: var(--shadow-sm);
}
.inline-logo-chip img {
  height: 15px; width: auto; max-width: 70px;
  object-fit: contain; display: block;
}
/* Tag met logo */
.partner-tag-logo {
  display: inline-flex; align-items: center; gap: .4rem;
  background: white; border: 1px solid var(--border);
  border-radius: 8px; padding: .3rem .8rem;
  box-shadow: var(--shadow-sm);
}
.partner-tag-logo img {
  height: 16px; width: auto; max-width: 70px;
  object-fit: contain;
}
/* Hero badge inline logos */
.hero-badge-logos {
  display: inline-flex; align-items: center; gap: .5rem;
}
.hero-badge-logos img {
  height: 16px; width: auto; max-width: 70px;
  object-fit: contain; border-radius: 3px;
}
.hero-badge-logos .dot { opacity: .35; font-size: .8rem; }

/* ── ANIMATIES ──────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIEF ─────────────────────────────── */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(14px);
    padding: 1.5rem 5%; gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 64px 5%; }
}

/* ── NAV HEALTH CHECK ────────────────────────── */
.nav-cta-check {
  background: transparent;
  color: var(--purple); border: 1.5px solid var(--purple-pill);
  font-weight: 600;
}
.nav-cta-check:hover { background: var(--purple-lt); border-color: var(--purple); color: var(--purple-dark); transform: translateY(-1px); }

/* ── HR HEALTH CHECK BANNER ─────────────────── */
.health-check-banner {
  background: linear-gradient(135deg, #2c2147 0%, var(--purple-dark) 50%, #1a1530 100%);
  border-radius: var(--r-lg); padding: 2.8rem 2.8rem 2.8rem 3rem;
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center; overflow: hidden; position: relative;
  max-width: 1100px; margin: 0 auto;
}
.health-check-banner::before {
  content: ''; position: absolute; top: -80px; right: 280px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(178,207,122,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hcb-badge {
  display: inline-block;
  background: rgba(178,207,122,.2); border: 1px solid rgba(178,207,122,.35);
  color: var(--green); font-size: .72rem; font-weight: 700;
  padding: .25rem .8rem; border-radius: var(--r-pill);
  margin-bottom: 1rem; letter-spacing: .06em; text-transform: uppercase;
}
.hcb-left h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 900; color: white;
  letter-spacing: -.02em; margin-bottom: .7rem; line-height: 1.2;
}
.hcb-left h2 em { font-style: normal; color: var(--green); }
.hcb-left p { font-size: .92rem; color: rgba(255,255,255,.65); line-height: 1.65; max-width: 480px; }
.hcb-right { flex-shrink: 0; }
.hcb-score-preview {
  display: flex; align-items: center; gap: 1.2rem;
  background: rgba(255,255,255,.08); border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem; border: 1px solid rgba(255,255,255,.12);
}
.hcb-score-ring {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #a88bdb);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(132,102,197,.4);
}
.hcb-score-num   { font-size: 1.5rem; font-weight: 900; color: white; line-height: 1; }
.hcb-score-label { font-size: .62rem; color: rgba(255,255,255,.7); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.hcb-checks { display: flex; flex-direction: column; gap: .4rem; }
.hcb-check {
  font-size: .78rem; padding: .3rem .7rem; border-radius: var(--r-pill); font-weight: 500;
}
.hcb-check-done { background: rgba(178,207,122,.2); color: var(--green); }
.hcb-check-todo { background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
@media (max-width: 900px) {
  .health-check-banner { grid-template-columns: 1fr; }
  .hcb-right { display: none; }
}

/* ════════════════════════════════════════════
   MOBILE-FIRST VERBETERINGEN
   Targets: 768px (tablet), 480px (phone), 360px (kleine telefoon)
   ════════════════════════════════════════════ */

/* ── NAVIGATIE ─────────────────────────────── */
@media (max-width: 768px) {
  /* Verberg de taalwisselaar op mobiel — ruimte te krap */
  .lang-switcher { display: none; }

  /* Health Check nav-knop ook verbergen op mobiel (zit in menu) */
  .nav-cta-check { display: none; }

  /* Zorg dat het nav-rechts-blok niet crashed */
  .nav-right { gap: .5rem; }
}

/* ── HERO ───────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    padding: 96px 5% 60px;
  }
  /* Verklein de h1 floor zodat lange titels niet buiten scherm lopen */
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    letter-spacing: -.02em;
  }
  .hero p {
    font-size: .97rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: .7rem;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* ── LOGO-BAND CARROUSEL ────────────────────── */
@media (max-width: 768px) {
  .logo-item {
    padding: 0 1.8rem; /* Was 4rem — te breed voor mobiel */
  }
  .logo-item img {
    height: 26px;
  }
}

/* ── PAGE HERO (inner pagina's) ─────────────── */
@media (max-width: 768px) {
  .page-hero {
    padding: 100px 5% 48px;
  }
  .page-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }
}

/* ── SECTIONS PADDING ───────────────────────── */
@media (max-width: 768px) {
  section { padding: 56px 5%; }
  .cta-band { padding: 64px 5%; }
}
@media (max-width: 480px) {
  section { padding: 44px 5%; }
}

/* ── GRIDS: GAPS REDUCEREN ──────────────────── */
@media (max-width: 768px) {
  .cards-grid,
  .steps-grid,
  .values-grid,
  .packages-grid,
  .dienst-grid {
    gap: 1rem;
  }
}

/* ── PROBLEEM GRID ──────────────────────────── */
@media (max-width: 768px) {
  .prob-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .prob-callout { padding: 1.8rem 1.4rem; }
}

/* ── FRICTIE GRID ───────────────────────────── */
@media (max-width: 768px) {
  .fric-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* ── BELGE GRID ─────────────────────────────── */
@media (max-width: 768px) {
  .belge-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .belge-card { padding: 1.2rem; }
  .belge-badge { font-size: .82rem; }
}

/* ── REGULATOIRE CARDS (#wetgeving) ─────────── */
@media (max-width: 768px) {
  #wetgeving .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ABOUT GRID ─────────────────────────────── */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  /* Verberg de visuele placeholder op mobiel — tekst is genoeg */
  .about-visual .emoji { display: none; }
  .about-visual { min-height: 0; height: auto; padding: 1.5rem; }
}

/* ── CONTACT GRID ───────────────────────────── */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── FOOTER ─────────────────────────────────── */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── STATS ROW ──────────────────────────────── */
@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .stat-num { font-size: 2.2rem; }
  .stat-label { font-size: .78rem; }
}

/* ── HR HEALTH CHECK BANNER ─────────────────── */
@media (max-width: 768px) {
  .health-check-banner {
    grid-template-columns: 1fr;
    padding: 2rem 1.8rem;
    gap: 0;
  }
  .hcb-right { display: none; }
  .hcb-left h2 { font-size: 1.4rem; }
  .hcb-left p  { font-size: .88rem; }
  .hcb-left .btn { width: 100%; justify-content: center; }
}

/* ── CTA BAND ───────────────────────────────── */
@media (max-width: 768px) {
  .cta-band h2 { font-size: 1.5rem; }
  .cta-band p  { font-size: .9rem; }
  .cta-band .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* ── INTEGRATIE VISUALISATIE (about pagina) ─── */
@media (max-width: 768px) {
  .integration-viz {
    flex-direction: column;
    align-items: center;
    gap: .8rem;
  }
  .viz-col { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: .4rem; }
  .viz-arrows { display: none; } /* Verberg pijlen op mobiel */
  .viz-center { margin: .5rem 0; }
}

/* ── MODULES TIJDLIJN ───────────────────────── */
@media (max-width: 768px) {
  .modules-timeline {
    flex-direction: column;
    gap: 1rem;
  }
  .phase-arrow {
    transform: rotate(90deg);
    margin: .2rem auto;
    font-size: 1.2rem;
  }
}

/* ── KEUZE-CALL / SITUATIE-INTAKE CALLOUT ────── */
@media (max-width: 768px) {
  /* Het paarse kader onderaan de situatie-sectie */
  section [style*="max-width:700px"] {
    padding: 1.4rem;
    margin: 1.5rem 0 0;
  }
}

/* ── PAKKETTEN ──────────────────────────────── */
@media (max-width: 768px) {
  .packages-grid { grid-template-columns: 1fr; }
  .package-header { padding: 1.4rem; }
  .package-body   { padding: 1.4rem; }
}

/* ── DIENSTEN ───────────────────────────────── */
@media (max-width: 768px) {
  .dienst-grid { grid-template-columns: 1fr; }
}

/* ── FORMULIER ──────────────────────────────── */
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  input, textarea, select { font-size: 16px; } /* Voorkomt auto-zoom op iOS */
}

/* ── TYPOGRAPHY KLEINE TELEFOON ─────────────── */
@media (max-width: 400px) {
  .section-title h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }
  .nav-logo img { height: 18px; }
}

/* ── TOUCH TARGETS: MINIMAAL 44px HOOGTE ─────── */
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
    padding: .75rem 1.4rem;
  }
  .nav-cta {
    min-height: 40px;
    display: flex; align-items: center;
  }
  .lang-btn {
    min-height: 36px; min-width: 36px;
    display: flex; align-items: center; justify-content: center;
  }
}

/* ── HCB INLINE (diensten pagina) ───────────── */
@media (max-width: 768px) {
  .hcb-inline {
    flex-direction: column;
    gap: 1.2rem;
  }
  .hcb-inline .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── HERO BADGE ─────────────────────────────── */
@media (max-width: 480px) {
  .hero-badge {
    font-size: .72rem;
    padding: .3rem .8rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

/* ════════════════════════════════════════════
   GRID VISUELE BALANS — alle pagina's
   ════════════════════════════════════════════ */

/* ── FRICTIE GRID: gelijke kolommen, gevulde hoogte ── */
.fric-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.fric-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── 4-KAART GRIDS: altijd 2×2, nooit 3+1-wees ──────── */
/* Gebruikt :has() — ondersteund in alle moderne browsers */
.cards-grid:has(> *:nth-child(4)):not(:has(> *:nth-child(5))) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 840px;
}
.values-grid:has(> *:nth-child(4)):not(:has(> *:nth-child(5))) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 840px;
}

/* ── 3-KAART GRIDS: altijd netjes 3 kolommen ─────────── */
.cards-grid:has(> *:nth-child(3)):not(:has(> *:nth-child(4))) {
  grid-template-columns: repeat(3, 1fr);
}

/* ── DIENST GRID: 2 kolommen + volle breedte voor s5 ─── */
.dienst-grid {
  grid-template-columns: repeat(2, 1fr);
}
/* s5-card (de donkere maatwerk-kaart) overspant altijd de volle breedte */
.s5-card {
  grid-column: 1 / -1;
}

/* ── STAPPEN: 4-col op breed scherm, 2×2 op medium ───── */
.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.steps-grid:has(> *:nth-child(4)):not(:has(> *:nth-child(5))) {
  grid-template-columns: repeat(4, 1fr);
}

/* ── PACKAGES GRID: altijd 3 kolommen op breed ───────── */
.packages-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ── PHASE GRID (diensten): altijd 2×2 ───────────────── */
.phase-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* ── TEAM GRIDS (about): consistent ─────────────────── */
.team-grid-2 { grid-template-columns: repeat(2, 1fr); }
.team-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── MOBIEL: alles terug naar 1 of 2 kolommen ─────────── */
@media (max-width: 900px) {
  .packages-grid           { grid-template-columns: 1fr; }
  .steps-grid              { grid-template-columns: repeat(2, 1fr); }
  .steps-grid:has(> *:nth-child(4)):not(:has(> *:nth-child(5))) {
                             grid-template-columns: repeat(2, 1fr); }
  .team-grid-4             { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cards-grid:has(> *:nth-child(4)):not(:has(> *:nth-child(5))),
  .values-grid:has(> *:nth-child(4)):not(:has(> *:nth-child(5))),
  .cards-grid:has(> *:nth-child(3)):not(:has(> *:nth-child(4))) {
    grid-template-columns: 1fr;
  }
  .dienst-grid    { grid-template-columns: 1fr; }
  .phase-grid     { grid-template-columns: 1fr; }
  .team-grid-2    { grid-template-columns: 1fr; }
  .team-grid-4    { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: 1fr; }
  .fric-grid      { grid-template-columns: 1fr; }
}
