/* ═══════════════════════════════════════════════════════════
   LA CHRÉ — Design System v4 · Editorial Atelier
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --ink: #1a2e3d;
  --ink-soft: #2d4656;
  --muted: #4a5f6e;
  --muted-light: #6d8494;
  --bg: #F5F8F7;
  --bg-warm: #eef3f1;
  --card: #FFFFFF;
  --card-glass: rgba(255,255,255,.72);
  --line: #dce5e1;
  --line-light: #e8efec;
  --primary: #2A4D69;
  --primary-dark: #1a3d5d;
  --primary-deeper: #0f1f30;
  --accent: #A9CBB7;
  --accent-light: #d6e1dc;
  --accent-glow: rgba(169,203,183,.12);
  --terracotta: #2A4D69;
  --terracotta-dark: #1a3d5d;
  --terracotta-glow: rgba(42,77,105,.08);
  --warm: #C4B59A;
  --warm-light: #E8E0D0;
  --shadow-xs: 0 1px 2px rgba(26,46,61,.03), 0 2px 4px rgba(26,46,61,.03);
  --shadow-sm: 0 2px 4px rgba(26,46,61,.02), 0 6px 16px rgba(26,46,61,.04);
  --shadow: 0 4px 8px rgba(26,46,61,.03), 0 16px 40px rgba(26,46,61,.06);
  --shadow-lg: 0 8px 16px rgba(26,46,61,.04), 0 32px 72px rgba(26,46,61,.08);
  --shadow-glow: 0 0 40px rgba(42,77,105,.12), 0 0 80px rgba(42,77,105,.06);
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --max: 1140px;
  --max-wide: 1280px;
  --text-max: 680px;
  --transition: .4s cubic-bezier(.25,.1,.25,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── RESET ── */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; margin: 0; overscroll-behavior: none; }
body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink); background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.78; margin: 0; color: var(--muted); font-size: 17px; }

/* ── SELECTION ── */
::selection { background: rgba(169,203,183,.28); color: var(--primary); }
::-moz-selection { background: rgba(169,203,183,.28); color: var(--primary); }

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
h1,h2,h3,h4 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -.03em;
  line-height: 1.06;
  color: var(--ink);
  font-weight: 600;
}
h1 { font-size: clamp(44px, 7vw, 80px); font-weight: 700; }
h2 { font-size: clamp(34px, 4.5vw, 56px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ── SKIP LINK ── */
.wv-link-content { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: 9999; }
.wv-link-content:focus { position: fixed; left: 16px; top: 16px; width: auto; height: auto; overflow: visible; padding: 12px 20px; border-radius: 10px; background: var(--primary); color: #fff; font-weight: 700; font-size: 14px; box-shadow: 0 4px 20px rgba(0,0,0,.2); }

/* ── FOCUS STATES (WCAG) ── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(42,77,105,.15);
}
.navlinks a:focus-visible,
.mobile-panel a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 8px;
}
.faq-q:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.card:focus-within {
  border-color: rgba(169,203,183,.4);
  box-shadow: 0 0 0 3px rgba(169,203,183,.12), 0 8px 24px rgba(42,77,105,.05);
}

/* ── NOISE TEXTURE ── */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px;
}

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(245,248,247,.85);
  backdrop-filter: blur(28px) saturate(1.2); -webkit-backdrop-filter: blur(28px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(245,248,247,.96);
  border-bottom-color: rgba(220,229,225,.5);
  box-shadow: 0 1px 0 rgba(220,229,225,.5), 0 12px 40px rgba(26,46,61,.05);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 116px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: 200px; }
.brand img { height: 76px; width: auto; filter: contrast(1.18) saturate(1.3) drop-shadow(0.6px 0 0 rgba(26,46,61,.55)) drop-shadow(-0.6px 0 0 rgba(26,46,61,.55)); transition: transform var(--transition), opacity var(--transition); }
.brand:hover img { opacity: .85; transform: scale(.97); }
.navlinks { display: flex; align-items: center; justify-content: center; gap: 4px; flex: 1; }
.navlinks a {
  color: var(--muted); font-weight: 500; font-size: 15px;
  padding: 8px 16px; border-radius: 8px;
  transition: all var(--transition); letter-spacing: .01em;
  position: relative;
}
.navlinks a::after {
  content: ""; position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.navlinks a:hover { color: var(--ink); }
.navlinks a:hover::after { transform: scaleX(1); transform-origin: left; }
.navlinks a.active { color: var(--primary); font-weight: 600; }
.navlinks a.active::after { transform: scaleX(1); transform-origin: left; background: var(--primary); opacity: .5; }
.nav-cta { display: flex; align-items: center; min-width: 200px; justify-content: flex-end; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; border: 1px solid transparent;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: all var(--transition);
  user-select: none; white-space: nowrap; position: relative;
  min-height: 44px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: .1s; }

.btn-primary {
  background: var(--accent); color: var(--primary);
  box-shadow: 0 4px 12px rgba(169,203,183,.35);
}
.btn-primary:hover {
  background: #8FBDA7;
  box-shadow: 0 8px 24px rgba(169,203,183,.45);
}
.btn-outline {
  background: transparent; border-color: var(--line); color: var(--ink);
}
.btn-outline:hover {
  border-color: var(--accent); color: var(--primary);
  background: var(--accent-glow); box-shadow: var(--shadow-sm);
}
.btn-warm {
  background: var(--accent); color: var(--primary);
  box-shadow: 0 4px 12px rgba(169,203,183,.35);
}
.btn-warm:hover {
  background: #8FBDA7;
  box-shadow: 0 8px 24px rgba(169,203,183,.45);
}
.btn-hero-ghost {
  background: rgba(42,77,105,.04); border: 1px solid var(--line);
  color: var(--primary);
}
.btn-hero-ghost:hover {
  background: rgba(42,77,105,.08); border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

/* ── MOBILE MENU ── */
.burger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--card);
  align-items: center; justify-content: center; cursor: pointer;
  transition: all var(--transition);
}
.burger:hover { background: var(--bg); border-color: var(--accent); }
.burger span { width: 18px; height: 2px; background: var(--ink); display: block; position: relative; transition: var(--transition); border-radius: 1px; }
.burger span::before,.burger span::after { content:""; width: 18px; height: 2px; background: var(--ink); display: block; position: absolute; left: 0; transition: var(--transition); border-radius: 1px; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { transform: rotate(45deg); top: 0; }
.burger.open span::after { transform: rotate(-45deg); top: 0; }
.mobile-panel { display: none; border-top: 1px solid var(--line); background: var(--card); padding: 16px 0 20px; box-shadow: 0 24px 48px rgba(26,29,31,.1); }
.mobile-panel .container { display: flex; flex-direction: column; gap: 4px; }
.mobile-panel a { padding: 14px 16px; border-radius: 12px; font-weight: 600; color: var(--ink); transition: background var(--transition); }
.mobile-panel a:hover { background: var(--bg); }
.mobile-panel a.active { background: var(--terracotta-glow); color: var(--terracotta); }
.mobile-panel .btn { width: 100%; margin-top: 8px; }

/* ── HERO ── */
.hero {
  padding: 120px 0 100px;
  background: #fff;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero::before {
  content:""; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(169,203,183,.12);
  filter: blur(60px);
  top: -180px; right: -120px;
  pointer-events: none;
}
.hero::after {
  content:""; position: absolute;
  width: 350px; height: 350px; border-radius: 50%;
  background: rgba(42,77,105,.06);
  filter: blur(60px);
  bottom: -100px; left: -80px;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto; text-align: center;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 28px;
  animation: heroFadeUp .6s var(--ease-out) both;
}
.hero-label::before, .hero-label::after {
  content: ""; width: 20px; height: 1px;
  background: var(--accent); opacity: .5;
}
.hero h1 {
  color: var(--primary); margin-bottom: 24px;
  animation: heroFadeUp .7s var(--ease-out) .08s both;
}
.hero-inner > p {
  font-size: clamp(16px, 1.5vw, 19px); color: var(--muted);
  max-width: 520px; margin: 0 auto 40px; line-height: 1.8;
  animation: heroFadeUp .7s var(--ease-out) .18s both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: heroFadeUp .7s var(--ease-out) .28s both;
}
.hero-note {
  margin-top: 24px; font-weight: 500; font-size: 13px;
  color: var(--muted-light); letter-spacing: .02em;
  font-family: "DM Sans", system-ui, sans-serif;
  animation: heroFadeUp .7s var(--ease-out) .36s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── WAVE DIVIDER ── */
.wave { display: none; }
.wave-footer { width: 100%; line-height: 0; overflow: hidden; }
.wave-footer svg { width: 100%; height: 72px; display: block; }

/* ── SECTIONS ── */
section { padding: 120px 0; }
.section-bg { background: var(--card); }
.section-head { text-align: center; margin-bottom: 72px; }
.section-head p { margin-top: 18px; font-size: 18px; max-width: var(--text-max); margin-left: auto; margin-right: auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em;
  color: var(--terracotta); margin-bottom: 18px;
  font-family: "DM Sans", system-ui, sans-serif;
}
.section-label::before, .section-label::after {
  content: ""; display: block; width: 28px; height: 1px;
  background: var(--terracotta); opacity: .35;
}
.prose { max-width: var(--text-max); margin: 0 auto; }
.prose p + p { margin-top: 18px; }

/* ── EDITORIAL INTRO STATEMENT ── */
.intro-statement {
  position: relative;
  padding: clamp(84px, 9vw, 136px) 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fbfdfc 56%, #f2f7f5 100%);
}
.intro-statement::before,
.intro-statement::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42,77,105,.18), transparent);
  pointer-events: none; z-index: 1;
}
.intro-statement::before { top: 0; }
.intro-statement::after  { bottom: 0; }

.intro-statement-glyph {
  display: none;
}

.intro-statement-inner {
  position: relative; z-index: 2;
  max-width: 1060px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
  column-gap: clamp(36px, 7vw, 92px);
  row-gap: 24px;
  text-align: left;
  padding-left: clamp(22px, 4vw, 48px);
  border-left: 4px solid var(--primary);
}
.intro-statement-mark {
  display: block; width: 64px; height: 2px;
  background: var(--accent);
  margin: 12px 0 0;
  grid-column: 1; grid-row: 1;
}
.intro-statement-eyebrow {
  display: block;
  grid-column: 1; grid-row: 2;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--primary);
  line-height: 1.7;
  margin: 0;
}
.intro-statement-eyebrow::before,
.intro-statement-eyebrow::after {
  display: none;
}
.intro-statement-lead {
  grid-column: 2; grid-row: 1 / span 2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5.7vw, 74px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.018em;
  color: var(--primary);
  margin: 0;
  max-width: 13.5ch;
}
.intro-statement-lead em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.intro-statement-body {
  grid-column: 2; grid-row: 3;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 8px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(42,77,105,.16);
}
.intro-statement-body strong { color: var(--ink); font-weight: 500; }
.intro-statement-divider {
  display: none;
}
@media (max-width: 640px) {
  .intro-statement { padding: 72px 0 68px; }
  .intro-statement-inner {
    display: block;
    padding-left: 22px;
    border-left-width: 3px;
  }
  .intro-statement-mark { width: 52px; margin: 0 0 20px; }
  .intro-statement-eyebrow { margin-bottom: 22px; }
  .intro-statement-lead {
    font-size: clamp(34px, 11.5vw, 46px);
    line-height: 1.02;
    max-width: 12.5ch;
  }
  .intro-statement-body {
    font-size: 16.5px;
    line-height: 1.82;
    margin-top: 26px;
    padding-top: 24px;
  }
}

/* ── CARDS ── */
.card {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: var(--radius-lg);
  box-shadow:
    0 2px 4px rgba(42,77,105,.02),
    0 8px 24px rgba(42,77,105,.05),
    inset 0 1px 0 rgba(255,255,255,.6);
  transition: all .45s var(--ease-out);
  position: relative;
}
.card-hover { cursor: pointer; }
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(42,77,105,.03),
    0 20px 48px rgba(42,77,105,.08),
    inset 0 1px 0 rgba(255,255,255,.8);
  border-color: rgba(169,203,183,.3);
}

/* Glass card variant */
.card-glass {
  background: var(--card-glass);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.6);
}

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { padding: 36px 30px; display: flex; flex-direction: column; cursor: default; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--bg), var(--bg-warm));
  border: 1px solid var(--line-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: all .5s var(--ease-out);
}
.service-card:hover .service-icon,
.card-hover:hover .service-icon {
  background: linear-gradient(135deg, var(--terracotta-glow), rgba(42,77,105,.06));
  border-color: rgba(42,77,105,.25);
  transform: scale(1.06) rotate(-2deg);
}
.service-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-card p { flex: 1; margin-bottom: 22px; font-size: 15px; line-height: 1.75; }
.service-card .btn { align-self: flex-start; font-size: 14px; padding: 10px 20px; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial { padding: 32px; display: flex; flex-direction: column; }
.testimonial-quote {
  font-size: 72px; line-height: .8; font-weight: 700;
  color: var(--terracotta); margin-bottom: 4px; opacity: .25;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.testimonial-text {
  font-size: 16px; line-height: 1.85; color: var(--ink-soft);
  margin-bottom: 24px; font-style: italic; flex: 1;
}
.testimonial-author {
  font-weight: 700; color: var(--terracotta); font-size: 13px;
  font-family: "DM Sans", system-ui, sans-serif;
  letter-spacing: .02em;
}

/* ── VALUES GRID ── */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.value-card {
  padding: 28px 24px; text-align: center;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-xs);
  transition: all .5s var(--ease-out); position: relative;
}
.value-card { cursor: default; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(42,77,105,.15); }
.value-icon {
  width: 48px; height: 48px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; background: linear-gradient(135deg, var(--bg), var(--bg-warm));
  border: 1px solid var(--line-light); transition: all .5s var(--ease-out);
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--terracotta-glow), rgba(42,77,105,.06));
  border-color: rgba(42,77,105,.25);
}
.value-card h3 { font-size: 19px; margin-bottom: 8px; }
.value-card p { font-size: 14px; line-height: 1.7; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.step-card { padding: 28px; text-align: center; }
.step-num {
  width: 48px; height: 48px; border-radius: 14px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  color: #fff; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: "DM Sans", system-ui, sans-serif;
  box-shadow: 0 4px 16px rgba(42,77,105,.2);
}
.step-card h3 { font-size: 21px; margin-bottom: 10px; }
.step-card p { font-size: 15px; line-height: 1.75; }

/* ── INFO CARDS (checklist) ── */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.info-card { padding: 32px; }
.info-card h3 { font-size: 24px; margin-bottom: 16px; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li {
  padding: 12px 0 12px 36px; position: relative;
  color: var(--muted); line-height: 1.7; font-size: 15px;
}
.check-list li + li { border-top: 1px solid var(--line-light); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 18px; height: 18px; border-radius: 6px;
  background: var(--terracotta-glow); border: 1px solid rgba(42,77,105,.2);
}
.check-list li::after {
  content: "\2713"; position: absolute; left: 4px; top: 14px;
  color: var(--terracotta); font-weight: 800; font-size: 11px;
}

/* ── QUOTE ── */
.quote-block {
  padding: 44px 48px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative; overflow: hidden;
}
.quote-block::before {
  content: "\201C"; font-size: 160px; font-weight: 700;
  color: rgba(168,196,173,.08); position: absolute; top: -20px; left: 20px;
  line-height: 1; font-family: "Cormorant Garamond", Georgia, serif;
}
.quote-block p {
  color: rgba(255,255,255,.85); font-size: 20px; font-weight: 400;
  line-height: 1.8; font-style: italic; position: relative;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.quote-block cite {
  display: block; margin-top: 18px;
  color: var(--terracotta); font-weight: 700; font-style: normal;
  font-size: 14px; font-family: "DM Sans", system-ui, sans-serif;
}

/* ── TARIEF ── */
.tarief-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tarief-card { padding: 36px; }
.tarief-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--terracotta); margin-bottom: 10px;
  font-family: "DM Sans", system-ui, sans-serif;
}
.tarief-price {
  font-size: 44px; font-weight: 700; color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif; margin-bottom: 6px;
}
.tarief-price span { font-size: 16px; font-weight: 400; color: var(--muted); }
.tarief-sub { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.tarief-items { list-style: none; padding: 0; margin: 0; }
.tarief-items li {
  padding: 12px 0; border-bottom: 1px solid var(--line-light);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; color: var(--muted);
}
.tarief-items li:last-child { border-bottom: none; }
.tarief-items li strong { color: var(--ink); font-weight: 700; }
.tarief-note {
  margin-top: 28px; padding: 24px 28px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line);
  font-size: 15px; color: var(--muted); line-height: 1.75;
}

/* ── PROFIEL ── */
.profiel-card { padding: 36px; display: flex; gap: 28px; align-items: flex-start; }
.profiel-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 3px solid var(--accent-light);
  box-shadow: 0 8px 24px rgba(42,77,94,.12), 0 0 0 8px rgba(168,196,173,.06);
}
.profiel-card h3 { font-size: 26px; margin-bottom: 4px; }
.profiel-meta {
  font-weight: 600; color: var(--terracotta); font-size: 14px;
  margin-bottom: 14px; letter-spacing: .02em;
  font-family: "DM Sans", system-ui, sans-serif;
}

/* ── MFN BADGE ── */
.mfn-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 22px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--accent-light);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.mfn-badge:hover { box-shadow: var(--shadow); border-color: var(--accent); }
.mfn-proof-row { min-width: 0; }
.mfn-proof-row > * { min-width: 0; }
.mfn-badge-text { text-align: left; }
.mfn-badge-text strong { display: block; font-size: 14px; color: var(--ink); font-family: "DM Sans", system-ui, sans-serif; }
.mfn-badge-text span { font-size: 13px; color: var(--muted); }

/* ── DOC LINKS ── */
.doc-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; justify-content: center; }
.doc-link {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 16px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--primary);
  transition: all var(--transition);
}
.doc-link:hover { background: var(--terracotta-glow); border-color: rgba(42,77,105,.3); color: var(--terracotta); }

/* ── CTA SECTION ── */
.cta-section {
  padding: 120px 0;
  background: var(--primary);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content:""; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(169,203,183,.1);
  filter: blur(80px);
  top: -150px; right: -100px;
  pointer-events: none;
}
.cta-section::after {
  content:""; position: absolute; inset: 0; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 18px; position: relative; z-index: 1; }
.cta-section p {
  color: rgba(255,255,255,.55); margin-bottom: 40px; position: relative; z-index: 1;
  max-width: var(--text-max); margin-left: auto; margin-right: auto; font-size: 18px;
}
.cta-section .btn { position: relative; z-index: 1; font-size: 16px; padding: 16px 34px; }
.cta-note {
  margin-top: 22px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.25); position: relative; z-index: 1;
  font-family: "DM Sans", system-ui, sans-serif; letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
footer {
  background: var(--primary-deeper); color: #fff;
  padding: 80px 0 48px; position: relative;
}
footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(169,203,183,.2) 30%, rgba(169,203,183,.35) 50%, rgba(169,203,183,.2) 70%, transparent 95%);
}
footer p, footer a { color: rgba(255,255,255,.55); }
footer a { transition: color .3s ease; position: relative; }
footer a:hover { color: var(--accent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px; align-items: start; }
.footer-brand-desc {
  font-size: 15px; line-height: 1.8; max-width: 320px;
  color: rgba(255,255,255,.45);
}
.footer-title {
  font-weight: 600; margin-bottom: 18px; color: #fff; font-size: 20px;
  font-family: "Cormorant Garamond", Georgia, serif; letter-spacing: -.01em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 15px; padding: 2px 0;
  display: inline-flex; align-items: center; gap: 0;
}
.footer-links a::before {
  content: ""; width: 0; height: 1px;
  background: var(--accent); margin-right: 0;
  transition: width .3s ease, margin-right .3s ease;
}
.footer-links a:hover::before {
  width: 12px; margin-right: 8px;
}
.footer-contact-name {
  font-weight: 700; color: #fff; font-size: 15px;
  margin-bottom: 6px; display: block;
}
.footer-divider {
  display: flex; align-items: center; justify-content: center;
  margin-top: 48px; margin-bottom: 28px; gap: 16px;
}
.footer-divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
}
.footer-divider-mark {
  width: 6px; height: 6px;
  background: var(--accent); opacity: .3;
  transform: rotate(45deg);
}
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.2);
}
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--accent); }

/* ── REVEAL ANIMATIONS ── */
@keyframes revealSafety { to { opacity: 1; transform: translateY(0); } }
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  animation: revealSafety 0s 3s forwards;
}
.reveal.visible { opacity: 1; transform: translateY(0); animation: none; }
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }
.reveal-delay-3 { transition-delay: .45s; }
.reveal-delay-4 { transition-delay: .6s; }

/* Scale reveal variant */
.reveal-scale {
  opacity: 0; transform: scale(.92) translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1) translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale, .reveal-blur { opacity: 1; transform: none; filter: none; transition: none; animation: none !important; }
  .hero-label, .hero h1, .hero-inner > p, .hero-actions, .hero-note { animation: none !important; opacity: 1; transform: none; }
  .btn { transition: color .2s, background .2s, border-color .2s, box-shadow .2s; }
  .btn:hover { transform: none; }
  .btn-primary::after, .btn-warm::after { display: none; }
  .card-hover:hover { transform: none; }
  .value-card:hover { transform: none; }
  .step-card:hover .step-num { transform: none; }
  .hero::before { animation: none; }
  .mfn-badge.visible { animation: none; }
  .scroll-progress { display: none; }
  html { scroll-behavior: auto; }
}

/* ── FAQ ACCORDION ── */
.faq-list { max-width: var(--text-max); margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; cursor: pointer; gap: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px; font-weight: 600; color: var(--ink);
  transition: color var(--transition);
  -webkit-user-select: none; user-select: none;
}
.faq-q:hover { color: var(--terracotta); }
.faq-q svg { flex-shrink: 0; width: 20px; height: 20px; transition: transform var(--transition), color var(--transition); color: var(--muted-light); }
.faq-item.open .faq-q { color: var(--terracotta); }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--terracotta); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out), padding .5s var(--ease-out); }
.faq-item.open .faq-a { max-height: 400px; padding: 0 0 24px 0; }
.faq-a p { font-size: 16px; line-height: 1.85; }
.faq-a a { color: var(--terracotta); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.faq-a a:hover { color: var(--terracotta-dark); }

/* ── CHAT WIDGET ── */
.chat-widget { position: fixed; bottom: 28px; right: 28px; z-index: 300; font-family: "DM Sans", system-ui, sans-serif; }
.chat-fab {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #8FBDA7);
  color: var(--primary); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(169,203,183,.35), 0 8px 32px rgba(169,203,183,.2);
  transition: all .3s var(--ease-spring); position: relative; z-index: 2;
}
.chat-fab:hover { transform: scale(1.08); box-shadow: 0 8px 24px rgba(169,203,183,.45), 0 12px 40px rgba(169,203,183,.3); }
.chat-fab-close { display: none; }
.chat-widget.open .chat-fab-icon { display: none; }
.chat-widget.open .chat-fab-close { display: block; }
.chat-widget.open .chat-fab { background: var(--primary); box-shadow: 0 4px 16px rgba(42,77,94,.3); }
.chat-panel {
  position: absolute; bottom: 76px; right: 0;
  width: 360px; max-height: 460px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(16px) scale(.94);
  pointer-events: none; transition: all .35s var(--ease-spring); overflow: hidden;
}
.chat-widget.open .chat-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-header { padding: 18px 20px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); background: var(--bg); }
.chat-header-avatar img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent-light); }
.chat-header-name { font-weight: 700; font-size: 15px; color: var(--ink); }
.chat-header-status { font-size: 12px; color: var(--muted-light); }
.chat-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 10px; max-height: 360px; }
.chat-msg { max-width: 85%; }
.chat-msg p { padding: 11px 16px; border-radius: 14px; font-size: 14px; line-height: 1.65; margin: 0; color: var(--ink); }
.chat-msg-bot p { background: var(--bg); border: 1px solid var(--line-light); }
.chat-msg-user { align-self: flex-end; }
.chat-msg-user p { background: var(--primary); color: #fff; }
.chat-options { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.chat-option {
  padding: 11px 16px; border-radius: 12px; background: var(--card); border: 1px solid var(--line);
  font-size: 14px; font-weight: 600; color: var(--primary); cursor: pointer; text-align: left;
  transition: all .2s ease; font-family: "DM Sans", system-ui, sans-serif;
  min-height: 44px;
}
.chat-option:hover { background: var(--terracotta-glow); border-color: rgba(42,77,105,.3); color: var(--terracotta); }
.chat-cta {
  display: block; text-align: center; padding: 13px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #8FBDA7);
  color: var(--primary); font-weight: 700; font-size: 14px; margin-top: 8px;
  transition: all .3s ease; box-shadow: 0 2px 8px rgba(169,203,183,.3);
}
.chat-cta:hover { box-shadow: 0 6px 20px rgba(169,203,183,.4); transform: translateY(-1px); }

/* Rich bot card (intro + bullets + closing) */
.chat-msg-bot .chat-bot-card {
  padding: 14px 16px; border-radius: 14px;
  background: var(--bg); border: 1px solid var(--line-light);
  font-size: 14px; line-height: 1.65; color: var(--ink);
}
.chat-bot-card p { padding: 0; background: none; border: none; margin: 0; }
.chat-bot-card p + p { margin-top: 8px; }
.chat-bot-card p + ul, .chat-bot-card ul + p { margin-top: 10px; }
.chat-bot-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.chat-bot-card ul li {
  padding-left: 18px; position: relative;
  font-size: 13.5px; line-height: 1.55;
}
.chat-bot-card ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 1.5px; background: var(--accent); border-radius: 1px;
}

/* Inline link to a relevant page */
.chat-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 10px; margin-top: 6px;
  background: var(--card); border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; color: var(--primary);
  text-decoration: none; transition: all .2s ease;
  align-self: flex-start;
}
.chat-link:hover { border-color: var(--accent); background: var(--accent-glow); }
.chat-link svg { width: 14px; height: 14px; }

/* Restart / start-over button */
.chat-restart {
  align-self: flex-start; margin-top: 4px;
  padding: 7px 12px; border-radius: 9px; background: transparent;
  border: 1px dashed var(--line);
  font-size: 12px; font-weight: 500; color: var(--muted);
  font-family: "DM Sans", system-ui, sans-serif;
  cursor: pointer; transition: all .2s ease;
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 44px;
}
.chat-restart:hover { color: var(--primary); border-color: var(--primary); border-style: solid; }
.chat-restart svg { width: 12px; height: 12px; }
@media (max-width: 480px) {
  .chat-panel { width: calc(100vw - 48px); right: -14px; }
  .chat-widget { bottom: 18px; right: 18px; }
  .back-to-top { bottom: 82px; right: 18px; width: 40px; height: 40px; }
}

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 300;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: none;
  pointer-events: none;
}

/* ── 3D CARD TILT ── */
.card-hover {
  transform-style: preserve-3d;
  perspective: 800px;
}

/* ── GRADIENT TEXT HEADING ── */
.hero h1 {
  background: linear-gradient(135deg, var(--primary) 0%, #3a6d82 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* hp-hero h1: solid color, no gradient — cleaner for consultancy */

/* ── MfN BADGE TRUST GLOW ── */
@keyframes trustPulse {
  0% { box-shadow: var(--shadow-sm), 0 0 0 0 rgba(169,203,183,.3); }
  40% { box-shadow: var(--shadow-sm), 0 0 24px 6px rgba(169,203,183,.15); }
  100% { box-shadow: var(--shadow-sm), 0 0 0 0 rgba(169,203,183,0); }
}
.mfn-badge.visible {
  animation: trustPulse 1.2s ease-out 1;
}

/* ── ANIMATED PROFILE RING ── */
@keyframes profileRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.profiel-avatar {
  position: relative;
}
.profiel-card .profiel-avatar {
  box-shadow:
    0 8px 24px rgba(42,77,94,.12),
    0 0 0 4px #fff,
    0 0 0 6px var(--accent-light);
}

/* ── SECTION GRADIENT DIVIDERS ── */
.section-bg + section::before,
section:not(.section-bg) + .section-bg::before {
  content: "";
  display: block;
  height: 80px;
  margin-top: -80px;
  pointer-events: none;
}
section:not(.section-bg) + .section-bg::before {
  background: linear-gradient(to bottom, var(--bg), var(--card));
}
.section-bg + section:not(.section-bg):not(.cta-section)::before {
  background: linear-gradient(to bottom, var(--card), var(--bg));
}

/* ── ENHANCED STAGGER REVEALS ── */
.reveal-blur {
  opacity: 0; transform: translateY(24px) scale(.97);
  filter: blur(4px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out), filter .8s var(--ease-out);
  animation: revealSafety 0s 3s forwards;
}
.reveal-blur.visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); animation: none; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,46,61,.08);
  transition: all .35s var(--ease-out);
  opacity: 0; transform: translateY(16px);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--primary); border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(42,77,105,.2);
  transform: translateY(-2px);
}
.back-to-top:hover svg { stroke: #fff; }
.back-to-top svg {
  width: 18px; height: 18px;
  stroke: var(--primary); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .25s ease;
}

/* ── FORM LABEL FLOAT ── */
.form-group-float {
  position: relative;
  margin-bottom: 20px;
}
.form-group-float .form-input,
.form-group-float .form-textarea {
  padding-top: 22px; padding-bottom: 8px;
}
.form-group-float .form-label-float {
  position: absolute; left: 17px; top: 15px;
  font-size: 15px; font-weight: 500;
  color: var(--muted-light);
  pointer-events: none;
  transition: all .2s ease;
  font-family: "DM Sans", system-ui, sans-serif;
}
.form-group-float .form-input:focus ~ .form-label-float,
.form-group-float .form-input:not(:placeholder-shown) ~ .form-label-float,
.form-group-float .form-textarea:focus ~ .form-label-float,
.form-group-float .form-textarea:not(:placeholder-shown) ~ .form-label-float {
  top: 6px; font-size: 11px; font-weight: 700;
  color: var(--primary); letter-spacing: .04em;
}

/* ── BUTTON SHINE EFFECT ── */
.btn-primary::after,
.btn-warm::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.4) 45%, rgba(255,255,255,.1) 50%, transparent 55%);
  background-size: 250% 100%;
  background-position: 200% 0;
  transition: background-position .6s ease;
  pointer-events: none;
}
.btn-primary:hover::after,
.btn-warm:hover::after {
  background-position: -50% 0;
}

/* ── STEP NUMBER HOVER ── */
.step-card:hover .step-num {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(42,77,105,.25);
}
.step-num { transition: all .4s var(--ease-spring); }

/* ── VALUE CARD BORDER ACCENT ── */
.value-card::after {
  content: ""; position: absolute; bottom: 0; left: 10%; right: 10%;
  height: 2px; border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transform: scaleX(.6);
  transition: opacity .4s ease, transform .4s ease;
}
.value-card:hover::after {
  opacity: 1; transform: scaleX(1);
}

/* ── TARIEF CARD HIGHLIGHT ── */
.tarief-card { position: relative; overflow: hidden; }
.tarief-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.tarief-card:hover::before { transform: scaleX(1); }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero { padding: 80px 0 100px; }
  section { padding: 88px 0; }
  .navlinks,.nav-cta { display: none; }
  .burger { display: flex; }
  .brand img { height: 54px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .values-grid[style*="grid-template-columns"],
  .steps-grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr 1fr !important;
  }
  .info-grid { grid-template-columns: 1fr; }
  .tarief-grid { grid-template-columns: 1fr; }
  .profiel-card { flex-direction: column; align-items: center; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .cta-section { padding: 88px 0; }
  .section-label::before, .section-label::after { width: 16px; }
}
@media (max-width: 600px) {
  .hero { padding: 56px 0 72px; }
  section { padding: 64px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .values-grid[style*="grid-template-columns"],
  .steps-grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
  .doc-links { flex-direction: column; align-items: center; }
  .container { padding: 0 20px; }
  .section-label::before, .section-label::after { display: none; }
  .nav { height: 80px; }
  .mfn-proof-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
  }
  .mfn-proof-row .mfn-badge {
    width: 100%;
    justify-content: center;
  }
}
