/* ==========================================================================
   Nextgen Finance — site styles
   Component + layout classes recreating the design-system prototype.
   ========================================================================== */
#app, .nf-page { min-height: 100vh; }

/* ---------------- Layout ---------------- */
.nf-wrap { max-width: var(--container-max); margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.nf-section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.nf-section--md { padding-top: var(--section-y-md); padding-bottom: var(--section-y-md); }
.nf-section--top40 { padding-top: 40px; }
.nf-section--top8 { padding-top: 8px; }

.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-50); }
.bg-lime50 { background: var(--lime-50); }

/* ---------------- Reviews ---------------- */
.nf-reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.nf-review-card { background: var(--gray-50); border-radius: var(--radius-lg); padding: 28px 26px 24px; display: flex; flex-direction: column; gap: 18px; }
.nf-review-card__stars { display: flex; gap: 4px; }
.nf-review-card__stars svg { display: block; }
.nf-review-card__text { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: var(--gray-700); flex: 1; margin: 0; }
.nf-review-card__author { display: flex; align-items: center; gap: 12px; }
.nf-review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--sage-600); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; flex-shrink: 0; letter-spacing: 0; }
.nf-review-card__name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink-900); line-height: 1.2; }
.nf-reviews-cta { display: flex; justify-content: center; margin-top: 44px; }
.nf-google-btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 26px; border: 1.5px solid var(--border-subtle); border-radius: var(--radius-pill); font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--ink-900); text-decoration: none; background: var(--white); transition: border-color var(--duration-base), box-shadow var(--duration-base); }
.nf-google-btn:hover { border-color: var(--lime-400); box-shadow: var(--shadow-sm); color: var(--ink-900); }
/* Compact review strip (contact / afspraak pages) */
.nf-review-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.nf-review-strip__item { display: flex; flex-direction: column; gap: 10px; padding: 20px 20px 18px; background: var(--gray-50); border-radius: var(--radius-lg); }
.nf-review-strip__stars { display: flex; gap: 3px; }
.nf-review-strip__text { font-family: var(--font-body); font-size: 14px; line-height: 1.55; color: var(--gray-700); margin: 0; flex: 1; }
.nf-review-strip__author { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--ink-900); }
/* Footer Google badge */
.nf-footer__google { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; padding: 5px 10px; border: 1px solid var(--border-subtle); border-radius: var(--radius-pill); background: rgba(255,255,255,0.06); text-decoration: none; font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--gray-300); transition: border-color var(--duration-base); width: fit-content; }
.nf-footer__google:hover { border-color: var(--lime-500); color: var(--white); }
.nf-footer__google-stars { color: var(--lime-500); letter-spacing: 1px; font-size: 12px; }
@media (max-width: 800px) {
  .nf-reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nf-review-strip { grid-template-columns: 1fr; }
}

/* ---------------- Prose (legal/info pages) ---------------- */
.nf-prose { max-width: 740px; margin: 0 auto; font-family: var(--font-body); font-size: 16px; line-height: 1.75; color: var(--text-body); }
.nf-prose h3 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 22px; color: var(--ink-900); margin: 0 0 0.5em; }
.nf-prose h4 { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: 16px; color: var(--ink-900); margin: 2.5em 0 0.75em; padding: 0.55em 1em; background: var(--gray-50); border-left: 3px solid var(--lime-500); border-radius: 0 6px 6px 0; }
.nf-prose p { margin: 0 0 0.9em; }
.nf-prose ul, .nf-prose ol { margin: 0 0 1em 1.4em; padding: 0; }
.nf-prose li { margin-bottom: 0.5em; }
.nf-prose a { color: var(--lime-700); text-decoration: underline; }
.nf-prose a:hover { color: var(--lime-600); }
.nf-prose strong { color: var(--ink-900); }
.nf-prose-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 2em; border-bottom: 1px solid var(--border-subtle); padding-bottom: 1em; }
/* TOC */
.nf-prose-toc { background: var(--lime-50); border: 1px solid var(--lime-200); border-radius: var(--radius-md); padding: 20px 24px 16px; margin-bottom: 2.5em; }
.nf-prose-toc strong { font-family: var(--font-display); font-size: 12px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 0.08em; color: var(--lime-700); display: block; margin-bottom: 10px; }
.nf-prose-toc ol { margin: 0; padding-left: 1.2em; column-count: 2; column-gap: 2em; }
.nf-prose-toc li { margin-bottom: 5px; font-size: 14px; break-inside: avoid; }
.nf-prose-toc a { color: var(--ink-900); text-decoration: none; }
.nf-prose-toc a:hover { color: var(--lime-700); text-decoration: underline; }
/* Callout */
.nf-prose-callout { background: var(--lime-50); border: 1px solid var(--lime-200); border-radius: var(--radius-md); padding: 16px 20px; margin: 1.8em 0; font-size: 15px; line-height: 1.65; }
.nf-prose-callout p { margin: 0; }
.nf-prose-callout strong { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--lime-700); display: block; margin-bottom: 6px; }
/* Steps */
.nf-prose-steps { display: flex; flex-direction: column; gap: 0; }
.nf-prose-step { border-left: 3px solid var(--lime-400); padding: 2px 0 20px 22px; margin-bottom: 0; position: relative; }
.nf-prose-step::before { content: ""; width: 10px; height: 10px; background: var(--lime-500); border-radius: 50%; position: absolute; left: -6.5px; top: 8px; }
.nf-prose-step h4 { margin: 0 0 0.6em; background: none; border-left: none; border-radius: 0; padding: 0; color: var(--lime-700); font-size: 15px; }
@media (max-width: 640px) {
  .nf-prose-toc ol { column-count: 1; }
}

/* ---------------- Overline / eyebrow ---------------- */
.nf-overline {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: var(--tracking-overline);
  font-size: 13px; color: var(--brand); display: inline-block;
}
.nf-overline--onlime { color: var(--lime-500); }

/* ---------------- Buttons ---------------- */
.nf-btn {
  display: inline-flex; width: auto; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: var(--fw-bold); text-transform: lowercase;
  letter-spacing: 0.01em; line-height: 1; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: background var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-base) var(--ease-standard), transform var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard);
  padding: 12px 28px; font-size: 16px;
}
.nf-btn--sm { padding: 8px 18px; font-size: 14px; }
.nf-btn--md { padding: 12px 28px; font-size: 16px; }
.nf-btn--lg { padding: 16px 36px; font-size: 18px; }
.nf-btn--full { display: flex; width: 100%; }
.nf-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.nf-btn--primary { background: var(--brand); color: var(--brand-contrast); }
.nf-btn--primary:hover { background: var(--brand-hover); box-shadow: var(--shadow-brand); transform: translateY(-1px); color: var(--brand-contrast); }
.nf-btn--primary:active { background: var(--brand-pressed); transform: translateY(0); }

.nf-btn--secondary { background: var(--sage-600); color: var(--white); }
.nf-btn--secondary:hover, .nf-btn--secondary:active { background: var(--sage-700); color: var(--white); transform: translateY(-1px); }

.nf-btn--outline { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.nf-btn--outline:hover { background: var(--ink-900); color: var(--white); transform: translateY(-1px); }

.nf-btn--ghost { background: transparent; color: var(--sage-700); }
.nf-btn--ghost:hover { background: var(--lime-100); color: var(--sage-700); transform: translateY(-1px); }

.nf-btn--dark { background: var(--ink-900); color: var(--white); }
.nf-btn--dark:hover { background: var(--ink-800); color: var(--white); transform: translateY(-1px); }
.nf-btn--dark:active { background: #000; }

/* ---------------- Badge ---------------- */
.nf-badge {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body);
  font-weight: var(--fw-bold); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-pill); line-height: 1.4; white-space: nowrap;
}
.nf-badge--brand   { background: var(--lime-100); color: var(--lime-700); }
.nf-badge--neutral { background: var(--gray-100); color: var(--gray-600); }
.nf-badge--sage    { background: var(--sage-100); color: var(--sage-700); }

/* ---------------- Card ---------------- */
.nf-card {
  background: var(--surface-card); border-radius: var(--radius-lg); padding: var(--space-6);
  transition: box-shadow var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard);
}
.nf-card--md { box-shadow: var(--shadow-md); border: none; }
.nf-card--sm { box-shadow: var(--shadow-sm); border: 1px solid var(--border-subtle); }
.nf-card--border { border: 1px solid var(--border-subtle); }

/* ---------------- Service card ---------------- */
.nf-service-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-4);
  background: var(--surface-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5); text-decoration: none;
  transition: box-shadow var(--duration-base) var(--ease-standard), transform var(--duration-base) var(--ease-standard), border-color var(--duration-base) var(--ease-standard);
}
.nf-service-card:hover { border-color: var(--lime-500); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.nf-service-card__disc {
  width: 84px; height: 84px; border-radius: var(--radius-pill); display: flex; align-items: center; justify-content: center;
  transition: transform var(--duration-base) var(--ease-standard);
}
.nf-service-card:hover .nf-service-card__disc { transform: scale(1.05); }
.nf-service-card__disc--lime { background: var(--lime-500); }
.nf-service-card__disc--sage { background: var(--sage-500); }
.nf-service-card__disc--ink  { background: var(--ink-900); }
.nf-service-card__title { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-xl); color: var(--text-strong); margin: 0; overflow-wrap: break-word; hyphens: auto; }
.nf-service-card__desc  { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--text-body); margin: 0; }
.nf-service-card__cta {
  font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 14px; text-transform: lowercase;
  color: var(--sage-600); display: inline-flex; align-items: center; gap: 6px; margin-top: auto;
}
.nf-service-card:hover .nf-service-card__cta { color: var(--lime-700); }
.nf-service-card__cta-arrow { transition: transform var(--duration-fast) var(--ease-standard); }
.nf-service-card:hover .nf-service-card__cta-arrow { transform: translateX(3px); }

/* ---------------- Input / Textarea ---------------- */
.nf-field { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-body); }
.nf-field label { font-size: 14px; font-weight: var(--fw-bold); color: var(--text-strong); }
.nf-field input, .nf-field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--text-strong); background: var(--white);
  border: 1.5px solid var(--border-default); border-radius: var(--radius-md); padding: 12px 14px; outline: none;
  transition: border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}
.nf-field textarea { line-height: 1.5; resize: vertical; }
.nf-field input:focus, .nf-field textarea:focus { border-color: var(--lime-500); box-shadow: 0 0 0 3px var(--focus-ring); }

/* ---------------- Header ---------------- */
.nf-header {
  position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid transparent;
  transition: background var(--duration-base) var(--ease-standard), border-color var(--duration-base) var(--ease-standard), backdrop-filter var(--duration-base) var(--ease-standard);
}
.nf-header.is-scrolled { background: rgba(255,255,255,0.88); backdrop-filter: saturate(180%) blur(12px); border-bottom-color: var(--border-subtle); }
.nf-header__inner { max-width: var(--container-max); margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; gap: 24px; }
.nf-header__logo { display: flex; align-items: center; flex: none; }
.nf-header__logo img { height: 38px; width: auto; display: block; }
.nf-nav { margin-left: auto; display: flex; gap: 4px; align-items: center; }
.nf-nav__link {
  font-family: var(--font-display); font-weight: var(--fw-bold); text-transform: uppercase; font-size: 12.5px;
  letter-spacing: 0.04em; padding: 8px 12px; border-radius: var(--radius-pill); color: var(--ink-800);
  background: transparent; transition: all var(--duration-fast) var(--ease-standard); white-space: nowrap;
  text-decoration: none; display: inline-flex; align-items: center;
}
.nf-nav__link:hover { color: var(--lime-700); }
.nf-nav__link.is-active { color: var(--lime-700); background: var(--lime-100); }
.nf-header__cta { flex: none; }
.nf-mobile-toggle {
  margin-left: auto; display: none; border: none; background: var(--lime-500); border-radius: 10px;
  width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer;
}
.nf-mobile-menu { display: none; border-top: 1px solid var(--border-subtle); padding: 8px 20px 18px; flex-direction: column; gap: 2px; }
.nf-mobile-menu.is-open { display: flex; }
.nf-mobile-menu a {
  font-family: var(--font-display); font-weight: var(--fw-bold); text-transform: uppercase; font-size: 14px;
  padding: 12px 8px; color: var(--ink-800); border-bottom: 1px solid var(--gray-100); text-decoration: none;
}
.nf-mobile-menu .nf-btn { margin-top: 12px; }

/* ---------------- Footer ---------------- */
.nf-footer { background: var(--ink-900); color: var(--gray-300); position: relative; overflow: hidden; border-top: 3px solid var(--lime-500); }
.nf-footer__glow { position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(139,197,64,0.18), transparent 68%); right: -140px; top: -160px; pointer-events: none; }
.nf-footer__top { max-width: var(--container-max); margin: 0 auto; padding: 60px 32px 28px; position: relative; }
.nf-footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.1fr; gap: 40px; }
.nf-footer__col { display: flex; flex-direction: column; gap: 10px; }
.nf-footer__brand { font-family: var(--font-accent); font-size: 26px; color: var(--white); letter-spacing: 0.08em; }
.nf-footer__brand span { color: var(--lime-500); }
.nf-footer__slogan { font-family: var(--font-display); font-weight: 500; font-size: 22px; line-height: 1.3; color: var(--white); margin: 6px 0 2px; max-width: 18ch; }
.nf-footer__slogan span { color: var(--lime-500); }
.nf-footer__link { color: var(--gray-300); font-size: 15px; font-family: var(--font-body); cursor: pointer; line-height: 1.5; text-decoration: none; }
.nf-footer__link:hover { color: var(--lime-500); }
.nf-footer__head { font-family: var(--font-display); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: var(--tracking-overline); font-size: 12px; color: var(--lime-500); margin-bottom: 6px; }
.nf-footer__cline { color: var(--gray-300); font-size: 15px; line-height: 1.5; display: flex; gap: 9px; align-items: flex-start; }
.nf-footer__cline strong { color: var(--white); font-weight: 600; }
.nf-footer__cline a { color: inherit; text-decoration: none; }
.nf-footer__cicon { flex: none; margin-top: 2px; }
.nf-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); position: relative; }
.nf-footer__bottom-inner { max-width: var(--container-max); margin: 0 auto; padding: 18px 32px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--gray-400); }
.nf-footer__bottom-inner .nf-footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.nf-footer__bottom-inner a { color: var(--gray-400); text-decoration: none; }
.nf-footer__bottom-inner a:hover { color: var(--lime-500); }

/* ---------------- Hero ---------------- */
.nf-hero { background: linear-gradient(180deg, var(--lime-50) 0%, var(--white) 70%); overflow: hidden; position: relative; }
.nf-hero__grid { padding-top: 72px; padding-bottom: 72px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; }
.nf-hero h1 { font-size: clamp(40px, 5.5vw, 76px); line-height: 1.02; margin: 18px 0 0; color: var(--ink-900); letter-spacing: -0.02em; }
.nf-hero__hl { color: var(--lime-600); position: relative; }
.nf-hero__hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 10px; background: var(--lime-300); z-index: -1; border-radius: 4px; }
.nf-hero__lead { font-size: 20px; line-height: 1.55; font-weight: 300; color: var(--gray-600); max-width: 46ch; margin-top: 22px; }
.nf-hero__actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.nf-hero__stats { display: flex; flex-wrap: wrap; margin-top: 42px; border-top: 1px solid var(--border-subtle); padding-top: 28px; }
.nf-hero__stat { padding-right: 30px; margin-right: 30px; }
.nf-hero__stat:not(:last-child) { border-right: 1px solid var(--border-subtle); }
.nf-hero__stat-n { font-family: var(--font-display); font-weight: 900; font-size: 40px; line-height: 1; color: var(--ink-900); }
.nf-hero__stat-l { font-size: 14px; color: var(--gray-500); margin-top: 7px; }
.nf-hero__art-wrap { display: flex; align-items: center; justify-content: center; }

.nf-hero-art { position: relative; width: 100%; max-width: 540px; aspect-ratio: 1 / 1; margin: 0 auto; }
.nf-hero-art > div { position: absolute; border-radius: 50%; }

.nf-hero-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(20,26,27,0.05) 1.4px, transparent 1.4px); background-size: 26px 26px; -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 78%); mask-image: linear-gradient(180deg, #000 0%, transparent 78%); pointer-events: none; }

/* ---------------- Two-column / generic helpers ---------------- */
.nf-two-col { display: grid; gap: 56px; align-items: start; }
.nf-link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; text-transform: lowercase; color: var(--lime-700); }
.nf-section-head { text-align: center; }
.nf-section-head h2 { margin: 14px 0 0; color: var(--ink-900); }
.nf-h2 { font-size: clamp(30px, 3.4vw, 44px); color: var(--ink-900); }
.nf-h2--sm { font-size: clamp(28px, 3.2vw, 42px); }
.nf-lead { font-size: 18px; line-height: 1.65; color: var(--gray-600); }

/* ---------------- Welkom ---------------- */
.nf-welkom { grid-template-columns: 0.85fr 1.15fr; }
.nf-welkom h2 { font-size: clamp(30px, 3.4vw, 44px); margin: 16px 0 0; color: var(--ink-900); }
.nf-welkom p { font-size: 18px; line-height: 1.65; color: var(--gray-600); }
.nf-welkom p strong { font-weight: 500; color: var(--ink-800); }

/* ---------------- Services grid ---------------- */
.nf-services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.nf-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.nf-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }

/* ---------------- Specialisaties dark panel ---------------- */
.nf-spec-panel {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
  background: var(--ink-900); color: var(--white); border-radius: 32px; padding: 64px 56px;
}
.nf-spec-panel__glow1 { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(139,197,64,0.16); right: -100px; top: -120px; pointer-events: none; }
.nf-spec-panel__glow2 { position: absolute; width: 160px; height: 160px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.10); left: -50px; bottom: -70px; pointer-events: none; }
.nf-spec-panel h2 { font-size: clamp(28px, 3.2vw, 42px); margin: 16px 0 14px; color: var(--white); }
.nf-spec-panel__intro { font-size: 18px; line-height: 1.6; color: var(--gray-300); font-weight: 300; max-width: 40ch; }
.nf-spec-chips { display: flex; flex-wrap: wrap; gap: 12px; position: relative; }
.nf-spec-chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: var(--radius-pill);
  background: var(--white); color: var(--ink-900); text-decoration: none; font-family: var(--font-body);
  font-weight: 700; font-size: 14.5px; box-shadow: var(--shadow-sm); transition: all var(--duration-fast) var(--ease-standard);
}
.nf-spec-chip:hover { background: var(--ink-800); color: var(--white); transform: translateY(-2px); }
.nf-spec-chip:hover svg { stroke: var(--white); }

/* ---------------- Digitaal / icon-tile grids ---------------- */
.nf-tile { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 30px 26px; text-align: center; }
.nf-tile--gray { background: var(--gray-50); border: none; padding: 26px 22px; }
.nf-tile__disc { width: 60px; height: 60px; border-radius: var(--radius-pill); background: var(--lime-100); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.nf-tile__disc--sm { width: 56px; height: 56px; margin-bottom: 14px; }
.nf-tile h4 { margin: 0 0 8px; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink-900); }
.nf-tile p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--gray-600); }
.nf-tile--gray h4 { font-size: 18px; margin-bottom: 6px; }
.nf-tile--gray p { font-size: 14px; }

/* ---------------- Team ---------------- */
.nf-team-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; gap: 20px; flex-wrap: wrap; }
.nf-team-head h2 { font-size: clamp(30px, 3.4vw, 44px); margin: 14px 0 0; color: var(--ink-900); }
.nf-team-head__hint { font-family: var(--font-body); font-size: 14px; color: var(--gray-500); margin: 8px 0 0; }
.nf-team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.nf-team-grid--rows { row-gap: 44px; column-gap: 24px; }
.nf-portrait { text-align: center; }
.nf-portrait__img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--sage-100);
  box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center;
  transition: transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard);
}
.nf-portrait__img img { width: 100%; height: 100%; object-fit: cover; }
.nf-portrait__img--initial { background: var(--lime-100); }
.nf-portrait__initial { font-family: var(--font-accent); font-weight: 700; font-size: clamp(40px, 6vw, 64px); color: var(--lime-600); letter-spacing: 0.04em; }
.nf-portrait__name { margin: 14px 0 0; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink-900); transition: color var(--duration-fast) var(--ease-standard); }
.nf-portrait__office { display: block; margin-top: 4px; font-family: var(--font-body); font-size: 12px; color: var(--gray-500); }
.nf-portrait.is-clickable { cursor: pointer; }
.nf-portrait.is-clickable:hover .nf-portrait__img { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.nf-portrait.is-clickable:hover .nf-portrait__name { color: var(--lime-700); }
.nf-portrait__overlay {
  position: absolute; inset: 0; border-radius: inherit;
  background: rgba(20,26,27,0.68);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--duration-base) var(--ease-standard);
}
.nf-portrait.is-clickable:hover .nf-portrait__overlay { opacity: 1; }
.nf-portrait__overlay-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime-500); color: var(--ink-900);
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  padding: 10px 18px; border-radius: var(--radius-pill); text-transform: lowercase;
}

/* ---------------- Bio modal ---------------- */
.nf-modal { position: fixed; inset: 0; z-index: 200; background: rgba(20,26,27,0.55); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 20px; }
.nf-modal__card { position: relative; background: var(--white); border-radius: var(--radius-xl); max-width: 600px; width: 100%; max-height: 88vh; overflow-y: auto; box-shadow: var(--shadow-lg); }
.nf-modal__close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: var(--radius-pill); border: none; background: var(--gray-100); color: var(--ink-900); font-size: 22px; line-height: 1; cursor: pointer; z-index: 1; }
.nf-modal__head { display: flex; gap: 22px; padding: 36px 38px 4px; align-items: center; flex-wrap: wrap; }
.nf-modal__photo { width: 96px; height: 120px; border-radius: var(--radius-lg); overflow: hidden; flex: none; background: var(--sage-100); display: flex; align-items: center; justify-content: center; }
.nf-modal__photo--initial { background: var(--lime-100); }
.nf-modal__photo img { width: 100%; height: 100%; object-fit: cover; }
.nf-modal__photo .nf-portrait__initial { font-size: 40px; }
.nf-modal__name { margin: 10px 0 0; font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--ink-900); }
.nf-modal__bio { padding: 20px 38px 32px; margin: 0; font-size: 16.5px; line-height: 1.65; color: var(--gray-600); }
.nf-modal__cta { padding: 0 38px 36px; }

/* ---------------- Contact ---------------- */
.nf-contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
.nf-contact h2 { font-size: clamp(28px, 3.2vw, 42px); margin: 0 0 8px; color: var(--ink-900); }
.nf-contact__sub { font-size: 18px; color: var(--gray-600); font-weight: 300; max-width: 40ch; margin-bottom: 26px; }
.nf-cta-tile { display: flex; align-items: center; gap: 14px; padding: 16px 20px; margin-bottom: 14px; border-radius: var(--radius-lg); text-decoration: none; }
.nf-cta-tile--lime { background: var(--lime-500); box-shadow: var(--shadow-brand); }
.nf-cta-tile--wa { background: #25D366; box-shadow: 0 8px 24px rgba(37,211,102,0.28); }
.nf-cta-tile__title { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.nf-cta-tile--lime .nf-cta-tile__title { color: var(--ink-900); }
.nf-cta-tile--lime .nf-cta-tile__sub { color: rgba(20,26,27,0.78); font-size: 14px; }
.nf-cta-tile--wa .nf-cta-tile__title { color: #fff; }
.nf-cta-tile--wa .nf-cta-tile__sub { color: rgba(255,255,255,0.92); font-size: 14px; }
.nf-cta-tile__arrow { margin-left: auto; }
.nf-info-card { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); }
.nf-info-card__disc { width: 42px; height: 42px; border-radius: var(--radius-pill); background: var(--lime-100); display: flex; align-items: center; justify-content: center; flex: none; }
.nf-info-card__title { font-weight: 700; color: var(--ink-900); font-family: var(--font-display); }
.nf-info-card__line { color: var(--gray-600); }
.nf-info-card__phone { color: var(--gray-600); display: flex; align-items: center; gap: 7px; margin-top: 2px; }
.nf-info-card__phone a { color: inherit; text-decoration: none; }
.nf-success { text-align: center; padding: 30px 10px; }
.nf-success__disc { width: 64px; height: 64px; border-radius: var(--radius-pill); background: var(--lime-100); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.nf-form { display: flex; flex-direction: column; gap: 16px; }
.nf-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nf-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------------- Page hero ---------------- */
.nf-page-hero { background: linear-gradient(180deg, var(--lime-50) 0%, var(--white) 90%); position: relative; overflow: hidden; }
.nf-page-hero__inner { max-width: var(--container-max); margin: 0 auto; padding: 84px 32px 52px; position: relative; }
.nf-page-hero h1 { font-size: clamp(34px, 4.6vw, 62px); line-height: 1.03; margin: 16px 0 0; color: var(--ink-900); letter-spacing: -0.02em; }
.nf-page-hero__sub { font-size: 19px; line-height: 1.55; font-weight: 300; color: var(--gray-600); max-width: 54ch; margin-top: 18px; }

/* ---------------- CTA band ---------------- */
.nf-cta-band { background: var(--lime-500); position: relative; overflow: hidden; }
.nf-cta-band__glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,0.16); right: -120px; top: -150px; pointer-events: none; }
.nf-cta-band__inner { padding-top: 56px; padding-bottom: 56px; position: relative; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.nf-cta-band h2 { color: var(--ink-900); font-size: clamp(26px, 3vw, 38px); margin: 0; }
.nf-cta-band p { color: rgba(20,26,27,0.78); margin: 10px 0 0; font-size: 18px; }

/* ---------------- Diensten "zo werken we" steps ---------------- */
.nf-step { background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 26px 22px; }
.nf-step__n { font-family: var(--font-accent); font-size: 22px; color: var(--lime-600); margin-bottom: 12px; letter-spacing: 0.08em; }
.nf-step h4 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink-900); }
.nf-step p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--gray-600); }

/* ---------------- Vacatures ---------------- */
.nf-jobs { display: flex; flex-direction: column; gap: 16px; }
.nf-job { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; background: var(--white); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 26px 28px; box-shadow: var(--shadow-xs); }
.nf-job__main { flex: 1 1 300px; }
.nf-job__main h3 { margin: 0 0 10px; font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--ink-900); }
.nf-job__badges { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.nf-job__desc { margin: 0; font-size: 16px; line-height: 1.6; color: var(--gray-600); max-width: 62ch; }
.nf-job__btn { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; padding: 13px 24px; border-radius: var(--radius-pill); background: var(--lime-500); color: var(--ink-900); font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 15px; white-space: nowrap; }

/* ---------------- Afspraak / booking ---------------- */
.nf-book-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
.nf-book-card { background: var(--lime-50); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 26px 24px; }
.nf-book-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.nf-book-card__disc { width: 44px; height: 44px; border-radius: var(--radius-pill); background: var(--lime-500); display: flex; align-items: center; justify-content: center; flex: none; }
.nf-book-card__head h3 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink-900); }
.nf-book-card__list { display: flex; flex-direction: column; gap: 10px; }
.nf-book-link {
  display: flex; align-items: center; gap: 14px; text-decoration: none; padding: 12px 14px; border-radius: var(--radius-pill);
  border: 2px solid var(--border-default); background: var(--white); transition: all var(--duration-fast) var(--ease-standard);
}
.nf-book-link:hover { border-color: var(--lime-500); background: var(--lime-500); box-shadow: var(--shadow-brand); transform: translateY(-2px); }
.nf-book-link__icon { width: 42px; height: 42px; border-radius: var(--radius-pill); background: var(--lime-100); display: flex; align-items: center; justify-content: center; flex: none; transition: all var(--duration-fast) var(--ease-standard); }
.nf-book-link:hover .nf-book-link__icon { background: var(--ink-900); }
.nf-book-link:hover .nf-book-link__icon svg { stroke: var(--lime-500); }
.nf-book-link__label { flex: 1; font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--ink-900); }
.nf-book-link__arrow { width: 30px; height: 30px; border-radius: var(--radius-pill); background: var(--lime-100); display: flex; align-items: center; justify-content: center; flex: none; transition: all var(--duration-fast) var(--ease-standard); }
.nf-book-link:hover .nf-book-link__arrow { background: var(--ink-900); transform: translateX(2px); }
.nf-book-link:hover .nf-book-link__arrow svg { stroke: var(--lime-500); }

/* ---------------- Voor klanten link lists ---------------- */
.nf-linklist { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.nf-linkrow {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle); background: var(--white); text-decoration: none; color: var(--ink-800);
  font-family: var(--font-body); font-weight: 600; font-size: 15.5px; transition: all var(--duration-fast) var(--ease-standard);
}
.nf-linkrow:hover { border-color: var(--lime-500); background: var(--lime-50); color: var(--ink-800); }

/* ---------------- Detail page (dienst / specialisatie) ---------------- */
.nf-detail-grid { grid-template-columns: 1.5fr 0.85fr; gap: 48px; }
.nf-detail__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.nf-detail__icon { width: 64px; height: 64px; border-radius: var(--radius-pill); background: var(--lime-500); display: flex; align-items: center; justify-content: center; flex: none; }
.nf-detail__head h2 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3vw, 34px); color: var(--ink-900); }
.nf-detail h2.nf-detail__plain { margin: 0 0 18px; font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3vw, 34px); color: var(--ink-900); }
.nf-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.nf-point { display: flex; gap: 12px; align-items: flex-start; }
.nf-point__check { width: 26px; height: 26px; border-radius: var(--radius-pill); background: var(--lime-100); display: flex; align-items: center; justify-content: center; flex: none; margin-top: 2px; }
.nf-point span:last-child { font-size: 17px; line-height: 1.5; color: var(--gray-600); }
.nf-aside { background: var(--gray-50); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 22px 20px; }
.nf-aside__head { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-overline); font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.nf-aside__list { display: flex; flex-direction: column; }
.nf-aside__link {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; border-radius: var(--radius-md);
  text-decoration: none; font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--gray-600);
  background: transparent; border-left: 3px solid transparent; transition: all var(--duration-fast) var(--ease-standard);
}
.nf-aside__link:hover { color: var(--ink-900); background: var(--lime-50); transform: translateX(3px); }
.nf-aside__link.is-active { font-weight: 700; color: var(--lime-700); background: var(--lime-100); border-left-color: var(--lime-500); transform: none; }
.nf-aside__link svg { stroke: var(--gray-300); }
.nf-aside__link:hover svg { stroke: var(--lime-600); }
.nf-aside__link.is-active svg { stroke: var(--lime-700); }

/* ---------------- Animations & motion ---------------- */
@keyframes nfFloatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes nfFloatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }
@keyframes nfFloatC { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.nf-float-a { animation: nfFloatA 7s ease-in-out infinite; }
.nf-float-b { animation: nfFloatB 8.5s ease-in-out infinite; }
.nf-float-c { animation: nfFloatC 6s ease-in-out infinite; }

.nf-wa { transition: transform var(--duration-fast) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard), filter var(--duration-fast) var(--ease-standard); }
.nf-wa:hover { transform: translateY(-2px); filter: brightness(1.04); box-shadow: 0 12px 30px rgba(37,211,102,0.36) !important; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .nf-hero__grid, .nf-two-col { grid-template-columns: 1fr !important; gap: 36px !important; }
  .nf-services-grid, .nf-grid-2, .nf-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .nf-team-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .nf-footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .nf-desktop-nav { display: none !important; }
  .nf-mobile-toggle { display: flex !important; }
}
@media (max-width: 560px) {
  .nf-services-grid, .nf-grid-2, .nf-grid-4 { grid-template-columns: 1fr !important; }
  .nf-team-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .nf-form__row { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) { .nf-spec-panel { padding: 40px 26px !important; } }
@media (prefers-reduced-motion: reduce) {
  .nf-float-a, .nf-float-b, .nf-float-c { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
