/* ─────────────────────────────────────────
   styles.css — Snelversimpeld.nl
   ───────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700;9..144,900&family=Inter:wght@400;500;600&family=Caveat:wght@600&display=swap');

/* ── Custom properties ── */
:root {
  --accent:        #C4572A;
  --accent-dark:   #7A2E0E;
  --accent-light:  #F5E6DF;
  --accent-mid:    #E07B50;
  --text:          #1C1814;
  --text-muted:    #6B5E57;
  --bg:            #FAF8F5;
  --bg-white:      #FFFFFF;
  --border:        rgba(196, 87, 42, 0.15);
  --font-serif:    'Fraunces', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;
  --max-w:         1120px;
  --nav-h:         64px;
  --gap:           clamp(32px, 5vw, 64px);
}

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

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(250, 248, 245, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

.nav-logo em {
  font-style: normal;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.18s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a:hover { color: var(--text); }

.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 201;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    font-size: 1.4rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-links a { font-size: 1.2rem; }

  .nav-links.open { transform: translateX(0); }
}

/* ═══════════════════════════════════════
   FLOATING PILL NAV
   Altijd zichtbaar (subtiel) en klikbaar.
   Wordt sterker / volledig opaak na ~80px scrollen of bij hover.
   Desktop: rechtsboven. Mobiel: onderaan gecentreerd.
═══════════════════════════════════════ */
.pill-nav {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 300;
  opacity: 0.62;
  pointer-events: auto;
  transition: opacity .35s ease;
  width: max-content;
  max-width: calc(100vw - 24px);
}

.pill-nav:hover { opacity: 1; }

.pill-nav.is-visible { opacity: 1; }

.pill-nav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 7px 7px 20px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px) saturate(130%);
  -webkit-backdrop-filter: blur(8px) saturate(130%);
  border: 1px solid rgba(28, 24, 20, 0.04);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 4px 14px rgba(28, 24, 20, 0.06);
  transition: background .35s ease, backdrop-filter .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.pill-nav.is-visible .pill-nav-inner {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-color: rgba(28, 24, 20, 0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.55) inset,
    0 10px 30px rgba(28, 24, 20, 0.10),
    0 2px 8px rgba(28, 24, 20, 0.05);
}

.pill-logo {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.03em;
  white-space: nowrap;
  margin-right: 6px;
  transition: opacity .18s;
}

.pill-logo em {
  font-style: normal;
  color: var(--accent);
}

.pill-logo:hover { opacity: 0.7; }

.pill-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pill-links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}

.pill-links a:hover {
  color: var(--text);
  background: rgba(196, 87, 42, 0.07);
}

.pill-links a.is-active {
  color: var(--accent);
  background: var(--accent-light);
}

.pill-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  margin-left: 4px;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 2px 10px rgba(196, 87, 42, 0.25);
  white-space: nowrap;
}

.pill-cta:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 87, 42, 0.35);
}

.pill-cta.is-active {
  background: var(--accent-dark);
  color: #fff;
}

/* ── Mobiel: pill onderaan, gecentreerd ── */
@media (max-width: 720px) {
  .pill-nav {
    top: auto;
    bottom: 1.25rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100vw - 16px);
  }
  .pill-nav-inner {
    padding: 5px;
    gap: 2px;
  }
  .pill-logo { display: none; }
  .pill-links a {
    padding: 11px 12px;
    font-size: 0.78rem;
    min-height: 44px;
  }
  .pill-cta {
    padding: 11px 14px;
    font-size: 0.78rem;
    min-height: 44px;
    margin-left: 2px;
  }
}

@media (max-width: 380px) {
  .pill-links a {
    padding: 11px 9px;
    font-size: 0.74rem;
  }
  .pill-cta {
    padding: 11px 12px;
    font-size: 0.74rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pill-nav { transition: opacity .18s ease; }
  .pill-nav-inner { transition: none; }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--text);
  padding: 64px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-logo {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.footer-logo em {
  font-style: normal;
  color: var(--accent-mid);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 260px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-nav a:hover { color: rgba(255,255,255,0.9); }

.footer-email {
  font-size: 0.875rem;
  color: var(--accent-light);
}

.footer-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 16px;
}

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════
   SHARED TYPOGRAPHY UTILITIES
═══════════════════════════════════════ */
.overline {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.overline--light { color: rgba(255,255,255,0.55); }

.section-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text);
}

.section-heading--light { color: #fff; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 52ch;
}

.section-sub--light { color: rgba(255,255,255,0.65); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  position: relative;
  transition: gap 0.2s;
}

.link-arrow::after { content: '→'; }

.link-arrow::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.link-arrow:hover { gap: 11px; }
.link-arrow:hover::before { width: calc(100% - 18px); }

.link-arrow--light { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════
   INDEX — HERO
═══════════════════════════════════════ */
.hero {
  padding: 120px 0 140px;
  min-height: 100vh;
  background: #1a1410;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-heading {
  font-family: var(--font-serif);
  font-weight: 900;
  font-variation-settings: 'opsz' 80;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-heading span { display: block; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 40ch;
  margin-bottom: 40px;
  line-height: 1.65;
}

/* Hero full-bleed photo */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 28% 45%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.42) 100%);
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 680px; }

.hero .overline       { color: rgba(255,255,255,0.78); }
.hero .hero-heading   {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.35);
}
.hero .hero-sub       {
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}

/* Right panel: terracotta card with inbox mockup */
.hero-right-panel {
  background: var(--accent-light);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}

/* Decorative circles inside the panel */
.hero-panel-deco {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.07;
  pointer-events: none;
}

/* Keep .hero-right as alias for backwards compat on other pages */
.hero-right {
  background: var(--accent-light);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  overflow: hidden;
}

/* Mini flow preview inside hero */
.hero-preview {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 280px;
}

.hero-preview-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.65);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.hero-preview-step + .hero-preview-step {
  margin-top: -1px;
  border-top: 1px solid rgba(196, 87, 42, 0.1);
}

.hero-preview-step:first-child { border-radius: 10px 10px 4px 4px; }
.hero-preview-step:last-child  { border-radius: 4px 4px 10px 10px; }

.hero-preview-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.hero-preview-icon--gmail    { background: #fce8e6; }
.hero-preview-icon--calendar { background: #e8f0fe; }
.hero-preview-icon--check    { background: #e6f4ea; }

.hero-preview-connector {
  width: 2px;
  height: 20px;
  background: var(--accent);
  opacity: 0.3;
  margin-left: 32px;
}

.hero-preview-label {
  flex: 1;
}

.hero-preview-label strong {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
}

.hero-preview-label span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.hero-preview-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  white-space: nowrap;
}

.hero-preview-badge--green { background: #34a853; }

/* ═══════════════════════════════════════
   INDEX — FLOW SECTION ("Hoe het werkt")
═══════════════════════════════════════ */
.flow-section {
  padding: 112px 0;
  background: var(--bg-white);
  overflow: hidden;
}

.flow-header {
  margin-bottom: 72px;
}

.flow-header .section-heading {
  max-width: 14ch;
  margin-bottom: 16px;
}

.flow-track-wrapper {
  position: relative;
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

/* The connecting line */
.flow-track::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--accent-light);
  z-index: 0;
}

/* The animated dot */
.flow-dot {
  position: absolute;
  top: 19px;
  left: 40px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 1;
  opacity: 0;
  transition: none;
}

.flow-track.animate .flow-dot {
  animation: flowDot 3.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes flowDot {
  0%   { left: 40px;            opacity: 0;   transform: scale(0.5); }
  8%   { opacity: 1;            transform: scale(1); }
  88%  { opacity: 1; }
  96%  { left: calc(100% - 40px); transform: scale(1); }
  100% { left: calc(100% - 40px); opacity: 0;   transform: scale(0.5); }
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 20px 0 0;
  cursor: default;
  position: relative;
}

.flow-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg);
  border: 2px solid var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.flow-step:hover .flow-step-icon {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-3px);
}

.flow-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step-name {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text);
  margin-bottom: 6px;
}

.flow-step-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 140px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.flow-step:hover .flow-step-detail {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   INDEX — SERVICES TEASER
═══════════════════════════════════════ */
.services-teaser {
  padding: 96px 0;
  background: var(--bg);
}

.services-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.service-item:first-child { border-top: 1px solid var(--border); }

.service-item-num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
  width: 24px;
  padding-top: 2px;
}

.service-item-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.service-item-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.services-teaser-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20px;
}

.services-teaser-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 20ch;
}

/* ═══════════════════════════════════════
   INDEX — ABOUT TEASER
═══════════════════════════════════════ */
.about-teaser {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 60% 80% at 110% 0%, rgba(255,255,255,0.07), transparent 60%),
    radial-gradient(ellipse 50% 60% at -10% 100%, rgba(0,0,0,0.14), transparent 65%),
    var(--accent);
  position: relative;
  overflow: hidden;
}

.about-teaser > .container { position: relative; z-index: 2; }

/* ── Grote decoratieve vormen op de achtergrond ── */
.about-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.about-shape--ring-lg {
  width: 420px;
  height: 420px;
  top: -130px;
  right: -110px;
}

.about-shape--orb-white {
  width: 240px;
  height: 240px;
  top: 40%;
  left: -90px;
  transform: translateY(-50%);
}

.about-shape--ring-sm {
  width: 160px;
  height: 160px;
  bottom: -50px;
  left: 38%;
}

.about-shape--orb-dark {
  width: 180px;
  height: 180px;
  bottom: -70px;
  right: 18%;
}

.about-shape--wave {
  width: 220px;
  height: 70px;
  top: 18%;
  left: 36%;
  opacity: 0.55;
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}

/* ── Foto-wrapper met handgeschreven signature ── */
.about-photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.about-signature {
  position: absolute;
  bottom: -22px;
  left: -18px;
  font-family: 'Caveat', cursive;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent-dark);
  padding: 6px 22px 4px;
  border-radius: 4px;
  transform: rotate(-4deg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  white-space: nowrap;
  z-index: 2;
}

.about-signature::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.about-teaser .section-heading {
  color: #fff;
  margin-bottom: 20px;
}

.about-teaser .section-sub {
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
}

.about-names {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.about-name-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

.about-visual {
  position: relative;
  height: 320px;
}

.about-photo-placeholder {
  width: 200px;
  height: 280px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  position: absolute;
}

.about-photo-placeholder:first-child { left: 0; top: 0; }
.about-photo-placeholder:last-child  { left: 100px; top: 40px; border: 2px solid rgba(255,255,255,0.2); }

.about-thijs-photo {
  width: 280px;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.30);
  display: block;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   INDEX — CONTACT CTA
═══════════════════════════════════════ */
.contact-cta {
  padding: 96px 0;
  background: var(--bg-white);
}

.contact-cta-inner {
  max-width: 640px;
}

.contact-cta .section-heading {
  margin-bottom: 16px;
}

.contact-cta .section-sub {
  margin-bottom: 36px;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 2px solid var(--accent-light);
  padding-bottom: 4px;
  transition: border-color 0.2s;
}

.contact-email-link:hover { border-color: var(--accent); }

/* ═══════════════════════════════════════
   DIENSTEN PAGE
═══════════════════════════════════════ */
.page-header {
  padding: 80px 0 64px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.page-header .section-heading {
  margin-top: 12px;
  margin-bottom: 16px;
}

.dienst {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}

.dienst:nth-child(even) {
  background: var(--bg-white);
}

.dienst-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 40px;
}

.dienst-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  padding-top: 6px;
  user-select: none;
}

.dienst-content .section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.dienst-body {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin-bottom: 32px;
}

/* Fictional case block */
.case-block {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
  margin-bottom: 32px;
  max-width: 600px;
}

.case-block-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.case-block-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.case-block-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.case-block-stat strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-serif);
}

.dienst-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}

.dienst-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.dienst-step::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 700;
}

/* ═══════════════════════════════════════
   VOOR WIE PAGE
═══════════════════════════════════════ */
.branch-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}

.branch-section:nth-child(even) { background: var(--bg-white); }

.branch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}

.branch-problem {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.branch-problem-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.branch-problem p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.65;
}

.branch-solution {
  margin-top: 24px;
  background: var(--accent-light);
  border-radius: 12px;
  padding: 28px;
}

.branch-solution-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.branch-solution p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   OVER ONS PAGE
═══════════════════════════════════════ */
.over-hero {
  padding: 96px 0 80px;
  background: var(--accent);
  color: #fff;
}

.over-hero .section-heading {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-top: 12px;
  margin-bottom: 20px;
  max-width: 18ch;
}

.over-hero .section-sub {
  color: rgba(255,255,255,0.7);
  max-width: 50ch;
}

.over-team {
  padding: 96px 0;
  background: var(--bg-white);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: 56px;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  background: var(--accent-light);
  margin-bottom: 24px;
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--accent-light);
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.team-photo-placeholder span {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.team-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.over-story {
  padding: 96px 0;
  background: var(--bg);
}

.over-story-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--gap);
  align-items: start;
}

.over-story-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.over-story-text p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-page {
  padding: 96px 0;
  background: var(--bg-white);
}

.contact-page-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-heading {
  margin-bottom: 16px;
}

.contact-info .section-sub {
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-item a {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.18s, background 0.18s;
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--bg-white);
}

.form-group textarea { min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: -8px;
}

/* ═══════════════════════════════════════
   FEATURE ROWS — zigzag layout (index)
═══════════════════════════════════════ */
.feature-section {
  padding: 96px 0;
}
.feature-section--white { background: var(--bg-white); }
.feature-section--tint  { background: var(--bg); }

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-text .section-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 12px;
  margin-bottom: 14px;
}

.feature-text .section-sub {
  margin-bottom: 28px;
}

.feature-inner--reversed .feature-text   { order: 2; }
.feature-inner--reversed .feature-visual { order: 1; }

.feature-all-link {
  display: flex;
  justify-content: center;
  padding: 0 0 96px;
  background: var(--bg-white);
}

/* ═══════════════════════════════════════
   UI MOCKUPS — shared chrome
═══════════════════════════════════════ */
.mock-window {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e4ded9;
  box-shadow: 0 8px 32px rgba(28,24,20,0.10), 0 1px 4px rgba(28,24,20,0.05);
  overflow: hidden;
  font-family: var(--font-sans);
  font-size: 0.82rem;
}

.mock-titlebar {
  background: #f5f2ef;
  border-bottom: 1px solid #e4ded9;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #febc2e; }
.mock-dot:nth-child(3) { background: #28c840; }

.mock-titlebar-name {
  margin-left: 8px;
  font-size: 0.72rem;
  color: #9c8f87;
  font-weight: 500;
}

/* Labels */
.mock-label {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.64rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.mock-label--red    { background: #fce8e6; color: #c5221f; }
.mock-label--orange { background: #fef3e0; color: #b06000; }
.mock-label--green  { background: #e6f4ea; color: #137333; }
.mock-label--gray   { background: #f1f1f1; color: #5f6368; }
.mock-label--blue   { background: #e8f0fe; color: #1a73e8; }
.mock-label--teal   { background: var(--accent-light); color: var(--accent-dark); }

/* Avatars */
.mock-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; text-transform: uppercase;
}
.mock-avatar--b { background: #e8f0fe; color: #1a73e8; }
.mock-avatar--g { background: #e6f4ea; color: #137333; }
.mock-avatar--p { background: #f3e8fd; color: #7b1fa2; }
.mock-avatar--y { background: #fef3e0; color: #b06000; }

/* Status dots */
.mock-status { display: inline-flex; align-items: center; gap: 5px; font-size: 0.72rem; font-weight: 600; white-space: nowrap; }
.mock-status-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.mock-status--green  { color: #137333; } .mock-status--green  .mock-status-dot { background: #34a853; }
.mock-status--orange { color: #b06000; } .mock-status--orange .mock-status-dot { background: #fa7b17; }
.mock-status--gray   { color: #5f6368; } .mock-status--gray   .mock-status-dot { background: #b0b0b0; }

/* ── INBOX ── */
.mock-inbox-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px 8px; border-bottom: 1px solid #f0ebe7;
}
.mock-inbox-title { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.mock-inbox-badge { font-size: 0.65rem; font-weight: 700; background: var(--accent); color: #fff; padding: 2px 8px; border-radius: 100px; }

.mock-inbox-row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  gap: 10px; align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #f5f1ee;
}
.mock-inbox-row--unread { background: #fffbf9; }
.mock-inbox-row--unread .mock-sender { font-weight: 700; }

.mock-row-body { overflow: hidden; min-width: 0; }
.mock-sender {
  display: block; font-size: 0.79rem; font-weight: 500; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-subject {
  display: block; font-size: 0.72rem; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-time { font-size: 0.68rem; color: #b0a49c; white-space: nowrap; flex-shrink: 0; }

/* ── SPREADSHEET ── */
.mock-sheets-bar {
  background: #f8f6f3; border-bottom: 1px solid #e4ded9;
  padding: 8px 14px;
  display: flex; align-items: center; gap: 12px;
}
.mock-sheets-icon {
  width: 16px; height: 16px; border-radius: 3px;
  background: #34a853; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mock-sheets-icon::after {
  content: ''; display: block;
  width: 7px; height: 7px;
  border: 1.5px solid rgba(255,255,255,0.8); border-radius: 1px;
}
.mock-sheets-filename { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.mock-sheets-menu { display: flex; gap: 10px; margin-left: 6px; }
.mock-sheets-menu span { font-size: 0.68rem; color: var(--text-muted); }

.mock-table-scroll { overflow-x: auto; }
.mock-table { width: 100%; border-collapse: collapse; font-size: 0.75rem; }
.mock-table th {
  background: #f3f0ec;
  padding: 7px 10px; text-align: left; font-weight: 600;
  font-size: 0.69rem; color: #6b5e57;
  border-bottom: 1px solid #e4ded9;
  border-right: 1px solid #ece8e4;
  white-space: nowrap; user-select: none;
}
.mock-table td {
  padding: 7px 10px;
  border-bottom: 1px solid #f2eee9; border-right: 1px solid #f2eee9;
  color: var(--text); white-space: nowrap;
}
.mock-table tr:nth-child(even) td { background: #faf8f5; }
.mock-table .row-num { color: #b0a49c; font-size: 0.66rem; text-align: center; background: #f3f0ec; width: 24px; }

/* ── CRM CARD ── */
.mock-crm-body { padding: 20px; }
.mock-crm-profile {
  display: flex; gap: 14px; align-items: center;
  padding-bottom: 16px; border-bottom: 1px solid #f0ebe7; margin-bottom: 16px;
}
.mock-crm-avatar-lg {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-light); color: var(--accent-dark);
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; text-transform: uppercase;
}
.mock-crm-name { font-weight: 700; font-size: 0.9rem; color: var(--text); margin-bottom: 2px; }
.mock-crm-meta { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }
.mock-crm-status { margin-left: auto; flex-shrink: 0; }

.mock-tl-label {
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px;
}
.mock-timeline { display: flex; flex-direction: column; }
.mock-tl-item {
  display: flex; gap: 12px;
  padding-bottom: 14px; position: relative;
}
.mock-tl-item:not(:last-child)::before {
  content: ''; position: absolute;
  left: 9px; top: 18px; bottom: 0;
  width: 1px; background: #f0ebe7;
}
.mock-tl-dot {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--accent); background: var(--accent-light);
  flex-shrink: 0; margin-top: 1px;
}
.mock-tl-dot--done    { background: var(--accent); }
.mock-tl-dot--pending { background: #f5f2ef; border-color: #d6cec8; }

.mock-tl-action { font-size: 0.78rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.mock-tl-when   { font-size: 0.69rem; color: var(--text-muted); }
.mock-tl-when--auto { color: var(--accent); font-weight: 500; }

/* ── DASHBOARD TILES ── */
.mock-dash-body {
  padding: 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.mock-dash-tile {
  background: var(--bg); border: 1px solid #ece8e4;
  border-radius: 10px; padding: 14px 14px 12px;
}
.mock-dash-label { font-size: 0.67rem; color: var(--text-muted); font-weight: 500; margin-bottom: 6px; line-height: 1.3; }
.mock-dash-val {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 900;
  color: var(--text); line-height: 1; margin-bottom: 6px;
}
.mock-dash-val--accent { color: var(--accent); }
.mock-dash-trend { display: flex; align-items: center; gap: 3px; font-size: 0.69rem; font-weight: 600; }
.mock-dash-trend--up  { color: #137333; }
.mock-dash-trend--neu { color: var(--text-muted); }
.mock-bars { display: flex; align-items: flex-end; gap: 3px; height: 32px; margin-top: 8px; }
.mock-bar  { flex: 1; border-radius: 2px 2px 0 0; background: var(--accent-light); min-width: 4px; }
.mock-bar--hi { background: var(--accent); }

/* ═══════════════════════════════════════
   ACCENT SCRIPT & SCROLL ANIMATIONS
═══════════════════════════════════════ */
.accent-script {
  font-family: 'Caveat', cursive;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--accent);
  display: inline-block;
  position: relative;
  line-height: 1;
}

.swoosh {
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: -10px;
  width: calc(100% + 6px);
  height: 14px;
  overflow: visible;
  pointer-events: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.in-view { opacity: 1; transform: none; }
.fade-up--d1 { transition-delay: 0.10s; }
.fade-up--d2 { transition-delay: 0.20s; }
.fade-up--d3 { transition-delay: 0.30s; }
.fade-up--d4 { transition-delay: 0.40s; }
.fade-up--d5 { transition-delay: 0.50s; }
.fade-up--d6 { transition-delay: 0.60s; }

/* ═══════════════════════════════════════
   HERO — photo version (overrides)
═══════════════════════════════════════ */
/* hero-blob: subtle background decoration */
.hero-blob {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ═══════════════════════════════════════
   FLOW SECTION — big-number grid redesign
═══════════════════════════════════════ */
.flow-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.flow-step-big {
  padding: 36px 32px 32px;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.flow-step-big:hover {
  background: #fefaf8;
}

.flow-step-big:nth-child(3n)   { border-right: none; }
.flow-step-big:nth-child(n+4)  { border-bottom: none; }

.flow-ghost-num {
  font-family: var(--font-serif);
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.07;
  position: absolute;
  top: -10px;
  right: 12px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.flow-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.flow-step-big h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.flow-step-big p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 24ch;
}

/* ═══════════════════════════════════════
   FULLBLEED QUOTE SECTIE
═══════════════════════════════════════ */
.fullbleed-photo {
  background: var(--text);
  height: 460px;
  display: flex;
  align-items: center;
}

.fullbleed-content {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.fullbleed-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 24px;
}

.fullbleed-quote em {
  font-style: normal;
  color: var(--accent-light);
}

.fullbleed-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 42ch;
}

/* ═══════════════════════════════════════
   FEATURE SECTIONS — enhanced with blobs
═══════════════════════════════════════ */
.feature-visual {
  position: relative;
}

.blob-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.feature-visual .mock-window {
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-visual .mock-window:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(28,24,20,0.13), 0 2px 6px rgba(28,24,20,0.05);
}

.feature-photo-stack {
  position: relative;
  margin-bottom: 20px;
}

.feature-photo-stack img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 200px;
  display: block;
  transition: transform 0.5s ease;
}

.feature-photo-stack:hover img {
  transform: scale(1.03);
}

.feature-photo-stack-overflow {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 200px;
}

/* ═══════════════════════════════════════
   ABOUT TEASER — updated
═══════════════════════════════════════ */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}

.about-teaser-img {
  width: 280px;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  opacity: 0.8;
  flex-shrink: 0;
}

/* accent decoration line */
.accent-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   RESPONSIVE — 1024px
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    padding: 96px 0 112px;
  }

  .hero-left {
    padding-right: 40px;
  }

  .services-teaser-inner {
    gap: 48px;
  }

  .feature-inner { gap: 48px; }

  .about-teaser-grid { grid-template-columns: 1fr; }
  .about-teaser-img  { display: none; }

  .flow-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-step-big:nth-child(3n) { border-right: 1px solid var(--border); }
  .flow-step-big:nth-child(2n) { border-right: none; }
  .flow-step-big:nth-child(n+4) { border-bottom: 1px solid var(--border); }
  .flow-step-big:nth-child(n+5) { border-bottom: none; }

  .fullbleed-photo { height: 380px; }

  .over-story-inner {
    grid-template-columns: 1fr;
  }

  .over-story-inner .section-heading { max-width: 100%; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 56px; }

  .hero { padding: 80px 0 100px; }

  .about-teaser-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-thijs-photo {
    width: 180px;
    height: 220px;
  }

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

  .hero-heading { font-size: 2.2rem; }

  .flow-track {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px 16px;
  }

  .flow-track::before { display: none; }
  .flow-dot { display: none; }

  .flow-step { padding: 0; }

  .flow-step-detail {
    opacity: 1;
    transform: none;
    max-width: none;
  }

  .services-teaser-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .branch-inner {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-nav { align-items: flex-start; }

  .dienst-inner {
    grid-template-columns: 1fr;
  }

  .dienst-number { display: none; }

  .over-story-inner {
    grid-template-columns: 1fr;
  }

  .feature-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-inner--reversed .feature-text   { order: 1; }
  .feature-inner--reversed .feature-visual { order: 2; }

  .feature-all-link { padding: 0 0 64px; }

  .mock-dash-body { grid-template-columns: 1fr 1fr; }

  .hero-right-panel { padding: 28px 20px; }

  .flow-steps-grid { grid-template-columns: 1fr 1fr; border-radius: 12px; }
  .flow-step-big { padding: 24px 20px; }
  .flow-ghost-num { font-size: 3.5rem; }

  .fullbleed-photo { height: 320px; }
  .fullbleed-quote { font-size: 1.5rem; }

  .about-teaser-img { display: none; }
}

/* ═══════════════════════════════════════
   STATS COUNTER BAR
═══════════════════════════════════════ */
.stats-bar {
  padding: 56px 0;
  background: var(--text);
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--accent-mid);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}

.stat-suffix {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-mid);
  vertical-align: super;
  font-size: 0.6em;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  display: block;
}

@media (max-width: 768px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .stat-item:nth-child(2)::before { display: none; }
  .stat-item:nth-child(3) { grid-column: 1 / -1; }
  .stat-item:nth-child(3)::before { display: none; }
}

/* ═══════════════════════════════════════
   TABBED DEMO SECTION
═══════════════════════════════════════ */
.demo-section {
  padding: 96px 0;
  background: var(--bg-white);
}

.demo-header {
  margin-bottom: 48px;
}

.demo-header .section-heading {
  margin-top: 8px;
  margin-bottom: 0;
}

.demo-tab-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.demo-tab-btn {
  padding: 9px 22px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.demo-tab-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.demo-tab-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.demo-panel { display: none; }

.demo-panel.active {
  display: block;
  animation: panelFade 0.3s ease;
}

@keyframes panelFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Inbox demo: split list + detail pane */
.inbox-demo {
  display: grid;
  grid-template-columns: 340px 1fr;
  border: 1px solid #e4ded9;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgba(28,24,20,0.09);
  min-height: 380px;
}

.inbox-demo-list {
  border-right: 1px solid #f0ebe7;
  overflow: hidden;
}

.inbox-demo-titlebar {
  background: #f5f2ef;
  border-bottom: 1px solid #e4ded9;
  padding: 9px 14px;
  display: flex; align-items: center; gap: 6px;
}

.inbox-demo-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px 8px;
  border-bottom: 1px solid #f0ebe7;
}

.inbox-demo-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px; align-items: center;
  padding: 11px 14px;
  border-bottom: 1px solid #f5f1ee;
  cursor: pointer;
  transition: background 0.15s;
}

.inbox-demo-row:hover  { background: #faf6f3; }
.inbox-demo-row.active { background: var(--accent-light); border-left: 3px solid var(--accent); padding-left: 11px; }
.inbox-demo-row--unread .inbox-dr-sender { font-weight: 700; }

.inbox-dr-body { overflow: hidden; min-width: 0; }
.inbox-dr-sender { display: block; font-size: 0.78rem; font-weight: 500; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.inbox-dr-subject { display: block; font-size: 0.7rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Detail pane */
.inbox-detail {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-sans);
  font-size: 0.82rem;
}

.inbox-detail-empty {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: auto;
  text-align: center;
  opacity: 0.5;
}

.inbox-detail-header {
  border-bottom: 1px solid #f0ebe7;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.inbox-detail-subject {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.inbox-detail-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.inbox-detail-body {
  font-size: 0.83rem;
  color: var(--text);
  line-height: 1.7;
  white-space: pre-line;
  flex: 1;
  margin-bottom: 20px;
}

.inbox-detail-automations {
  background: var(--accent-light);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.inbox-detail-automation-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.inbox-detail-auto-item {
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 500;
}

.inbox-detail-auto-item::before {
  content: '→ ';
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 768px) {
  .inbox-demo { grid-template-columns: 1fr; }
  .inbox-demo-list { border-right: none; border-bottom: 1px solid #f0ebe7; }
  .inbox-detail { display: none; }
  .inbox-detail.mobile-visible { display: flex; }
}

/* ═══════════════════════════════════════
   CALCULATOR SECTION
═══════════════════════════════════════ */
.calc-section {
  padding: 96px 0;
  background: var(--bg);
}

.calc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.calc-title {
  font-family: var(--font-serif);
  font-variation-settings: 'opsz' 36;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.calc-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-row-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.calc-row-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.calc-row-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-serif);
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: var(--accent-light);
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(196,87,42,0.3);
  transition: transform 0.15s;
}

.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.calc-result-card {
  background: var(--accent);
  border-radius: 20px;
  padding: 40px 36px;
  color: #fff;
  text-align: center;
}

.calc-result-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  display: block;
}

.calc-result-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.calc-result-unit {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  display: block;
}

.calc-result-breakdown {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .calc-inner { gap: 48px; }
}

@media (max-width: 768px) {
  .calc-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════
   HOVER MICRO-INTERACTIONS
═══════════════════════════════════════ */
.form-submit, .contact-email-link, .demo-tab-btn {
  position: relative;
  overflow: hidden;
}

.flow-step-big {
  transition: background 0.2s, transform 0.2s;
}

.flow-step-big:hover {
  background: #fefaf8;
  transform: translateY(-3px);
}

/* Scale-in for mockups on scroll */
.scale-in {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.in-view {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ═══════════════════════════════════════
   DEMO PANEL LAYOUT
═══════════════════════════════════════ */
.demo-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.demo-panel-text {
  padding-top: 8px;
}

.demo-panel-heading {
  font-family: var(--font-serif);
  font-variation-settings: 'opsz' 36;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.022em;
  line-height: 1.18;
  margin: 12px 0 14px;
}

.demo-panel-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.demo-feature-list {
  list-style: none;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.demo-feature-list li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}

.demo-feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.demo-panel-visual {
  position: relative;
}

@media (max-width: 1024px) {
  .demo-panel-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .demo-panel-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ═══════════════════════════════════════
   ZO WERKT HET — Geanimeerde sectie
═══════════════════════════════════════ */
.hw-section {
  padding: 96px 0;
  background: #F2EDEA;
}

.hw-hdr {
  margin-bottom: 52px;
}

.hw-wrap {
  max-width: 900px;
  margin: 0 auto;
}

/* Stage card */
.hw-stage {
  background: var(--bg-white);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(28,24,20,0.09), 0 1px 4px rgba(28,24,20,0.05);
  padding: 40px 36px 32px;
  position: relative;
  overflow: hidden;
  transition: opacity 0.42s ease;
}

.hw-stage.hw-fading { opacity: 0; pointer-events: none; }

/* Flying envelope — starts off-screen left, absolute in stage */
.hw-env {
  position: absolute;
  top: 38%;
  left: -70px;
  transform: translateY(-50%) rotate(-6deg) scale(0.85);
  opacity: 0;
  z-index: 20;
  pointer-events: none;
  filter: drop-shadow(0 6px 16px rgba(196,87,42,0.28));
}

.hw-stage.hw-step-1 .hw-env {
  animation: hwEnvFly 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

/* Keep envelope in landed position steps 2-4 but hidden */
.hw-stage.hw-step-2 .hw-env,
.hw-stage.hw-step-3 .hw-env,
.hw-stage.hw-step-4 .hw-env {
  left: 17%;
  opacity: 0;
  transform: translateY(-50%) scale(1);
  transition: opacity 0.3s ease;
}

@keyframes hwEnvFly {
  0%   { left: -70px;  opacity: 0; transform: translateY(-50%) rotate(-6deg) scale(0.85); }
  35%  { opacity: 1; }
  82%  { left: 18%;   transform: translateY(-50%) rotate(2deg) scale(1.07); }
  100% { left: 17%;   opacity: 1; transform: translateY(-50%) rotate(0deg) scale(1); }
}

/* Zones grid: zone | conn | zone | conn | zone */
.hw-zones {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  align-items: center;
}

/* Single zone */
.hw-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 22px 14px 18px;
  border-radius: 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  min-height: 172px;
  transition: border-color 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
}

/* Zone highlights driven by step classes */
.hw-stage.hw-step-1 .hw-zone--inbox,
.hw-stage.hw-step-2 .hw-zone--inbox,
.hw-stage.hw-step-3 .hw-zone--inbox,
.hw-stage.hw-step-4 .hw-zone--inbox {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,87,42,0.10);
  background: var(--accent-light);
}

.hw-stage.hw-step-3 .hw-zone--sheet,
.hw-stage.hw-step-4 .hw-zone--sheet {
  border-color: #34a853;
  box-shadow: 0 0 0 3px rgba(52,168,83,0.10);
  background: #f0faf1;
}

.hw-stage.hw-step-4 .hw-zone--phone {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,87,42,0.10);
  background: var(--accent-light);
}

.hw-zone-ico { flex-shrink: 0; }

.hw-zone-lbl {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Mail card inside inbox zone */
.hw-mail-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 9px;
  text-align: left;
  opacity: 0;
  transform: translateY(5px) scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Appears with envelope in step 1, stays visible from step 2+ */
.hw-stage.hw-step-1 .hw-mail-card {
  opacity: 1;
  transform: none;
  transition-delay: 0.55s;
}

.hw-stage.hw-step-2 .hw-mail-card,
.hw-stage.hw-step-3 .hw-mail-card,
.hw-stage.hw-step-4 .hw-mail-card {
  opacity: 1;
  transform: none;
}

.hw-mc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 2px;
}

.hw-mc-from {
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hw-mc-tag {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 100px;
  background: #fef3e0;
  color: #b06000;
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hw-stage.hw-step-2 .hw-mc-tag,
.hw-stage.hw-step-3 .hw-mc-tag,
.hw-stage.hw-step-4 .hw-mc-tag {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.1s;
}

.hw-mc-sub {
  font-size: 0.59rem;
  color: var(--text-muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Connector arrows */
.hw-conn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hw-conn-svg { display: block; overflow: visible; }

.hw-aln {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  transition: stroke-dashoffset 0.55s ease;
}

.hw-ahd {
  opacity: 0;
  transition: opacity 0.25s ease 0.50s;
}

.hw-stage.hw-step-3 .hw-aln--1,
.hw-stage.hw-step-4 .hw-aln--1 { stroke-dashoffset: 0; }

.hw-stage.hw-step-3 .hw-ahd--1,
.hw-stage.hw-step-4 .hw-ahd--1 { opacity: 1; }

.hw-stage.hw-step-4 .hw-aln--2 { stroke-dashoffset: 0; }
.hw-stage.hw-step-4 .hw-ahd--2 { opacity: 1; }

/* Spreadsheet rows */
.hw-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hw-row {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 0.59rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(52,168,83,0.07);
}

.hw-row--new {
  background: rgba(52,168,83,0.22);
  color: #1a5c2a;
  font-weight: 700;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.4s ease 0.22s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
}

.hw-stage.hw-step-3 .hw-row--new,
.hw-stage.hw-step-4 .hw-row--new {
  opacity: 1;
  transform: none;
}

/* Phone notification */
.hw-notif {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  background: var(--text);
  color: #fff;
  border-radius: 9px;
  padding: 7px 9px;
  font-size: 0.59rem;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  transition: opacity 0.4s ease 0.12s, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s;
}

.hw-notif-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-mid);
  flex-shrink: 0;
}

.hw-stage.hw-step-4 .hw-notif {
  opacity: 1;
  transform: none;
}

/* Phone shake at step 4 */
.hw-stage.hw-step-4 .hw-pico {
  animation: hwPhoneShake 0.5s ease 0.1s;
}

@keyframes hwPhoneShake {
  0%,100% { transform: rotate(0); }
  20%     { transform: rotate(-10deg) scale(1.12); }
  40%     { transform: rotate(10deg) scale(1.12); }
  60%     { transform: rotate(-6deg); }
  80%     { transform: rotate(5deg); }
}

/* Step captions */
.hw-captions {
  position: relative;
  margin-top: 28px;
  min-height: 26px;
  text-align: center;
}

.hw-cap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hw-cap b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-style: normal;
}

.hw-stage.hw-step-1 .hw-cap--1,
.hw-stage.hw-step-2 .hw-cap--2,
.hw-stage.hw-step-3 .hw-cap--3,
.hw-stage.hw-step-4 .hw-cap--4 { opacity: 1; }

/* Progress dots */
.hw-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.hw-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(196,87,42,0.22);
  transition: background 0.3s ease, transform 0.3s ease;
  display: block;
  flex-shrink: 0;
}

.hw-dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

/* Prefers reduced motion: skip animation, show final state */
@media (prefers-reduced-motion: reduce) {
  .hw-env { display: none !important; }
  .hw-stage,
  .hw-stage * { animation: none !important; transition: none !important; }
  .hw-mail-card { opacity: 1 !important; transform: none !important; }
  .hw-mc-tag    { opacity: 1 !important; transform: scale(1) !important; }
  .hw-aln       { stroke-dashoffset: 0 !important; }
  .hw-ahd       { opacity: 1 !important; }
  .hw-row--new  { opacity: 1 !important; transform: none !important; }
  .hw-notif     { opacity: 1 !important; transform: none !important; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hw-section { padding: 80px 0; }
}

@media (max-width: 768px) {
  .hw-section { padding: 64px 0; }
  .hw-stage { padding: 24px 18px 20px; }

  /* Stack zones vertically, hide connectors */
  .hw-zones {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hw-conn { display: none; }

  .hw-zone {
    min-height: auto;
    flex-direction: row;
    text-align: left;
    padding: 14px;
    gap: 12px;
    align-items: flex-start;
  }

  .hw-zone > div:not(.hw-zone-ico) { flex: 1; min-width: 0; }

  .hw-env { display: none !important; }

  .hw-cap { white-space: normal; text-align: center; width: 90%; }
  .hw-captions { min-height: 44px; }
}

/* ═══════════════════════════════════════
   PUNT 2 — Levendigere visuele elementen
═══════════════════════════════════════ */

/* Flow step cards: oranje gloed + rand-accent op hover */
.flow-step-big:hover {
  box-shadow: 0 10px 36px rgba(196,87,42,0.13);
}

.flow-step-big:hover .flow-step-badge {
  animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: var(--accent-dark);
}

@keyframes badgePop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.30); }
  100% { transform: scale(1); }
}

/* Ghost-nummers iets zichtbaarder */
.flow-ghost-num { opacity: 0.09; }

/* Accent-lijn: uitschuiven op hover */
.accent-line {
  transition: width 0.35s ease, opacity 0.35s ease;
}

.feature-text:hover .accent-line,
.demo-panel-text:hover .accent-line {
  width: 72px;
  opacity: 1;
}

/* Demo-tabs: iets omhoog bij hover + schaduw op actief */
.demo-tab-btn {
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}

.demo-tab-btn:hover {
  transform: translateY(-2px);
}

.demo-tab-btn.active {
  box-shadow: 0 4px 16px rgba(196,87,42,0.25);
}

/* Calculator-resultaat kaart: lift op hover */
.calc-result-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.calc-result-card:hover {
  box-shadow: 0 24px 64px rgba(196,87,42,0.32);
  transform: translateY(-5px);
}

/* Stat-items: checkmark schaalt licht op hover */
.stat-item .stat-num {
  display: block;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s;
}

.stat-item:hover .stat-num {
  transform: scale(1.18);
  color: var(--accent-light);
}

/* Overline: subtiel oplichten op hover */
.overline {
  transition: letter-spacing 0.3s ease;
}

section:hover > .container > .demo-header .overline,
section:hover > .container > .hw-hdr .overline,
section:hover > .container > .flow-header .overline {
  letter-spacing: 0.16em;
}

/* Nav-links: oranje underline op hover */
.nav-links a:hover {
  color: var(--accent);
}

/* Feature-visual mock-window: iets meer schaduw standaard */
.feature-visual .mock-window {
  box-shadow: 0 10px 40px rgba(28,24,20,0.10), 0 2px 6px rgba(28,24,20,0.05);
}

/* Fullbleed quote link-arrow icoontje pulseren */
.fullbleed-content .link-arrow--light:hover {
  gap: 14px;
}

/* Demo-panel: accent-line oranje al zichtbaar */
.demo-panel.active .accent-line {
  opacity: 1;
}

/* hw-zone iconen: subtiele scale bij zone-highlight */
.hw-stage.hw-step-1 .hw-zone--inbox .hw-zone-ico,
.hw-stage.hw-step-3 .hw-zone--sheet .hw-zone-ico,
.hw-stage.hw-step-4 .hw-zone--phone .hw-zone-ico {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(1.12);
}

/* Maatwerk-tab: zelfde animatie als andere panels */
#demo-maatwerk.active {
  animation: panelFade 0.3s ease;
}

