/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #ff6602;
  --orange-dark: #e55a00;
  --orange-light: #ffeee6;
  --orange-accessible: #b54f00;
  --dark: #1c1510;
  --dark-2: #221b14;
  --dark-card: #181210;
  --gray: #6e7481;
  --gray-light: #f5f2ee;
  --border: #e8e2da;
  --white: #ffffff;
  --cream: #faf9f7;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(28,21,16,0.06);
  --shadow-lg: 0 16px 56px rgba(28,21,16,0.13);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 5.8vw, 4.1rem); line-height: 1.08; font-weight: 800; letter-spacing: -0.028em; }
h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.8vw, 2.7rem); line-height: 1.14; font-weight: 700; letter-spacing: -0.018em; }
h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
p  { color: var(--gray); line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-accessible);
  background: var(--orange-light);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.section-label--dark {
  background: rgba(255,102,2,0.12);
  color: #ff8533;
}

.section-sub {
  max-width: 560px;
  margin: 14px auto 0;
  text-align: center;
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: var(--font);
}
.btn--sm { padding: 8px 18px; font-size: 0.875rem; }
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,102,2,0.3); }
.btn--ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: #c0c5cc; background: var(--gray-light); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,249,247,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}
.nav__links li a:hover { color: var(--dark); }
.nav__links li .btn--primary,
.nav__links li .btn--primary:hover { color: var(--white); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border: 1.5px solid rgba(255,102,2,0.25);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.nav__toggle:hover {
  background: rgba(255,102,2,0.18);
  border-color: rgba(255,102,2,0.45);
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: all 0.28s ease;
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: calc(var(--nav-h) + 108px) 0 108px;
  background: linear-gradient(118deg, #fff5ef 0%, #ffd8b0 28%, #ff9448 62%, #ff6602 100%);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero .container {
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

/* ===== HERO TWO-COLUMN LAYOUT ===== */
.hero__layout {
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero__left {
  flex: 1;
  min-width: 0;
}

.hero__content {
  max-width: 580px;
}


.hero__em {
  font-style: italic;
  color: var(--orange);
}

.hero__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dark);
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.6);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.hero h1 { color: var(--dark); line-height: 0.95; }

.hero__sub {
  font-size: 1.1rem;
  color: rgba(13,9,6,0.65);
  max-width: 500px;
  margin: 28px 0 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero .btn--ghost {
  color: var(--dark);
  border-color: rgba(13,9,6,0.25);
}
.hero .btn--ghost:hover {
  border-color: rgba(13,9,6,0.45);
  background: rgba(13,9,6,0.06);
}

.hero__quickscan-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(13,9,6,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.hero__quickscan-link:hover { color: var(--dark); }

/* ===== GRATIS QUICKSCAN SECTIE ===== */
.qs-cta {
  padding: 112px 0;
  background: #0d0906;
}

.qs-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.qs-cta__text .section-label {
  color: var(--orange);
  background: rgba(255,102,2,0.15);
  border-color: rgba(255,102,2,0.3);
}

.qs-cta__text h2 {
  color: #ffffff;
  margin: 12px 0 20px;
}

.qs-cta__text p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.qs-cta__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qs-cta__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.qs-cta__bullets li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  background-color: var(--orange);
}

.qs-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qs-form label {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.qs-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  border-radius: var(--radius-md);
}

.qs-form input::placeholder { color: rgba(255,255,255,0.3); }

.qs-form input:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,102,2,0.2);
}

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

/* ===== QUICKSCAN STANDALONE PAGINA ===== */
.qs-page {
  padding: calc(var(--nav-h) + 80px) 0 100px;
  background: #0d0906;
  min-height: 100vh;
}

.qs-page__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.qs-page__text h1 {
  color: #ffffff;
  margin: 12px 0 20px;
}

.qs-page__intro {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Reuse qs-cta__bullets in dark context */
.qs-page__text .qs-cta__bullets li { color: rgba(255,255,255,0.75); }

.qs-page__quote {
  margin-top: 36px;
  border-left: 3px solid var(--orange);
  padding-left: 20px;
}
.qs-page__quote p {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 8px;
}
.qs-page__quote span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}

.qs-form--page {
  background: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  padding: 40px;
}

.qs-form__header {
  margin-bottom: 24px;
}
.qs-form__header h2 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.qs-form__header p {
  font-size: 0.88rem;
  color: var(--gray);
}

.qs-form--page label { color: var(--dark); }
.qs-form--page input {
  background: var(--gray-light);
  border: 1px solid var(--border);
  color: var(--dark);
}
.qs-form--page input::placeholder { color: var(--gray); }
.qs-form--page input:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,102,2,0.12);
}

.qs-form__disclaimer {
  font-size: 0.72rem;
  color: var(--gray);
  text-align: center;
  margin-top: 8px;
}
.qs-form__disclaimer a { color: var(--gray); text-decoration: underline; }

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

/* ===== HERO USP KAARTEN (rechts) ===== */
.hero__usps {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.hero__usp-card:nth-child(1) { transition-delay: 0ms; }
.hero__usp-card:nth-child(2) { transition-delay: 140ms; }
.hero__usp-card:nth-child(3) { transition-delay: 280ms; }

.hero__usp-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero__usp-card:hover {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.hero__usp-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero__usp-icon svg {
  width: 22px;
  height: 22px;
}

.hero__usp-text {
  flex: 1;
  min-width: 0;
}

.hero__usp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 3px;
}

.hero__usp-lbl {
  font-size: 0.8rem;
  color: rgba(13,9,6,0.5);
  line-height: 1.3;
}

@media (max-width: 860px) {
  .hero__layout {
    flex-direction: column;
    gap: 40px;
  }
  .hero__usps {
    flex: none;
    width: 100%;
  }
}

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 0;
  background: var(--white);
}

.problem__inner { text-align: center; }
.problem__inner h2 {
  color: var(--dark);
  margin-bottom: 52px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.problem__list {
  max-width: 700px;
  margin: 52px auto 0;
  text-align: left;
}

.problem__item {
  border-bottom: 1px solid var(--border);
}

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

.problem__item-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.problem__item-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gray);
  min-width: 22px;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

.problem__item--active .problem__item-num {
  color: var(--orange);
}

.problem__item-title {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.problem__item-chevron {
  color: var(--gray);
  flex-shrink: 0;
  transition: transform 0.35s ease, color 0.3s ease;
}

.problem__item--active .problem__item-chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

.problem__item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem__item--active .problem__item-body {
  max-height: 160px;
}

.problem__item-body p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  padding: 0 0 20px 42px;
}

.problem__item-progress {
  height: 2px;
  background: var(--border);
  overflow: hidden;
  margin-bottom: 0;
}

.problem__item-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--orange);
}

@keyframes problem-progress {
  from { width: 0% }
  to   { width: 100% }
}

.problem__item--active .problem__item-progress-bar {
  animation: problem-progress 6s linear forwards;
}

/* ===== SERVICES ===== */
.services {
  padding: 112px 0;
  background: var(--white);
}

.services__header {
  text-align: center;
  margin-bottom: 56px;
}
.services__header h2 { margin-bottom: 0; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  color: var(--dark);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255,102,2,0.1);
  border-color: rgba(255,102,2,0.3);
}

.service-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}

.service-card--featured:hover {
  box-shadow: 0 12px 40px rgba(255,102,2,0.18), 0 0 0 3px var(--orange-light);
}

.service-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.service-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.service-card__num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.06em;
  opacity: 0.5;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0;
  line-height: 1.25;
}

.service-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.65;
  flex: 1;
}

.service-card__footer {
  margin-top: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange-accessible);
}

/* ===== BLOB ANIMATIES ===== */
@keyframes float-blob-main {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, calc(-50% - 20px)) scale(1.06); }
}
@keyframes float-blob-sm1 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes float-blob-sm2 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Verticale centrering + blob-achtergrond mockup in hero */
.hero--service .hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Grote centrale orb */
.hero--service .hero__right::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 380px;
  top: 50%;
  left: 50%;
  background: radial-gradient(ellipse at center,
    rgba(255,102,2,0.7) 0%,
    rgba(255,120,30,0.4) 40%,
    transparent 72%);
  border-radius: 50%;
  filter: blur(48px);
  z-index: 0;
  pointer-events: none;
  animation: float-blob-main 7s ease-in-out infinite;
}

/* Kleine orb rechtsboven */
.hero--service .hero__right::after {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  top: 6%;
  right: 4%;
  background: rgba(255,160,50,0.75);
  border-radius: 50%;
  filter: blur(22px);
  z-index: 0;
  pointer-events: none;
  animation: float-blob-sm1 5s ease-in-out infinite;
}

/* Derde orb linksonder */
.hero__right--blobs .svc-hero-mockup::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  bottom: -15px;
  left: -25px;
  background: rgba(255,130,30,0.65);
  border-radius: 50%;
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
  animation: float-blob-sm2 6s ease-in-out 1s infinite;
}

/* ===== SERVICE HERO MOCKUP (rechts in hero--service) ===== */
.svc-hero-mockup {
  position: relative;
  z-index: 1;
  width: 100%;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center center;
  filter: drop-shadow(0 32px 72px rgba(0,0,0,0.55)) drop-shadow(0 4px 20px rgba(255,102,2,0.25));
}

.hero__right:hover .svc-hero-mockup {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.svc-hero-mockup .svc-frame {
  background: rgba(255,255,255,0.97);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(255,255,255,0.18) inset;
  width: 100%;
}

.svc-hero-mockup .svc-bar {
  background: #ede8e3;
  padding: 11px 16px;
}

.svc-body--hero {
  padding: 22px 22px 20px !important;
  gap: 14px !important;
}

.svc-body--hero .svc-report-header { height: 36px; border-radius: 8px; }
.svc-body--hero .svc-dot { width: 12px; height: 12px; }
.svc-body--hero .svc-line { height: 10px; border-radius: 5px; }
.svc-body--hero .svc-tag { font-size: 0.62rem; padding: 4px 10px; }
.svc-body--hero .svc-btn-mock { height: 28px; border-radius: 7px; width: 55%; }
.svc-body--hero .svc-node { padding: 8px 14px; font-size: 0.7rem; border-radius: 7px; }
.svc-body--hero .svc-flow { gap: 8px; }
.svc-body--hero .svc-arrow { font-size: 1rem; }
.svc-body--hero .svc-input { padding: 9px 12px; border-radius: 8px; margin-top: 6px; }
.svc-body--hero .svc-input__btn { width: 26px; height: 26px; border-radius: 6px; }
.svc-body--hero .svc-msg__bubble { font-size: 0.68rem; padding: 9px 13px; }
.svc-body--hero .svc-chat { gap: 10px; }

/* ===== SERVICE CARD MOCKUPS ===== */
.svc-mockup {
  margin: -36px -36px 20px;
  background: var(--orange-light);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 20px 18px 14px;
}

.service-card--featured .svc-mockup {
  background: #ffe8d6;
}

.svc-frame {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  border: 1px solid rgba(0,0,0,0.06);
}

/* Titlebar */
.svc-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: #f5f3f0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.svc-bar span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.14);
  flex-shrink: 0;
}
.svc-bar__title {
  flex: 1;
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--gray);
  text-align: center;
  letter-spacing: 0.01em;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
}
.svc-status {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

/* Body */
.svc-body {
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* ── SCAN RAPPORT ── */
.svc-report-header {
  height: 22px;
  background: linear-gradient(90deg, var(--orange) 0%, #ff9448 100%);
  border-radius: 5px;
  margin-bottom: 4px;
}
.svc-report-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.svc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-dot--hi  { background: var(--orange); }
.svc-dot--mid { background: #ffb84d; }

.svc-line {
  flex: 1;
  height: 6px;
  background: #f0ede9;
  border-radius: 3px;
}
.svc-line--lg { max-width: 100%; }
.svc-line--md { max-width: 80%; }
.svc-line--sm { max-width: 60%; }

.svc-tag {
  font-size: 0.48rem;
  font-weight: 700;
  background: var(--orange-light);
  color: var(--orange);
  padding: 2px 6px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-tag--muted {
  background: #fff6e0;
  color: #cc8800;
}
.svc-btn-mock {
  height: 16px;
  width: 60%;
  background: var(--orange);
  border-radius: 5px;
  margin-top: 4px;
  opacity: 0.85;
}

/* ── WORKFLOW ── */
.svc-flow, .svc-flow-sub {
  display: flex;
  align-items: center;
  gap: 5px;
}
.svc-flow-sub { opacity: 0.55; }

.svc-node {
  background: var(--orange-light);
  border: 1px solid rgba(255,102,2,0.25);
  border-radius: 5px;
  padding: 4px 7px;
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-node--ai {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.svc-node--sm {
  padding: 3px 5px;
  font-size: 0.46rem;
}
.svc-arrow {
  font-size: 0.7rem;
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 700;
}
.svc-arrow--sm { font-size: 0.58rem; }
.svc-flow-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--orange-light), transparent);
  border-radius: 4px;
  margin-top: 4px;
  opacity: 0.6;
}

/* ── DASHBOARD ── */
.svc-dash-stats {
  display: flex;
  align-items: center;
  background: #faf8f5;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 8px;
  padding: 10px 4px;
}
.svc-dash-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 8px;
}
.svc-dash-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}
.svc-dash-lbl {
  font-size: 0.5rem;
  color: rgba(13,9,6,0.45);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
.svc-dash-divider {
  width: 1px;
  height: 28px;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.svc-dash-chart {
  background: #faf8f5;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 8px;
  padding: 10px 12px 6px;
}
.svc-dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 52px;
}
.svc-dash-bar {
  flex: 1;
  background: var(--orange-light);
  border-radius: 3px 3px 0 0;
  min-height: 4px;
}
.svc-dash-bar--hi {
  background: var(--orange);
}
.svc-dash-chart-label {
  font-size: 0.48rem;
  color: rgba(13,9,6,0.35);
  font-weight: 500;
  margin-top: 5px;
  text-align: right;
}

.svc-dash-flows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.svc-dash-flow {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #faf8f5;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 6px;
  padding: 6px 10px;
}
.svc-dash-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
.svc-dash-flow-name {
  flex: 1;
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--dark);
}
.svc-dash-flow-count {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-light);
  padding: 2px 6px;
  border-radius: 99px;
}

/* ── CHAT ── */
.svc-chat {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.svc-msg {
  display: flex;
}
.svc-msg--in  { justify-content: flex-start; }
.svc-msg--out { justify-content: flex-end; }

.svc-msg__bubble {
  max-width: 82%;
  padding: 7px 11px;
  font-size: 0.6rem;
  line-height: 1.45;
  border-radius: 12px;
}
.svc-msg--in .svc-msg__bubble {
  background: #f0ede9;
  color: var(--dark);
  border-radius: 12px 12px 12px 3px;
}
.svc-msg--out .svc-msg__bubble {
  background: var(--orange);
  color: #fff;
  border-radius: 12px 12px 3px 12px;
}

.svc-input {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  background: #f5f3f0;
  border-radius: 6px;
  padding: 5px 8px;
}
.svc-input__text {
  flex: 1;
  height: 6px;
  background: #ddd9d4;
  border-radius: 3px;
}
.svc-input__btn {
  width: 16px; height: 16px;
  background: var(--orange);
  border-radius: 4px;
  flex-shrink: 0;
}

/* ===== COMPARE ===== */
.compare {
  padding: 112px 0;
  background: var(--white);
}

.compare__header {
  text-align: center;
  margin-bottom: 56px;
}

.compare__table {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.compare__head {
  display: grid;
  grid-template-columns: 1fr 130px 130px;
  background: var(--gray-light);
  padding: 14px 28px;
  align-items: center;
}

.compare__head-us {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--orange-accessible);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare__head-other {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare__row {
  display: grid;
  grid-template-columns: 1fr 130px 130px;
  padding: 18px 28px;
  align-items: center;
  border-top: 1px solid var(--border);
  background: var(--white);
  transition: background 0.15s;
}

.compare__row:hover { background: #fafaf9; }

.compare__feat {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}

.compare__check,
.compare__cross {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-shrink: 0;
}

.compare__check {
  background: var(--orange-light);
}

.compare__check svg { color: var(--orange-accessible); }

.compare__cross {
  background: var(--gray-light);
}

.compare__cross svg { color: var(--gray); }

/* ===== ABOUT ===== */
.about {
  padding: 112px 0;
  background: var(--white);
}

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

.about__text { max-width: 560px; }

.about__text h2 { margin-bottom: 20px; }

.about__text p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about__text p:last-of-type { margin-bottom: 32px; }

.about__photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: var(--border);
  border: 1.5px dashed #c8c2ba;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.82rem;
}

.about__photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 65%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 0 0 1px rgba(255,102,2,0.12), 0 20px 60px rgba(28,21,16,0.16);
}

@media (max-width: 820px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__photo-placeholder { aspect-ratio: 4/3; max-width: 360px; }
}

/* ===== PROCESS / STEPS ===== */
.process {
  padding: 112px 0;
  background: var(--white);
}

.process__header {
  text-align: center;
  margin-bottom: 0;
}
.process__header h2 { margin-bottom: 0; }

.steps {
  max-width: 740px;
  margin: 64px auto 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 56px;
  bottom: 56px;
  width: 1px;
  background: linear-gradient(to bottom, var(--orange-light) 0%, var(--border) 40%, var(--border) 75%, transparent 100%);
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 44px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.step--last {
  border-bottom: 1px solid var(--border);
}

.step__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange-accessible);
  line-height: 1;
  padding-top: 4px;
  letter-spacing: -0.04em;
}

.step__num--accent {
  color: var(--orange-accessible);
}

.step__content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.step__content p {
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

.step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.step__tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 99px;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 112px 0 96px;
  background: var(--white);
}

.reviews__header {
  text-align: center;
  margin-bottom: 56px;
}
.reviews__header h2 { margin-bottom: 8px; }
.reviews__header p { color: var(--gray); font-size: 1rem; }

.reviews__track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews__marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.reviews__marquee:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 36px;
  width: 460px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(28,21,16,0.05);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 22px;
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(182,79,0,0.1);
  font-family: var(--font-display);
  pointer-events: none;
  user-select: none;
}

.review-card__text {
  flex: 1;
  color: var(--dark);
  font-size: 0.94rem;
  line-height: 1.8;
  margin: 0 0 28px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.review-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #B64F00;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--dark);
  margin: 0;
}

.review-card__company {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 2px 0 0;
}

/* ===== FAQ ===== */
.faq {
  padding: 112px 0;
  background: var(--white);
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
}
.faq__header h2 { margin-bottom: 0; }

.faq__list {
  max-width: 700px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

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

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  gap: 20px;
}

.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { display: none; }

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--orange-accessible);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.22s ease;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding-bottom: 24px;
}

.faq__answer p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CLIENTS BAR ===== */
.clients {
  display: flex;
  align-items: stretch;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 52px;
}

.clients__badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  border-right: 1px solid var(--border);
  white-space: nowrap;
  background: var(--cream);
  position: relative;
  z-index: 1;
}

.clients__track-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.clients__track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: clients-scroll 22s linear infinite;
}

.clients__track span {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  padding: 0 24px;
}

.clients__sep {
  color: var(--border) !important;
  font-weight: 400 !important;
  padding: 0 !important;
  font-size: 1rem !important;
}

@keyframes clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== PAGE BLOCKS ===== */
.page-blocks {
  background: linear-gradient(to bottom, #faf9f7 0%, #B64F00 100px);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.page-blocks > section {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 2px 4px rgba(70,18,0,0.28),
    0 8px 16px rgba(70,18,0,0.30),
    0 24px 48px rgba(60,14,0,0.36),
    0 56px 96px rgba(50,10,0,0.38),
    0 96px 140px rgba(40,8,0,0.22);
}

/* ===== CONTACT ===== */
.contact {
  padding: 72px 0;
  background: var(--gray-light);
}

.contact__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}
.contact__header h2 { margin-bottom: 12px; color: var(--dark); }
.contact__header p { color: var(--gray); font-size: 1.05rem; margin: 0; }

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

.contact__text { display: flex; flex-direction: column; }
.contact__text h3 { font-size: 1.15rem; color: var(--dark); margin-bottom: 8px; }
.contact__text > p { color: var(--gray); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.7; }

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  padding: 0;
}
.contact__list li {
  font-size: 0.92rem;
  color: var(--gray);
  padding-left: 18px;
  position: relative;
}
.contact__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color 0.2s;
  text-decoration: none;
}
.contact-info__item:hover { border-color: var(--orange); }

.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: block;
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
}

.contact__form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form__group:last-of-type { margin-bottom: 20px; }

.form__group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-size: 0.95rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  box-sizing: border-box;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: #9ca3af; }
.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}
.form__group textarea { resize: vertical; min-height: 110px; }

.form__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 10px;
  min-height: 1.2em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-light);
  padding: 36px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  display: block;
}
.footer__copy { font-size: 0.84rem; color: var(--gray); margin: 0; }

/* ===== HERO GRID (homepage two-column) ===== */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}

.hero__right {
  align-self: stretch;
  position: relative;
  overflow: visible;
  min-width: 0;
}

.hero__photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  border: 1.5px dashed rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
}

.hero__mockup {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.hero__mockup-img {
  width: 140%;
  height: auto;
  display: block;
  border-radius: 16px;
  transform: perspective(900px) rotateY(-8deg) rotateX(3deg);
  transform-origin: left center;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.12),
    0 12px 32px rgba(0,0,0,0.28),
    0 32px 72px rgba(0,0,0,0.30),
    0 0 0 1px rgba(255,255,255,0.07),
    8px 16px 48px rgba(255,102,2,0.18);
}

.hero__tools-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(13,9,6,0.4);
  margin: 0 0 16px;
}

.hero__photo-wrap {
  position: absolute;
  top: -200px;
  bottom: -200px;
  left: 0;
  right: calc(522px - 50vw); /* compenseert container-marge zodat foto viewport-rand raakt */
}

.hero__photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,148,72,0.38) 0%, transparent 35%);
  pointer-events: none;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

.hero__marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.hero__marquee-row {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.hero__marquee-track {
  display: flex;
  gap: 8px;
  width: max-content;
}

.hero__marquee-track--right {
  animation: marquee-right 28s linear infinite;
}

.hero__marquee-track--left {
  animation: marquee-left 28s linear infinite;
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 99px;
  padding: 8px 14px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: default;
}

.tool-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tool-chip__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(13,9,6,0.82);
}

.hero__stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 44px 36px 32px;
  text-align: center;
  width: 240px;
  position: relative;
  overflow: hidden;
}

.hero__stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,102,2,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero__stat-rotator {
  position: relative;
  height: 112px;
  margin-bottom: 24px;
}

.hero__stat-item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  opacity: 0;
  animation: stat-fade 9s infinite;
}
.hero__stat-item:nth-child(2) { animation-delay: 3s; }
.hero__stat-item:nth-child(3) { animation-delay: 6s; }

@keyframes stat-fade {
  0%   { opacity: 0; transform: translateY(14px); }
  8%   { opacity: 1; transform: translateY(0); }
  27%  { opacity: 1; transform: translateY(0); }
  35%  { opacity: 0; transform: translateY(-14px); }
  100% { opacity: 0; transform: translateY(-14px); }
}

.hero__stat-num {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero__stat-unit {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.3;
  min-height: 1.6rem;
}

.hero__stat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
  font-weight: 500;
  margin-top: 4px;
}

.hero__stat-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
}

.hero__stat-dot {
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,0.18);
  width: 6px;
  animation: dot-active 9s infinite;
}
.hero__stat-dot:nth-child(2) { animation-delay: 3s; }
.hero__stat-dot:nth-child(3) { animation-delay: 6s; }

@keyframes dot-active {
  0%      { background: var(--orange); width: 20px; }
  33%     { background: var(--orange); width: 20px; }
  33.01%  { background: rgba(255,255,255,0.18); width: 6px; }
  100%    { background: rgba(255,255,255,0.18); width: 6px; }
}

/* ===== SERVICE PAGE HERO ===== */
.hero--service {
  padding: calc(var(--nav-h) + 80px) 0 88px;
  background:
    radial-gradient(ellipse 65% 95% at 90% 15%, rgba(255,120,30,0.75) 0%, rgba(204,82,0,0.3) 45%, transparent 68%),
    radial-gradient(ellipse 45% 60% at 100% 90%, rgba(255,150,50,0.4) 0%, transparent 55%),
    #1a0d05;
  text-align: left;
}

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

.hero--service .hero__content {
  max-width: none;
}

.hero--service h1 { color: var(--white); }
.hero--service .hero__sub { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.hero--service .hero__label { color: var(--orange); background: rgba(255,102,2,0.15); border-color: rgba(255,102,2,0.35); }
.hero--service .btn--ghost { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.22); }
.hero--service .btn--ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.07); }

/* ===== SERVICE HERO AI VISUAL CARD ===== */
.hero__ai-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px 24px;
}

.hero__ai-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hero__ai-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: ai-dot-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes ai-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__ai-card__title {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ai-flow { display: flex; flex-direction: column; }

.ai-flow__node {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 0;
}

.ai-flow__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,102,2,0.1);
  border: 1px solid rgba(255,102,2,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.ai-flow__icon svg { width: 16px; height: 16px; }

.ai-flow__text { flex: 1; min-width: 0; }

.ai-flow__label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

.ai-flow__sub {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.35);
}

.ai-flow__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,102,2,0.12);
  border: 1px solid rgba(255,102,2,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.ai-flow__check svg { width: 11px; height: 11px; }

.ai-flow__check--active { position: relative; }

.ai-flow__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: ai-dot-pulse 1.5s ease-in-out infinite;
}

.ai-flow__connector {
  width: 1px;
  height: 18px;
  margin-left: 17px;
  background: rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.ai-flow__connector::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(255,102,2,0.55), transparent);
  animation: ai-flow-down 2.8s ease-in-out infinite;
}

.ai-flow > div:nth-child(4)::after { animation-delay: 1.4s; }

@keyframes ai-flow-down {
  0% { top: -100%; }
  100% { top: 200%; }
}

.ai-flow__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.ai-flow__footer-label {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.38);
}

.ai-flow__footer-value {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--orange);
}

/* ===== SECTION WARM (licht oranje CTA-sectie) ===== */
.section--warm {
  padding: 100px 0;
  background: var(--orange-light);
  text-align: center;
}

.section--warm h2 { color: var(--dark); margin-bottom: 12px; }
.section--warm .section-label {
  background: rgba(255,102,2,0.18);
  color: var(--orange-accessible);
}
.section--warm .fade-up > p,
.section--warm .container > p {
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 540px;
  margin: 0 auto 40px;
  text-align: left;
}

.checklist__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(255,102,2,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.93rem;
  color: var(--dark);
  font-weight: 500;
}

.checklist__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist__check::after {
  content: '';
  width: 5px;
  height: 9px;
  border-right: 2.5px solid var(--white);
  border-bottom: 2.5px solid var(--white);
  transform: rotate(45deg) translate(-1px, -1px);
  display: block;
}

/* ===== NUMBERED GRID TILES ===== */
.num-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.num-tile:hover {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light), var(--shadow);
  transform: translateY(-3px);
}

.num-tile__num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--orange-accessible);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.num-tile h3 { font-size: 1.05rem; margin-bottom: 8px; }
.num-tile p { font-size: 0.92rem; line-height: 1.65; }

/* Dark tile variant (only used in dark sections) */
.num-tile--dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}

.num-tile--dark:hover {
  background: rgba(255,102,2,0.08);
  border-color: rgba(255,102,2,0.35);
  box-shadow: none;
}

.num-tile--dark .num-tile__num { color: var(--orange); }
.num-tile--dark h3 { color: var(--white); }
.num-tile--dark p { color: rgba(255,255,255,0.65); }

/* Warm tile variant (on orange-light bg) */
.num-tile--warm {
  background: var(--white);
  border: 1px solid rgba(255,102,2,0.15);
}

.num-tile--warm:hover {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,102,2,0.08), var(--shadow);
}

/* ===== DELIVERABLES GRID (used inside section--dark) ===== */
.checklist--grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
}

@media (max-width: 700px) {
  .checklist--grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER RICH (service pages multi-column) ===== */
.footer--rich {
  padding-top: 56px;
  padding-bottom: 0;
  background: #B64F00;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer__brand img {
  height: 36px;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer__slogan {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.footer__brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  max-width: 210px;
  margin: 0;
}

.footer__col-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}

.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom p, .footer__bottom a {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin: 0;
  transition: color 0.2s;
}

.footer__bottom a:hover { color: var(--white); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

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

.fly-up {
  opacity: 0;
  transform: translateY(44px);
}
.fly-up.visible {
  animation: flyUp 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.fly-up.visible:nth-child(2) { animation-delay: 0.15s; }
.fly-up.visible:nth-child(3) { animation-delay: 0.30s; }
.fly-up.visible:nth-child(4) { animation-delay: 0.45s; }
.fly-up.visible:nth-child(5) { animation-delay: 0.60s; }
.fly-up.visible:nth-child(6) { animation-delay: 0.75s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .services__grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .review-card { width: 320px; padding: 22px 26px; }
  .hero__stats { padding: 28px 24px; gap: 0; }
  .hero__stat { padding: 0 16px; }
  .hero__stat-value { font-size: 1.5rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 0; }
  .hero__right { align-self: auto; overflow: hidden; height: 320px; }
  .hero__photo-wrap { position: relative; top: auto; bottom: auto; left: auto; right: auto; height: 100%; }
  .hero__stat-card { width: 220px; }
  .hero--service .container { grid-template-columns: 1fr; gap: 40px; }
  .footer__main { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 700px) {
  .problem__item-body p { padding-left: 0; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; }
  .step__num { font-size: 1.7rem; }
  .compare__head,
  .compare__row { grid-template-columns: 1fr 80px 80px; padding: 14px 16px; }
  .compare__feat { font-size: 0.88rem; }
  .hero__stats { flex-direction: column; gap: 24px; max-width: 100%; }
  .hero__stat-divider { width: 48px; height: 1px; background: rgba(255,255,255,0.12); }
}

@media (max-width: 768px) {
  /* Volledig dekkende nav op mobiel — voorkomt doorschijnen hero-achtergrond */
  .nav { background: rgb(250,249,247); }

  .nav__inner { padding: 0 20px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgb(250,249,247);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 32px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    /* Verschuif het menu ver genoeg omhoog zodat de onderkant
       ook boven de viewport uitsteekt (eigen hoogte + nav hoogte) */
    transform: translateY(calc(-100% - var(--nav-h)));
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 98;
    /* Voorkom dat een eventuele blur-laag nog zichtbaar is */
    visibility: hidden;
  }
  .nav__links.open {
    transform: translateY(0);
    visibility: visible;
  }
  .nav__links li { width: 100%; }
  .nav__links li a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav__links li:last-child { display: none; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__form { padding: 28px; }
  .footer__inner { flex-direction: column; gap: 8px; text-align: center; }
  .steps { margin-top: 44px; }
  .step { padding: 32px 0; }
}
