/* ============================================================
   UwLabelHulp Zakelijk — Stylesheet
   Based on Particulier design system (Inter, #0F172A, #EA580C)
   Mobile-first, no frameworks, no build tools
   ============================================================ */

/* ── 1. CSS Custom Properties ─────────────────────────────── */
:root {
  --navy:        #0F172A;
  --navy-light:  #131b2e;
  --navy-dark:   #0a1020;
  --accent:      #EA580C;
  --accent-dark: #c2470a;
  --green-bg:    #F0F7F4;
  --bg:          #F8F9FB;
  --white:       #ffffff;
  --text:        #374151;
  --muted:       #6B7280;
  --border:      #E2E8F0;
  --whatsapp:    #25D366;

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 8px rgba(15,23,42,0.07);
  --shadow:      0 4px 24px rgba(15,23,42,0.10);
  --shadow-lg:   0 12px 40px rgba(15,23,42,0.14);

  --font: 'Inter', system-ui, sans-serif;
  --transition: 220ms ease;

  --container:   1180px;
  --nav-h: 72px;
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); overflow-x: hidden; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── 3. Typography ────────────────────────────────────────── */
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 700; line-height: 1.15; color: var(--navy); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; color: var(--navy); letter-spacing: -0.015em; }
h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); }
p  { color: var(--text); }
strong { font-weight: 700; }

.overline {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0.75rem auto 0;
}

/* ── 4. Utilities ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }
.bg-light  { background: var(--bg); }
.bg-white  { background: var(--white); }
.bg-green  { background: var(--green-bg); }
.bg-navy   { background: var(--navy); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ── 5. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover  { transform: scale(1.025); }
.btn:active { transform: scale(0.98); }

.btn-lg { padding: 0.85rem 1.85rem; font-size: 1rem; }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(234,88,12,0.35);
}
.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(234,88,12,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

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

/* ── 6. Scroll Progress Bar ───────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #FBBF24);
  z-index: 9999;
  transition: width 80ms linear;
  border-radius: 0 2px 2px 0;
}

/* ── 7. Navbar ────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
}

.navbar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

header.scrolled .navbar {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(27,46,75,0.10);
  height: 62px;
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
  letter-spacing: -0.02em;
}
.logo-text em {
  font-style: normal;
  color: var(--accent);
}

/* "voor makelaars" pill tag */
.logo-tag {
  display: none;
  background: var(--accent);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  line-height: 1;
}

/* Nav links */
.nav-links {
  display: none;
  gap: 0.1rem;
  margin-left: auto;
  align-items: center;
}
.nav-link {
  position: relative;
  padding: 0.4rem 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--navy); background: var(--bg); }
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link.active { color: var(--navy); }

/* Desktop CTAs group */
.nav-inner > .nav-cta {
  display: none;
  flex-shrink: 0;
}
/* Only the first desktop CTA (Inloggen) gets margin-left: auto to push both to the right */
.nav-inloggen {
  display: none;
  margin-left: 0.5rem;
  flex-shrink: 0;
}
header:not(.scrolled) .nav-inner > .nav-cta {
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(234,88,12,0.4);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(27,46,75,0.07); }
.hamburger-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27,46,75,0.5);
  z-index: 800;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-overlay.open { display: block; opacity: 1; }

#nav-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  background: var(--white);
  z-index: 850;
  flex-direction: column;
  padding: calc(var(--nav-h) + 1.5rem) 2rem 2rem;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 32px rgba(27,46,75,0.15);
  overflow-y: auto;
}
#nav-menu.open { display: flex; transform: translateX(0); }
#nav-menu .nav-link {
  display: block;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}
#nav-menu .nav-link:hover { background: var(--bg); }
#nav-menu .nav-link::after { display: none; }
#nav-menu .nav-cta {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  margin-left: 0;
}

/* ── 8. Hero ──────────────────────────────────────────────── */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 9rem;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.hero-content { flex: 1; max-width: 560px; }
.hero-content .overline { color: rgba(249,115,22,0.95); }
.hero-content h1 { color: var(--navy); margin-bottom: 1.1rem; }

.hero-lead {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 500px;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(15,23,42,0.07);
  border: 1px solid rgba(15,23,42,0.15);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  backdrop-filter: blur(6px);
}
.badge svg { flex-shrink: 0; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero-ctas .btn-outline {
  color: var(--navy);
  border-color: var(--navy);
}
.hero-ctas .btn-outline:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Portal mockup card in hero */
.hero-portal-card {
  width: 100%;
  max-width: 460px;
  flex-shrink: 0;
}

/* Wave divider */
.wave-bottom {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.wave-bottom svg { width: 100%; height: 60px; }

/* ── 9. Stats Bar ─────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 2.5rem 0;
}
.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  text-align: center;
}
.stat-item { flex: 1; }
.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
}
.stat-value span:last-child { font-size: 1.4rem; color: rgba(255,255,255,0.7); }
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.stat-divider {
  display: none;
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  flex-shrink: 0;
}

/* ── 10. Services Grid ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(249,115,22,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 0; }
.service-card p { color: var(--muted); font-size: 0.93rem; flex: 1; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.25rem;
  transition: gap var(--transition);
}
.card-link:hover { gap: 0.55rem; }

/* Coming-soon card variant */
.service-card--soon {
  opacity: 0.72;
  background: var(--bg);
  border-style: dashed;
}
.service-card--soon:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  opacity: 0.82;
}
.service-icon--muted {
  background: rgba(107,114,128,0.1);
}
.service-icon--muted svg { stroke: var(--muted); }
.service-card--soon h3 { color: var(--muted); }
.card-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  padding: 0.25rem 0.75rem;
  background: rgba(107,114,128,0.12);
  border: 1px solid rgba(107,114,128,0.25);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Diensten note */
.diensten-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background: rgba(234,88,12,0.06);
  border: 1px solid rgba(234,88,12,0.18);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.diensten-note svg { flex-shrink: 0; stroke: var(--accent); }

/* ── 11. Process Steps ────────────────────────────────────── */
.steps-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(27,46,75,0.2);
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--muted); font-size: 0.92rem; max-width: 220px; }

/* ── 12. Portal Section (Het Portaal) ─────────────────────── */
.portaal-inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: flex-start;
}

.portaal-features { flex: 1; }
.portaal-features h2 { margin-bottom: 0; }
.portaal-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0.75rem 0 1.75rem;
}

.portaal-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0;
}
.portaal-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.97rem;
  color: var(--text);
}
.portaal-feature-item span {
  color: var(--muted);
  font-size: 0.88rem;
}
.portaal-cta { margin-top: 2rem; }

.usp-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.usp-check svg { width: 13px; height: 13px; }

.portaal-mockup { width: 100%; }

/* ── 13. Portal UI Components (mockup) ────────────────────── */
.portal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.portal-card__chrome,
.portal-full__chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: #f1f3f5;
  border-bottom: 1px solid var(--border);
}
.chrome-dots { display: flex; gap: 5px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot--red    { background: #ff5f57; }
.dot--yellow { background: #ffbd2e; }
.dot--green  { background: #28c840; }
.chrome-url {
  flex: 1;
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.6rem;
  font-family: var(--font);
}
.portal-card__body,
.portal-full__body {
  display: flex;
  height: 260px;
}

.portal-sidebar {
  width: 110px;
  background: var(--navy);
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.portal-sidebar--lg { width: 140px; }

.sidebar-brand {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--white);
  padding: 0.4rem 0.75rem 0.85rem;
  letter-spacing: -0.01em;
}
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.75rem;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.58);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.sidebar-link:hover {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.9);
}
.sidebar-link--active {
  background: rgba(234,88,12,0.2);
  color: var(--accent);
}
.sidebar-link--active:hover { background: rgba(234,88,12,0.25); }

.notif-dot {
  margin-left: auto;
  background: var(--accent);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  border-radius: 99px;
  padding: 1px 5px;
  line-height: 1.3;
}

.portal-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f8f9fb;
}
.portal-main--lg { background: var(--white); }

.portal-stats {
  display: flex;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem 0;
}
.stat-box {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.6rem;
}
.stat-box--green { border-color: #16a34a22; background: #f0fdf4; }
.stat-box--accent { border-color: rgba(234,88,12,0.2); background: rgba(234,88,12,0.05); }
.stat-box__num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-box--green .stat-box__num { color: #16a34a; }
.stat-box--accent .stat-box__num { color: var(--accent); }
.stat-box__label {
  font-size: 0.56rem;
  color: var(--muted);
  line-height: 1.3;
  margin-top: 2px;
}

.portal-table { flex: 1; overflow: hidden; padding: 0.5rem 0.75rem 0.5rem; }
.portal-table--lg { padding: 0 0.75rem 0.5rem; }
.portal-table__hd {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.5rem;
}
.portal-table--lg .portal-table__hd {
  grid-template-columns: 1fr 2fr 1.2fr 0.7fr 1.1fr;
}
.portal-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.35rem;
  font-size: 0.62rem;
  color: var(--text);
  padding: 0.4rem 0.5rem;
  border-top: 1px solid var(--border);
  align-items: center;
}
.portal-table--lg .portal-table__row {
  grid-template-columns: 1fr 2fr 1.2fr 0.7fr 1.1fr;
}
.portal-table__row span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.status {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.18rem 0.5rem;
  border-radius: 99px;
}
.status--orange { background: rgba(234,88,12,0.12); color: var(--accent); }
.status--green  { background: rgba(22,163,74,0.12); color: #16a34a; }
.status--blue   { background: rgba(37,99,235,0.12); color: #2563eb; }
.status--red    { background: rgba(220,38,38,0.12); color: #dc2626; }

/* Portal full mockup */
.portal-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.portal-full__body {
  height: 340px;
}

.portal-main__hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border);
  gap: 0.5rem;
}
.portal-main__hdr h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.portal-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.portal-search {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.5rem;
}
.portal-btn {
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.55rem;
  cursor: default;
  white-space: nowrap;
}
.portal-filters {
  display: flex;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
}
.filter-chip {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.18rem 0.5rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: default;
}
.filter-chip--active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.klantportaal-strip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.6rem;
  color: #2563eb;
  background: rgba(37,99,235,0.05);
  border-top: 1px solid rgba(37,99,235,0.12);
  margin-top: auto;
}

/* ── 14. Over Ons ─────────────────────────────────────────── */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-col--right { margin-top: 2.5rem; }
.about-photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-deco-orange {
  border-radius: var(--radius-lg);
  background: var(--accent);
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.about-deco-orange svg { width: 48px; height: 48px; opacity: 0.85; }
.about-deco-navy {
  border-radius: var(--radius-lg);
  background: var(--navy);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  min-height: 10rem;
}
.about-deco-navy .deco-number { font-size: 2rem; font-weight: 700; line-height: 1; margin-bottom: 0.25rem; }
.about-deco-navy .deco-label  { font-size: 0.78rem; opacity: 0.65; font-weight: 500; }

.about-content .overline { display: block; margin-bottom: 0.5rem; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: var(--muted); font-size: 0.97rem; margin-bottom: 1rem; }
.about-content p:last-of-type { margin-bottom: 1.5rem; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ── 15. Contact Section ──────────────────────────────────── */
.contact-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(249,115,22,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact-zakelijk-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-zakelijk-info { flex: 1; }
.contact-overline { color: rgba(249,115,22,0.9) !important; }
.contact-heading { color: var(--white); }
.contact-lead { color: rgba(255,255,255,0.72); font-size: 1rem; max-width: 440px; margin: 0.5rem 0 1.5rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 1rem;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--accent); }
.contact-link svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact-zakelijk-form { flex: 1; }

/* Contact form */
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.form-group input,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.14);
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  text-align: center;
  margin-top: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ── 16. Footer ───────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-grid--zakelijk { grid-template-columns: 1fr; }

.footer-brand .logo-text { color: var(--white); font-size: 1.15rem; }
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin: 0.5rem 0 1.25rem;
}
.footer-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 2;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.6rem;
}
.footer-contact-item a { color: inherit; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-consumer-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-consumer-link:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: inherit; transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── 17. Floating WhatsApp Button ────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid var(--whatsapp);
  animation: wa-pulse 2.4s ease-out infinite;
  opacity: 0;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.9); opacity: 0.8; }
  80%  { transform: scale(1.5); opacity: 0; }
  100% { opacity: 0; }
}
.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.fab-tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--navy-dark);
}
.whatsapp-fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ── 18. Back to Top ──────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 98px; right: 30px;
  z-index: 800;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--accent); }
.back-to-top svg { width: 20px; height: 20px; }

/* ── 19. Scroll Animations ────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 550ms ease, transform 550ms ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.services-grid .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.services-grid .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.services-grid .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.services-grid .animate-on-scroll:nth-child(5) { transition-delay: 320ms; }
.services-grid .animate-on-scroll:nth-child(6) { transition-delay: 400ms; }
.steps-wrapper .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.steps-wrapper .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.steps-wrapper .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }

/* ── 20. Responsive — 640px+ ─────────────────────────────── */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-tag { display: inline-block; }
  .stats-grid {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: stretch;
    align-items: stretch;
  }
  .stat-item { min-width: 0; padding: 0.5rem 1rem; }
  .stat-divider { display: block; }
}

/* ── 21. Responsive — 768px+ ─────────────────────────────── */
@media (min-width: 768px) {
  .container { padding: 0 2rem; }

  /* Hero — side by side at tablet */
  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  .hero-content { flex: 1; max-width: none; }
  .hero-portal-card { flex: 0 0 360px; width: 360px; max-width: 360px; }

  /* Steps — horizontal with dashed connector */
  .steps-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    position: relative;
  }
  .steps-wrapper::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(16.66%);
    right: calc(16.66%);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
    z-index: 0;
  }
  .steps-wrapper--four::before {
    left: calc(12.5%);
    right: calc(12.5%);
  }
  .step { flex: 1; }

  /* Portaal section */
  .portaal-inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  .portaal-features { flex: 0 0 300px; }
  .portaal-mockup { flex: 1; }

  /* About */
  .about-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .about-photos { flex: 0 0 260px; }
  .about-content { flex: 1; }

  /* Contact */
  .contact-zakelijk-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .contact-details { flex-direction: column; }

  /* Footer */
  .footer-grid--zakelijk { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ── 22. Responsive — 1024px+ ────────────────────────────── */
@media (min-width: 1024px) {
  /* Nav — only switch to desktop nav here because Zakelijk has 6 links + 2 buttons
     which physically can't fit the navbar below ~1024px */
  .hamburger { display: none; }
  .nav-overlay { display: none !important; }
  #nav-menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    transform: none !important;
    height: auto;
    width: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    gap: 0.05rem;
  }
  #nav-menu .nav-link { font-size: 0.82rem; padding: 0.4rem 0.45rem; }
  #nav-menu li.nav-cta { display: none; }
  .nav-inloggen { display: inline-flex; font-size: 0.82rem; padding: 0.5rem 1rem; }
  .nav-inner > .nav-cta { display: inline-flex; margin-left: 0.35rem; font-size: 0.82rem; padding: 0.5rem 1rem; }
  .nav-inner { gap: 1rem; }

  /* Services — 3 columns */
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  /* Hero — larger portal card */
  .hero-portal-card { flex: 0 0 440px; width: 440px; max-width: 440px; }

  /* Portaal section */
  .portaal-inner { gap: 4rem; }
  .portaal-features { flex: 0 0 380px; }
  .portaal-mockup { flex: 1; }

  /* About/Contact — wider spacing */
  .about-grid { gap: 4rem; }
  .about-photos { flex: 0 0 300px; }
  .contact-zakelijk-inner { gap: 4rem; }
}

/* ── 23. Mobile Optimizations (≤ 639px) ──────────────────── */
@media (max-width: 639px) {
  .section { padding: 2.75rem 0; }
  .section-header { margin-bottom: 1.75rem; }

  /* ── Hero ── */
  .hero-section {
    padding-top: calc(var(--nav-h) + 1.25rem);
    padding-bottom: 2.5rem;
  }
  .hero-grid { gap: 2rem; }
  .hero-content h1 { font-size: clamp(1.45rem, 6vw, 1.9rem); }
  .hero-lead { font-size: 0.93rem; margin-bottom: 1.25rem; }

  /* Badges — scrollable row */
  .trust-badges { flex-wrap: nowrap; gap: 0.35rem; overflow-x: auto; padding-bottom: 2px; -webkit-overflow-scrolling: touch; }
  .badge { font-size: 0.72rem; padding: 0.22rem 0.55rem; white-space: nowrap; flex-shrink: 0; }

  /* CTA buttons — full-width stacked to prevent overflow */
  .hero-ctas { flex-direction: column; gap: 0.6rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 0.8rem 1rem; font-size: 0.9rem; }

  /* Portal mockup in hero — keep it visible but compact */
  .hero-portal-card { max-width: 100%; }
  .portal-card__body { height: 220px; }
  .portal-sidebar { width: 90px; }

  /* ── Stats — 3 columns ── */
  .stats-bar { padding: 1.4rem 0; }
  .stat-divider { display: none; }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    flex-direction: unset;
  }
  .stat-item { min-width: 0; padding: 0; }
  .stat-value { font-size: 1.45rem; }
  .stat-label { font-size: 0.65rem; }

  /* ── Services — 2×2 ── */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .service-card { padding: 1.2rem 1rem; gap: 0.65rem; }
  .service-card h3 { font-size: 0.88rem; }
  .service-card p { font-size: 0.8rem; }
  .service-icon { width: 42px; height: 42px; }

  /* ── Process ── */
  .steps-wrapper { gap: 1.5rem; }
  .step p { max-width: 100%; font-size: 0.85rem; }

  /* ── Portal section ── */
  .portaal-inner { gap: 2rem; }
  .portal-full__body { height: 240px; }
  .portal-sidebar--lg { width: 115px; }

  /* ── Contact form ── */
  .contact-form { padding: 1.5rem 1.25rem; }
  .contact-zakelijk-inner { gap: 2rem; }

  /* ── Footer ── */
  footer { padding: 2.5rem 0 1.5rem; }
  .footer-grid--zakelijk { gap: 1.75rem; grid-template-columns: 1fr; }
}

/* ── 24. Print ────────────────────────────────────────────── */
@media print {
  .whatsapp-fab, .back-to-top, #scroll-progress, header { display: none; }
  body { padding-top: 0; }
}
