/* Florijn marketing site (BEG-779, two pages since BEG-793).
   Hand-authored stylesheet shared by both pages. Design tokens from the
   Claude Design handoff (design_handoff_florijn_site/README.md). This file,
   index.html, voor-accountants.html and site.js are the source of truth. */

:root {
  --blue: #2563EB;
  --blue-hover: #1D4FD8;
  --ink: #101B2D;
  --body: #566072;
  --muted: #8A8578;
  --page: #F6F4EE;
  --tint: #ECEEF3;
  --light-blue: #DBEAFE;
  --soft-blue: #EEF2FB;
  --border: #E1E3EA;
  --card-border: #E7E7E2;
  --input-border: #D9D7CE;
  --green-text: #15803D;
  --green-bg: #DCFCE7;
  --green-dot: #22A85B;
  --ok-tile-bg: #F7F9F6;
  --ok-tile-border: #E4EFE4;

  --font-head: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  --shadow-card: 0 1px 2px rgba(16, 27, 45, 0.04), 0 22px 44px -32px rgba(16, 27, 45, 0.34);
  --shadow-card-lg: 0 1px 2px rgba(16, 27, 45, 0.05), 0 30px 56px -34px rgba(16, 27, 45, 0.34);
  --shadow-btn: 0 10px 24px -8px rgba(37, 99, 235, 0.55);
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--page);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--light-blue); color: var(--ink); }

a { text-decoration: none; color: var(--blue); }
a:hover { color: var(--blue-hover); }

img { max-width: 100%; }

h1, h2, h3 { margin: 0; }
p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

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

/* ---------- shared type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--light-blue);
  padding: 7px 13px;
  border-radius: 999px;
}

.section-h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 18px 0 0;
  text-wrap: balance;
}

.section-h2--compact {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
}

.lead {
  font-size: 19px;
  line-height: 1.68;
  color: var(--body);
  margin: 20px 0 0;
}

.lead--18 { font-size: 18px; }

.section-head { max-width: 720px; }
/* The "Diensten" / "Zo werkt het" / "Voor partners" headers run full-bleed
   across the container rather than sitting in the 720px measure. */
.section-head--wide { max-width: none; }

/* ---------- buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  padding: 11px 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 16px -6px rgba(37, 99, 235, 0.5);
  transition: background 0.18s ease;
}
.btn-primary:hover { background: var(--blue-hover); color: #fff; }

.btn-primary--lg {
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 11px;
  box-shadow: var(--shadow-btn);
}
.btn-primary--block {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 15.5px;
  padding: 14px;
  border-radius: 11px;
  margin-top: 26px;
  box-shadow: 0 10px 24px -10px rgba(37, 99, 235, 0.55);
}
.btn-primary--submit {
  width: 100%;
  margin-top: 6px;
  font-size: 16px;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 12px 26px -10px rgba(37, 99, 235, 0.6);
}

/* Secondary hero CTA: ink on white with a hairline border. */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  padding: 15px 24px;
  border-radius: 11px;
  border: 1px solid #DAD8CF;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.btn-secondary:hover { color: var(--ink); border-color: #C4C1B6; background: #FBFAF6; }

/* White CTA sitting on the dark "Voor accountants" band. */
.btn-onDark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  padding: 15px 26px;
  border-radius: 11px;
  transition: background 0.18s ease;
}
.btn-onDark:hover { color: var(--ink); background: #EEF2FB; }

/* ---------- logo lockup ---------- */
.logo-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-head);
  color: var(--blue);
}
.logo-lockup .mark {
  display: block;
  height: 0.72em;
  width: auto;
  align-self: baseline;
  transform: translateY(0.04em);
  color: var(--blue);
}
.wordmark {
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-lockup--sm { gap: 7px; }
.wordmark--sm { font-size: 18px; letter-spacing: 0; }

/* ---------- brand bars tile ---------- */
.logo-tile {
  flex: none;
  background: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo-tile i { display: block; background: #fff; border-radius: 2px; }
.logo-tile i:nth-child(1) { width: 100%; }
.logo-tile i:nth-child(2) { width: 62%; }
.logo-tile i:nth-child(3) { width: 82%; }
.logo-tile--42 { width: 42px; height: 42px; border-radius: 11px; padding: 10px; gap: 3px; }
.logo-tile--42 i { height: 3px; }
.logo-tile--30 { width: 30px; height: 30px; border-radius: 8px; padding: 7px; gap: 2.5px; }
.logo-tile--30 i { height: 2.6px; }
.logo-tile--24 { width: 24px; height: 24px; border-radius: 7px; padding: 6px; gap: 2.5px; }
.logo-tile--24 i { height: 2.4px; }

.icon-tile {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--soft-blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(16, 27, 45, 0.08);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 26px -14px rgba(16, 27, 45, 0.22);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.logo-lockup { font-size: 22px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta-desktop { display: flex; align-items: center; gap: 12px; }

/* "Voor accountants" fold-out. CSS-only: :hover for the pointer,
   :focus-within so it is reachable by keyboard. The wrapper's padding-top
   is the bridge that lets the pointer travel from the trigger into the
   card without crossing a gap that would close the menu. */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown__trigger svg { opacity: 0.65; margin-top: 1px; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -14px;
  padding-top: 14px;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu__card {
  min-width: 252px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  box-shadow: 0 20px 44px -20px rgba(16, 27, 45, 0.32);
  padding: 8px;
}
.nav-links .nav-dropdown-menu__card a {
  display: block;
  padding: 11px 13px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.nav-links .nav-dropdown-menu__card a:hover { background: var(--page); color: var(--ink); }

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid #E0DFD8;
  background: #fff;
  cursor: pointer;
  padding: 0;
}
.nav-burger .icon-close { display: none; }
.nav-burger[aria-expanded="true"] .icon-open { display: none; }
.nav-burger[aria-expanded="true"] .icon-close { display: block; }

.nav-mobile {
  border-top: 1px solid rgba(16, 27, 45, 0.08);
  background: rgba(255, 255, 255, 0.98);
  padding: 10px 24px 20px;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a:not(.nav-mobile__cta) {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 13px 4px;
  border-bottom: 1px solid #EAE9E3;
}
.nav-mobile__cta {
  display: block;
  text-align: center;
  margin-top: 16px;
  padding: 13px;
  border-radius: 11px;
}
/* The accountant links sit under an uppercase group label, indented. */
.nav-mobile__group {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 16px 4px 6px;
}
.nav-mobile a.nav-mobile__sub {
  font-size: 15.5px;
  padding: 11px 4px 11px 16px;
}

/* ---------- hero ---------- */
.hero {
  padding: 92px 0 100px;
  background: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-head);
  text-wrap: balance;
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
}
/* The closing word of the headline carries the brand blue. */
.hero-title__accent { color: var(--blue); }
.eyebrow + .hero-title { margin-top: 22px; }
.hero-lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--body);
  margin: 26px 0 0;
  max-width: 520px;
}
.hero-lead__strong {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--ink);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* ---------- framed photo + blob + chip ---------- */
.photo-frame { position: relative; }
.photo-frame--hero { padding: 16px 14px 26px 10px; }
.photo-frame--client { padding: 16px 10px 26px 14px; }

.photo-blob {
  position: absolute;
  top: 30px;
  bottom: 30px;
  background: var(--light-blue);
  border-radius: 24px;
  z-index: 0;
}
.photo-frame--hero .photo-blob { right: -10px; left: 66px; }
.photo-frame--client .photo-blob { left: -10px; right: 66px; }

.photo-img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(16, 27, 45, 0.34);
}
.photo-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 40%;
}
.photo-frame--hero .photo-img img { aspect-ratio: 4 / 5; }
.photo-frame--client .photo-img img { aspect-ratio: 3 / 2; }

.photo-chip {
  position: absolute;
  z-index: 2;
  bottom: 52px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  box-shadow: 0 20px 44px -20px rgba(16, 27, 45, 0.4);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.photo-chip--left { left: -18px; }
.photo-chip--right { right: -14px; bottom: 54px; }
.photo-chip__mark {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--light-blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.photo-chip__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.photo-chip__sub {
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- voor de client ---------- */
.voor-client {
  background: var(--page);
  padding: 108px 0 116px;
  border-top: 1px solid #ECEAE1;
  border-bottom: 1px solid var(--border);
}
.clientstory-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 68px;
  align-items: center;
}
.clientstory-intro .lead { max-width: 480px; }

/* 3-step rows (client story + partners flow share the arrow geometry) */
.steps-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  position: relative;
}
.clientstory-steps {
  margin-top: 88px;
  align-items: start;
}
.step { display: flex; flex-direction: column; }
.step__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.step__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 22px 0 0;
}
.step__body {
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--body);
  margin: 10px 0 0;
}

.mini-card {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #ECECE5;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 16px;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
}
.status-line--ok {
  background: var(--ok-tile-bg);
  border: 1px solid var(--ok-tile-border);
}
.status-line--gap { margin-top: 8px; }
.status-check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--green-bg);
  color: var(--green-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.status-text { font-size: 14px; font-weight: 600; color: var(--ink); }

.mini-ask {
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--soft-blue);
  border: 1px solid #DCE5F8;
  border-radius: 10px;
}
.mini-ask__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 5px;
}
.mini-ask__body { font-size: 14.5px; color: var(--ink); }

.mail-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F1EC;
}
.mail-icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mail-meta { min-width: 0; }
.mail-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}
.mail-subject {
  margin-top: 1px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat { padding: 12px 0 4px; }
.chat-bubble {
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 14px;
  line-height: 1.5;
}
.chat-bubble--in { background: var(--page); color: var(--ink); }
.chat-out { display: flex; justify-content: flex-end; margin-top: 8px; }
.chat-bubble--out { background: var(--blue); color: #fff; max-width: 90%; }

.insight-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.insight-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.insight-meta { font-size: 11.5px; color: var(--muted); }
.bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 52px;
  margin: 16px 0 4px;
}
.bars span { flex: 1; border-radius: 4px 4px 0 0; }
.figures { display: flex; flex-direction: column; gap: 1px; margin-top: 12px; }
.figure-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #F3F3EE;
}
.figure-row--total { padding: 10px 0 2px; border-bottom: none; }
.figure-label { font-size: 14px; color: var(--body); }
.figure-label--strong { font-weight: 600; color: var(--ink); }
.figure-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.figure-value--accent { font-weight: 800; font-size: 16px; color: var(--blue); }

.steps-arrow {
  position: absolute;
  top: 82px;
  color: #C4CDDA;
  font-size: 20px;
}
.steps-arrow--1 { left: calc(33.33% - 14px); }
.steps-arrow--2 { left: calc(66.66% - 14px); }

/* ---------- samenwerking / een team ---------- */
.samenwerking {
  background: var(--tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 104px 0 112px;
}
.team-block { margin-top: 64px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.role-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(16, 27, 45, 0.04), 0 26px 50px -36px rgba(16, 27, 45, 0.3);
}
.role-card--featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-card-lg);
}
.role-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--light-blue);
  padding: 5px 10px;
  border-radius: 999px;
}
.role-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 18px 0 0;
}
.role-card__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--body);
  margin: 6px 0 0;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 20px 0 0;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.check-item__mark { flex: none; color: var(--blue); margin-top: 1px; }

.team-connectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}
.team-connectors span {
  justify-self: center;
  width: 2px;
  height: 34px;
  background: #C8CDD7;
}

.shared-admin {
  margin-top: -1px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(16, 27, 45, 0.05), 0 34px 64px -40px rgba(16, 27, 45, 0.34);
  overflow: hidden;
}
.shared-admin__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid #EFF0EC;
  background: #FBFBF9;
}
.shared-admin__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
}
.shared-admin__sub { margin-top: 2px; font-size: 13px; color: var(--muted); }
.shared-admin__chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 24px 22px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.chip--green { background: var(--ok-tile-bg); border: 1px solid var(--ok-tile-border); }
.chip--blue { background: var(--soft-blue); border: 1px solid #DCE5F8; }
.dot { flex: none; width: 8px; height: 8px; border-radius: 999px; }
.dot--green { background: var(--green-dot); }
.dot--blue { background: var(--blue); }

/* ---------- voor accountants band (home page only) ---------- */
.accountants-band { background: #fff; padding: 84px 0; }
.accountants-band__card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  background: var(--ink);
  border-radius: 24px;
  padding: 46px 44px;
  box-shadow: 0 34px 64px -40px rgba(16, 27, 45, 0.5);
}
.accountants-band__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9DC0FF;
}
.accountants-band__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 16px 0 0;
  text-wrap: balance;
}
.accountants-band__text {
  font-size: 17px;
  line-height: 1.65;
  color: #B7C0D0;
  margin: 16px 0 0;
  max-width: 460px;
}
.accountants-band__cta { display: flex; justify-content: flex-start; }

/* ---------- voor partners ---------- */
.voor-partners { background: #fff; padding: 108px 0 116px; }
.partners-flow {
  margin-top: 64px;
  align-items: stretch;
}
.flow-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 1px 2px rgba(16, 27, 45, 0.04), 0 26px 50px -36px rgba(16, 27, 45, 0.3);
}
.flow-card--featured { border: 2px solid var(--blue); box-shadow: var(--shadow-card-lg); }
.flow-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 18px;
}
.flow-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 10px 0 0;
}
.flow-card__body {
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--body);
  margin: 10px 0 0;
}
.flow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #C4CDDA;
  font-size: 20px;
}
.flow-arrow--1 { left: calc(33.33% - 12px); }
.flow-arrow--2 { left: calc(66.66% - 12px); }

.callout {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  padding: 20px 24px;
  border-radius: 16px;
}
.callout--green { background: #F6F9F4; border: 1px solid #DCEBD8; }
.callout__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--green-bg);
  color: var(--green-text);
  display: flex;
  align-items: center;
  justify-content: center;
}
.callout__text {
  font-size: 16.5px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- bestaande administraties ---------- */
.bestaande {
  background: var(--page);
  border-top: 1px solid #ECEAE1;
  border-bottom: 1px solid var(--border);
  padding: 104px 0;
}
.aanbod-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.aanbod-grid .lead { max-width: 480px; }
.offer-card {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: 0 1px 2px rgba(16, 27, 45, 0.05), 0 34px 64px -38px rgba(16, 27, 45, 0.34);
}
.offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0 0;
}
.offer-price__amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.offer-price__unit { font-size: 15px; font-weight: 500; color: var(--muted); }
.offer-divider { height: 1px; background: #EDEAE1; margin: 22px 0; }
.offer-list { display: flex; flex-direction: column; gap: 12px; }
.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
}
.offer-item__mark { flex: none; color: var(--blue); margin-top: 1px; }

/* ---------- de administratie ---------- */
.de-administratie {
  background: var(--tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 104px 0 112px;
}
.admin-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.admin-text .lead { max-width: 480px; }
.admin-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--ink);
  max-width: 440px;
}
.admin-check__mark { flex: none; color: var(--blue); margin-top: 1px; }

.status-panel-wrap { position: relative; }
.status-panel-blob {
  position: absolute;
  inset: 30px -16px -18px 44px;
  background: var(--light-blue);
  border-radius: 22px;
  z-index: 0;
}
.status-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(16, 27, 45, 0.05), 0 34px 64px -36px rgba(16, 27, 45, 0.36);
  overflow: hidden;
}
.status-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #EFF0EC;
  background: #FBFBF9;
}
.status-panel__brand { display: flex; align-items: center; gap: 11px; }
.status-panel__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.status-panel__time { font-size: 11.5px; color: var(--muted); }
.status-panel__rows {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--ok-tile-bg);
  border: 1px solid var(--ok-tile-border);
  border-radius: 11px;
}
.check-row__mark {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--green-bg);
  color: var(--green-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.check-row__text { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.periods {
  margin: 0 20px;
  padding: 14px 0;
  border-top: 1px solid #F1F1EC;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.periods__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.period-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
}
.period-chip--done { color: var(--green-text); background: var(--green-bg); }
.period-chip--busy { color: var(--blue); background: var(--soft-blue); }
.status-panel__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 18px;
  background: #FBFBF9;
  border-top: 1px solid #EFF0EC;
}
.status-panel__foot-mark {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.status-panel__foot-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}

/* ---------- contact form ---------- */
.contact { padding: 60px 0 96px; }
.form-grid {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(16, 27, 45, 0.04), 0 26px 50px -34px rgba(16, 27, 45, 0.4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.form-intro { padding: 48px 44px; }
.form-intro__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.form-intro__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  margin: 16px 0 0;
  max-width: 380px;
}
.form-panel {
  padding: 44px;
  background: #FBFAF6;
  border-left: 1px solid #EFEEE9;
}
.signup-form { display: flex; flex-direction: column; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field__input {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 13px 14px;
  border: 1px solid var(--input-border);
  border-radius: 11px;
  outline: none;
  background: #fff;
  transition: border-color 0.15s ease;
}
.field__input:focus { border-color: var(--blue); }
.signup-form__note {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin: 4px 0 0;
}
.form-success { text-align: center; padding: 18px 4px; }
.form-success__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #E7F6EF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.form-success__text {
  font-size: 16px;
  line-height: 1.65;
  color: #3B4457;
  margin: 20px auto 0;
  max-width: 340px;
}

/* ---------- footer ---------- */
.site-footer { padding: 0 0 56px; }
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--card-border);
}
.site-footer__tagline { font-size: 14px; color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .nav-burger { display: inline-flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }

  .clientstory-grid { grid-template-columns: 1fr; gap: 40px; }
  .clientstory-photo { order: -1; }

  .clientstory-steps, .partners-flow { grid-template-columns: 1fr; gap: 34px; }
  .clientstory-steps { gap: 40px; }
  .steps-arrow, .flow-arrow { display: none; }

  .team-grid { grid-template-columns: 1fr; }
  .team-connectors { display: none; }
  .shared-admin__chips { grid-template-columns: 1fr; }

  .aanbod-grid { grid-template-columns: 1fr; gap: 40px; }
  .admin-grid { grid-template-columns: 1fr; gap: 34px; }
  .admin-visual { order: 2; }

  .accountants-band { padding: 60px 0; }
  .accountants-band__card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 28px;
  }

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

@media (max-width: 560px) {
  .form-intro { padding: 36px 28px; }
  .form-panel { padding: 32px 28px; }
  .hero { padding: 64px 0 72px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
