/* ============================================
   NoMoreManual — Stylesheet
   ============================================ */

/* --- TOKENS --- */
:root {
  --black:       #0A0A0A;
  --dark:        #111111;
  --dark-card:   #1A1A1A;
  --white:       #FFFFFF;
  --cream:       #F5F4EF;
  --cream-dark:  #ECEAE3;
  --accent:      #1EE07A;
  --accent-dim:  #17B863;
  --gray-100:    #F0EFE9;
  --gray-200:    #DDDBD4;
  --gray-500:    #888880;
  --gray-700:    #444440;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-pad:    120px;
  --container-max:  1200px;
  --container-pad:  40px;
  --radius:         12px;
  --radius-sm:      8px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* --- LAYOUT --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: var(--black);
}
.btn--primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30, 224, 122, 0.25);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(0, 0, 0, 0.22);
}
.btn--ghost-dark:hover {
  border-color: rgba(0, 0, 0, 0.55);
  background: rgba(0, 0, 0, 0.04);
}
.btn--small  { padding: 10px 20px; font-size: 14px; }
.btn--large  { padding: 18px 36px; font-size: 17px; }

/* --- SECTIONS --- */
.section { padding: var(--section-pad) 0; }
.section--dark  { background: var(--dark);  color: var(--white); }
.section--light { background: var(--cream); color: var(--black); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section--light .section-label { color: var(--accent-dim); }

.section-heading {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 56px;
}
.section-heading--tight { margin-bottom: 32px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 16px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.nav__logo-mark {
  flex-shrink: 0;
}
.nav__logo-text { display: flex; align-items: center; }
.nav__logo-manual { color: var(--accent); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links > a:not(.btn) {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.nav__links > a:not(.btn):hover { color: var(--white); }
.nav__links > a.active { color: var(--white); }

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}
.nav__mobile a:hover { color: var(--accent); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 160px 0 120px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(30, 224, 122, 0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__heading {
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.hero__sub {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 44px;
  max-width: 460px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero flow visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flow-diagram {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 40px;
}
.flow-diagram__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 28px;
}
.flow-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
}
.flow-row:last-child { margin-bottom: 0; }
.flow-node {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}
.flow-node--accent {
  background: rgba(30, 224, 122, 0.1);
  border-color: rgba(30, 224, 122, 0.3);
  color: var(--accent);
}
.flow-node__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}
.flow-node--accent .flow-node__label { color: rgba(30, 224, 122, 0.6); }
.flow-arrow {
  width: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.flow-arrow::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: flowDot 2.4s ease-in-out infinite;
  opacity: 0;
}
.flow-arrow:nth-child(2)::after { animation-delay: 0s; }
.flow-arrow:nth-child(4)::after { animation-delay: 0.8s; }
.flow-row:nth-child(3) .flow-arrow::after { animation-delay: 1.6s; }

@keyframes flowDot {
  0%   { opacity: 0; transform: translateX(-8px); }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(8px); }
}
.flow-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 16px 0;
}
.flow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
.flow-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ============================================
   PROBLEM
   ============================================ */
.problem .section-heading { margin-bottom: 48px; }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.problem__item {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.problem__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.problem__icon { display: flex; align-items: center; color: var(--gray-700); }
.problem__item p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.55;
}
.problem__statement {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.problem__statement p {
  font-size: 20px;
  line-height: 1.65;
  color: var(--gray-700);
}

/* ============================================
   DIENSTEN
   ============================================ */
.diensten__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.dienst-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 48px 44px;
  transition: background 0.2s ease;
}
.dienst-card:hover { background: rgba(255, 255, 255, 0.07); }
.dienst-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.dienst-card__number {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.dienst-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.dienst-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 24px;
  font-size: 16px;
}
.dienst-card p:last-child { margin-bottom: 0; }
.dienst-card__list { display: flex; flex-direction: column; gap: 9px; }
.dienst-card__list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.dienst-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  top: 1px;
}

/* ============================================
   CASES
   ============================================ */
.cases__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.cases__header .section-heading { margin-bottom: 0; }
.cases__intro {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  padding-bottom: 4px;
}
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
}

/* Filled case card (voor later) */
.case-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.2s;
  min-height: 280px;
}
.case-card:hover { background: rgba(255, 255, 255, 0.07); }
.case-card__tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Empty placeholder state */
.case-card--empty {
  align-items: center;
  justify-content: center;
  text-align: center;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.1);
  cursor: default;
}
.case-card--empty:hover { background: rgba(255, 255, 255, 0.04); }
.case-card--empty .case-card__tag {
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 8px;
}
.case-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.case-card__placeholder-icon { color: rgba(255, 255, 255, 0.15); }
.case-card__placeholder p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

/* Filled card elements (voor wanneer cases worden toegevoegd) */
.case-card__client {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}
.case-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.case-card__result {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-card__result-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.case-card__result-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 991px) {
  .cases__header { grid-template-columns: 1fr; gap: 16px; }
  .cases__grid   { grid-template-columns: 1fr; }
}

/* ============================================
   DIENST DETAIL (diensten.html)
   ============================================ */
.dienst-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.dienst-detail__inner--reversed { direction: rtl; }
.dienst-detail__inner--reversed > * { direction: ltr; }

.dienst-detail__text .section-heading { margin-bottom: 24px; }
.dienst-detail__text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 16px;
}
.section--dark .dienst-detail__text p { color: rgba(255,255,255,0.6); }

/* Flow steps visual */
.detail-flow {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.detail-flow__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
}
.detail-flow__step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}
.detail-flow__step--accent .detail-flow__step-num {
  background: rgba(30,224,122,0.15);
  border-color: rgba(30,224,122,0.3);
  color: var(--accent);
}
.detail-flow__step-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}
.detail-flow__step-content strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.detail-flow__step-content span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}
.detail-flow__connector {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.08);
  margin-left: 15px;
}

/* Applicatie examples */
.dienst-detail__examples {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 90px;
}
.detail-example {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.detail-example:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.detail-example strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--black);
}
.detail-example p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-700);
  margin: 0;
}

/* Flow example visual */
.flow-example {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-example__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}
.flow-example__node {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px 16px;
  position: relative;
}
.flow-example__node--trigger {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}
.flow-example__node--done {
  border-color: rgba(30, 224, 122, 0.25);
  background: rgba(30, 224, 122, 0.06);
}
.flow-example__node--done .flow-example__node-icon { color: var(--accent); }
.flow-example__node--done .flow-example__node-title { color: var(--accent); }
.flow-example__node-icon {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  display: flex;
}
.flow-example__node-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.flow-example__node-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.flow-example__node-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.flow-example__node-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.flow-example__node-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.flow-example__node-status--live {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 224, 122, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
.flow-example__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 28px;
  position: relative;
  margin-left: 22px;
}
.flow-example__arrow-line {
  width: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
}
.flow-example__arrow-dot {
  position: absolute;
  top: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: flowDown 2.4s ease-in-out infinite;
  opacity: 0;
  margin-left: -2.5px;
}
@keyframes flowDown {
  0%   { opacity: 0; top: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; top: 100%; }
}
.flow-example__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.flow-example__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
.flow-example__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
.flow-example__runs {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* App example visual (mock UI) */
.app-example {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.app-example__bar {
  background: var(--dark);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-example__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.app-example__title {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-left: 4px;
  font-weight: 500;
}
.app-example__body {
  padding: 24px;
}
.app-example__heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}
.app-example__field {
  margin-bottom: 12px;
}
.app-example__field-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
.app-example__field-input {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--gray-700);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-example__field-input--filled {
  color: var(--black);
  font-weight: 500;
}
.app-example__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.app-example__submit {
  background: var(--accent);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 6px;
  margin-top: 4px;
  display: inline-block;
}
.app-example__result {
  background: rgba(30, 224, 122, 0.08);
  border: 1px solid rgba(30, 224, 122, 0.2);
  border-radius: 6px;
  padding: 12px 14px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-example__result-label { font-size: 12px; color: var(--gray-500); }
.app-example__result-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-dim);
  letter-spacing: -0.02em;
}
.app-example__footer-note {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 6px;
}
.app-example__footer-note::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* App section (applicaties in de praktijk) */
.app-section__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.app-section__text .section-heading { margin-bottom: 20px; }
.app-section__text > p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 28px;
}
.app-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.app-chip {
  display: inline-block;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}
.app-chip:hover {
  border-color: var(--accent-dim);
  color: var(--black);
  background: rgba(23, 184, 99, 0.05);
}

/* Make app-example look better in the light section */
.section--light .app-example {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
}
.section--light .app-example__result-value {
  color: var(--accent-dim);
}

@media (max-width: 991px) {
  .app-section__top { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   INSPECTIE MOCK
   ============================================ */
.insp-mock {
  display: flex;
  flex-direction: column;
  gap: 0;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.12));
}

/* App bar */
.insp-mock__bar {
  background: var(--dark);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* Body */
.insp-mock__body {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: none;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Progress bar */
.insp-progress__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.insp-progress__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.insp-progress__count {
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
}
.insp-progress__bar {
  height: 5px;
  background: var(--gray-200);
  border-radius: 100px;
  overflow: hidden;
}
.insp-progress__fill {
  height: 100%;
  width: 83%;
  background: var(--accent);
  border-radius: 100px;
}

/* Checklist items */
.insp-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.insp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 6px;
}
.insp-item--ok   { background: rgba(30,224,122,0.05); }
.insp-item--warn { background: rgba(255,160,0,0.07); }
.insp-item--open { background: var(--gray-100); }

.insp-item__check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insp-item__check--ok   { background: var(--accent); }
.insp-item__check--warn { background: #F59E0B; }
.insp-item__check--open {
  border: 2px solid var(--gray-200);
  background: transparent;
}

.insp-item__label {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}
.insp-item--open .insp-item__label { color: var(--gray-500); }

.insp-item__status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 100px;
}
.insp-item__status--ok   { background: rgba(30,224,122,0.15); color: var(--accent-dim); }
.insp-item__status--warn { background: rgba(245,158,11,0.15); color: #B45309; }
.insp-item__status--open { background: var(--gray-200); color: var(--gray-500); }

/* Submit row */
.insp-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}
.insp-submit__photos {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-500);
}
.insp-submit__btn {
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: default;
}

/* Export to Excel */
.insp-export {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.insp-export__arrow {
  color: var(--accent-dim);
  padding: 6px 0;
  display: flex;
  align-items: center;
}
.insp-export__sheet {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.insp-export__sheet-header {
  background: #1D6F42;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.insp-export__live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
}
.insp-export__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7EE8A2;
  animation: pulse 2s ease-in-out infinite;
}
.insp-export__row {
  display: grid;
  grid-template-columns: 60px 1fr 48px 1fr;
  gap: 0;
  padding: 7px 14px;
  font-size: 12px;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}
.insp-export__row:last-child { border-bottom: none; }
.insp-export__row--header {
  background: #E8F4EC;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1D6F42;
}
.insp-export__row--new {
  background: rgba(30,224,122,0.06);
  font-weight: 500;
  color: var(--black);
  animation: rowFlash 2s ease-in-out 0.5s both;
}
@keyframes rowFlash {
  0%   { background: rgba(30,224,122,0.25); }
  100% { background: rgba(30,224,122,0.06); }
}
.insp-ok   { color: var(--accent-dim); font-weight: 700; }
.insp-warn { color: #B45309; font-weight: 700; }

@media (max-width: 991px) {
  .dienst-detail__inner { grid-template-columns: 1fr; gap: 48px; }
  .dienst-detail__inner--reversed { direction: ltr; }
  .dienst-detail__examples { padding-top: 0; }
}

/* ============================================
   VOOR WIE
   ============================================ */
.voor-wie__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.voor-wie__text .section-heading { margin-bottom: 28px; }
.voor-wie__text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 16px;
}
.voor-wie__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 90px;
}
.wie-card {
  background: var(--white);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.wie-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-700);
  font-style: italic;
}

/* ============================================
   WERKWIJZE
   ============================================ */
.werkwijze .section-heading { margin-bottom: 56px; }
.werkwijze__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 60px;
}
.stap { display: flex; gap: 20px; }
.stap__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dim);
  background: rgba(23, 184, 99, 0.10);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.stap__content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.stap__content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
}

/* ============================================
   USPs / WAAROM
   ============================================ */
.usps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.usp {
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s;
}
.usp:hover { background: rgba(255, 255, 255, 0.04); }
.usp__icon {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: currentColor;
}
.usp h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.usp p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESULTATEN
   ============================================ */
.resultaten__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.resultaat {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--gray-100);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.resultaat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}
.resultaat__icon {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--gray-700);
}
.resultaat h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.resultaat p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
}

/* ============================================
   FAQ
   ============================================ */
.faq .section-heading { margin-bottom: 48px; }
.faq__list {
  max-width: 760px;
}
.faq__item { border-bottom: 1px solid var(--gray-200); }
.faq__item:first-child { border-top: 1px solid var(--gray-200); }
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  color: var(--black);
  gap: 20px;
}
.faq__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--accent-dim);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq__answer.open {
  max-height: 300px;
  padding-bottom: 28px;
}
.faq__answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta { padding: 140px 0; }
.cta__inner { text-align: center; }
.cta__inner h2 {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.cta__inner p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060606;
  color: rgba(255, 255, 255, 0.45);
  padding: 52px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.footer__logo {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  text-decoration: none;
  display: flex;
  margin-bottom: 6px;
}
.footer__brand p { font-size: 13px; }
.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 14px;
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--white); }
.footer__copy { font-size: 13px; }

/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 160px 0 48px;
}
.page-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.page-hero__heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 700px;
}
.page-hero__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  line-height: 1.65;
}

/* Reduce gap when diensten section directly follows page-hero */
.page-hero + .section,
.page-hero + .section--dark {
  padding-top: 64px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  :root {
    --section-pad: 80px;
    --container-pad: 28px;
  }
  .hero__inner       { grid-template-columns: 1fr; }
  .hero__visual      { display: none; }
  .problem__grid     { grid-template-columns: repeat(2, 1fr); }
  .diensten__grid    { grid-template-columns: 1fr; }
  .dienst-card--wide { grid-column: auto; grid-template-columns: 1fr; gap: 20px; }
  .voor-wie__inner   { grid-template-columns: 1fr; gap: 48px; }
  .voor-wie__cards   { padding-top: 0; }
  .werkwijze__steps  { grid-template-columns: repeat(2, 1fr); }
  .usps__grid        { grid-template-columns: repeat(2, 1fr); }
  .resultaten__grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px; --container-pad: 20px; }
  .hero          { padding: 120px 0 80px; }
  .hero__sub     { font-size: 17px; }
  .nav__links    { display: none; }
  .nav__hamburger { display: flex; }
  .problem__grid  { grid-template-columns: 1fr; }
  .werkwijze__steps { grid-template-columns: 1fr; }
  .usps__grid     { grid-template-columns: 1fr; }
  .resultaten__grid { grid-template-columns: 1fr; }
  .hero__actions  { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__inner  { flex-direction: column; text-align: center; }
  .footer__nav    { justify-content: center; }
  .usp            { padding: 28px 24px; }
  .stap           { flex-direction: row; }
}
