/* ============================================================
   SHOVELHUREN.NL — thema (GIANT verhuur, ZHE Trading B.V.)
   Zelfde DNA als nieuweshovelkopen.nl: GIANT-rood, Barlow
   Condensed + Inter, ink-dark secties, 3D-tilt cards.
   ============================================================ */
:root {
  --red: #e30613;
  --red-dark: #b8000c;
  --ink: #0b0c0e;
  --ink-2: #14161a;
  --ink-3: #1d2026;
  --paper: #ffffff;
  --paper-2: #f4f5f7;
  --line: #e7e9ed;
  --grey: #6b7280;
  --grey-2: #9aa3ad;
  --radius: 16px;
  --shadow: 0 24px 60px -24px rgba(11,12,14,.22);
  --shadow-red: 0 18px 44px -14px rgba(227,6,19,.45);
  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;
  --ease: cubic-bezier(.22,.8,.24,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .015em; line-height: 1; }
::selection { background: var(--red); color: #fff; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #3a3f47; border-radius: 8px; border: 2px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

.container { width: min(1240px, 92vw); margin: 0 auto; }

/* ============ Custom cursor ============ */
@media (pointer: fine) {
  #cursor-dot, #cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 500; border-radius: 50%; }
  #cursor-dot { width: 8px; height: 8px; background: var(--red); transform: translate(-50%, -50%); }
  #cursor-ring {
    width: 38px; height: 38px; border: 2px solid rgba(227,6,19,.55);
    transform: translate(-50%, -50%); transition: width .25s, height .25s, border-color .25s, background .25s;
  }
  #cursor-ring.hovering { width: 60px; height: 60px; border-color: rgba(227,6,19,.9); background: rgba(227,6,19,.08); }
}
@media (pointer: coarse) { #cursor-dot, #cursor-ring { display: none; } }

/* ============ Preloader ============ */
#preloader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  transition: opacity .6s, visibility .6s;
}
#preloader.done { opacity: 0; visibility: hidden; }
#preloader img { height: 54px; width: auto; filter: brightness(0) invert(1); animation: preloader-logo 1.4s var(--ease) both; }
@keyframes preloader-logo { from { opacity: 0; transform: translateY(16px) scale(.94); } to { opacity: 1; transform: none; } }
#preloader .bar { width: 190px; height: 3px; background: rgba(255,255,255,.14); border-radius: 3px; overflow: hidden; }
#preloader .bar i { display: block; height: 100%; width: 40%; background: var(--red); border-radius: 3px; animation: loadbar 1s var(--ease) infinite; }
@keyframes loadbar { 0% { transform: translateX(-110%); } 100% { transform: translateX(490px); } }

/* ============ Scroll progress ============ */
#progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 210; pointer-events: none; }
#progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--red), #ff4d57); }

/* ============ Topbar ============ */
.topbar { background: var(--ink); color: #cfd5dc; font-size: .8rem; font-weight: 500; padding: .5rem 0; }
.topbar .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar a { transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar b { color: #fff; font-weight: 600; }
.topbar .dot { color: var(--red); }

/* ============ Header ============ */
header.site {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .3s;
}
header.site.hidden { transform: translateY(-110%); }
header.site.scrolled { box-shadow: 0 14px 40px -18px rgba(11,12,14,.25); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; gap: 1.2rem; }
.nav .logo { display: flex; align-items: center; gap: .7rem; }
.nav .logo img { height: 44px; width: auto; }
.nav .logo .logo-txt { display: flex; flex-direction: column; line-height: 1.05; }
.nav .logo .logo-txt b { font-family: var(--font-head); font-size: 1.25rem; text-transform: uppercase; letter-spacing: .04em; }
.nav .logo .logo-txt b i { font-style: normal; color: var(--red); }
.nav .logo .logo-txt small { font-size: .62rem; color: var(--grey); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.nav ul { display: flex; gap: 1.15rem; list-style: none; }
.nav ul a { font-weight: 600; font-size: .88rem; color: var(--ink); position: relative; padding: .35rem 0; white-space: nowrap; }
.nav > .btn { font-size: .95rem; padding: .65rem 1.3rem; white-space: nowrap; }
.nav ul a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--red); transition: width .3s var(--ease); }
.nav ul a:hover::after, .nav ul a.active::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.06rem; text-transform: uppercase; letter-spacing: .05em;
  padding: .78rem 1.9rem; border-radius: 4px; border: none; cursor: pointer;
  background: var(--red); color: #fff;
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .3s, background .25s;
}
.btn::before {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); transition: left .55s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-red); background: var(--red-dark); }
.btn:hover::before { left: 130%; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); box-shadow: none; }
.btn-dark { background: var(--ink); }
.btn-dark:hover { background: #000; box-shadow: 0 18px 40px -16px rgba(0,0,0,.55); }
.btn small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; text-transform: none; letter-spacing: 0; opacity: .85; }

/* Hamburger */
#burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; z-index: 320; }
#burger span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s, background .25s; }
#burger.open span { background: #fff; }
#burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
#burger.open span:nth-child(2) { opacity: 0; }
#burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

#mobileMenu {
  position: fixed; inset: 0; z-index: 310; background: rgba(11,12,14,.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.05rem;
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
}
#mobileMenu.open { opacity: 1; visibility: visible; }
#mobileMenu a {
  font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; text-transform: uppercase; color: #fff;
  opacity: 0; transform: translateY(22px); transition: opacity .4s var(--ease), transform .4s var(--ease), color .2s;
}
#mobileMenu.open a { opacity: 1; transform: none; }
#mobileMenu a:hover { color: var(--red); }
#mobileMenu.open a:nth-child(1) { transition-delay: .05s; } #mobileMenu.open a:nth-child(2) { transition-delay: .1s; }
#mobileMenu.open a:nth-child(3) { transition-delay: .15s; } #mobileMenu.open a:nth-child(4) { transition-delay: .2s; }
#mobileMenu.open a:nth-child(5) { transition-delay: .25s; } #mobileMenu.open a:nth-child(6) { transition-delay: .3s; }
#mobileMenu.open a:nth-child(7) { transition-delay: .35s; } #mobileMenu.open a:nth-child(8) { transition-delay: .4s; }
#mobileMenu.open a:nth-child(9) { transition-delay: .45s; }

/* ============ Hero (home) ============ */
.hero {
  position: relative; min-height: min(94vh, 940px);
  display: flex; align-items: center;
  background: var(--ink); color: #fff;
  overflow: hidden; isolation: isolate;
}
.hero-bg-wrap {
  position: absolute; inset: 0; z-index: -2;
  transform: translate(calc(var(--hx, 0) * -12px), calc(var(--hy, 0) * -8px)) scale(1.04);
  will-change: transform;
}
.hero-bg-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  animation: kenburns 20s var(--ease) infinite alternate;
  will-change: transform;
}
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.15) translateX(-2%); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(11,12,14,.94) 0%, rgba(11,12,14,.74) 42%, rgba(11,12,14,.3) 75%, rgba(11,12,14,.18)),
    linear-gradient(0deg, rgba(11,12,14,.88) 0%, transparent 32%);
}
.hero .grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; padding: 7rem 0 8.5rem; max-width: 700px; }
.hero .kicker {
  display: inline-flex; align-items: center; gap: .65rem;
  border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.07);
  backdrop-filter: blur(6px);
  color: #fff; font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .5rem 1.15rem; border-radius: 999px; margin-bottom: 1.8rem;
}
.hero .kicker .pulse {
  width: 9px; height: 9px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(227,6,19,.6); animation: pulse 2.2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 11px rgba(227,6,19,0); } 100% { box-shadow: 0 0 0 0 rgba(227,6,19,0); } }
.hero h1 { font-size: clamp(2.9rem, 6.6vw, 5.4rem); font-weight: 800; }
.hero h1 .accent { color: var(--red); text-shadow: 0 0 60px rgba(227,6,19,.4); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; transform: translateY(110%); animation: rise .9s var(--ease) forwards; }
.hero h1 .line:nth-child(2) > span { animation-delay: .12s; }
@keyframes rise { to { transform: none; } }
.hero p.lead {
  max-width: 560px; margin: 1.7rem 0 2.4rem; font-size: 1.13rem;
  color: #dfe3e8; line-height: 1.7;
  opacity: 0; animation: fadeup .8s var(--ease) .45s forwards;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeup .8s var(--ease) .6s forwards; }
@keyframes fadeup { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-trust {
  display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 2.6rem;
  opacity: 0; animation: fadeup .8s var(--ease) .72s forwards;
}
.hero-trust span { display: inline-flex; align-items: center; gap: .5rem; color: #cfd5dc; font-size: .88rem; font-weight: 500; }
.hero-trust svg { width: 17px; height: 17px; stroke: var(--red); flex: none; }

.hero-machine {
  position: absolute; right: 1%; bottom: -1rem; z-index: 1;
  width: min(42vw, 620px); pointer-events: none;
  transform: translate(calc(var(--hx, 0) * 22px), calc(var(--hy, 0) * 14px));
  will-change: transform;
  opacity: 0; animation: fadeup 1s var(--ease) .5s forwards;
}
.hero-machine img {
  width: 100%; height: auto;
  animation: floaty 6s ease-in-out infinite;
  filter: drop-shadow(0 46px 44px rgba(0,0,0,.65));
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.hero-machine .shadow {
  margin: -18px auto 0; width: 70%; height: 26px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.55), transparent 70%);
  animation: shadow-pulse 6s ease-in-out infinite;
}
@keyframes shadow-pulse { 0%, 100% { transform: scaleX(1); opacity: .9; } 50% { transform: scaleX(.86); opacity: .55; } }
.hero-machine .price-chip {
  position: absolute; top: -8%; right: 6%;
  background: var(--red); color: #fff; text-align: center;
  font-family: var(--font-head); text-transform: uppercase; font-weight: 800;
  padding: .85rem 1.1rem; border-radius: 12px; line-height: 1.05;
  box-shadow: var(--shadow-red); transform: rotate(4deg);
  animation: floaty 6s ease-in-out infinite reverse;
}
.hero-machine .price-chip small { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .1em; opacity: .9; }
.hero-machine .price-chip b { font-size: 1.7rem; }

.rotator-strip {
  margin-top: 2.6rem; display: flex; align-items: baseline; gap: .6rem;
  font-family: var(--font-head); font-size: 1.45rem; text-transform: uppercase;
  color: var(--grey-2); letter-spacing: .04em;
  opacity: 0; animation: fadeup .8s var(--ease) .85s forwards;
}
.rotator { display: inline-block; height: 1.15em; overflow: hidden; vertical-align: bottom; }
.rotator span {
  display: block; color: #fff; font-weight: 700;
  border-bottom: 3px solid var(--red);
  animation: rotate-words 12s var(--ease) infinite;
}
@keyframes rotate-words {
  0%, 13% { transform: translateY(0); }
  16.6%, 29.9% { transform: translateY(-100%); }
  33.3%, 46.5% { transform: translateY(-200%); }
  49.9%, 63.2% { transform: translateY(-300%); }
  66.6%, 79.8% { transform: translateY(-400%); }
  83.2%, 96.5% { transform: translateY(-500%); }
  100% { transform: translateY(-600%); }
}

/* ============ Snel-reserveer widget (hero) ============ */
.quickbook {
  display: flex; align-items: flex-end; gap: .8rem; flex-wrap: wrap;
  margin-top: 2rem; padding: 1.1rem 1.2rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; animation: fadeup .8s var(--ease) .68s forwards;
  max-width: 660px;
}
.quickbook .qb-field { display: flex; flex-direction: column; gap: .35rem; flex: 1 1 150px; }
.quickbook label { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #cfd5dc; }
.quickbook select, .quickbook input {
  padding: .65rem .8rem; border-radius: 8px; border: 1px solid rgba(255,255,255,.25);
  background: rgba(11,12,14,.55); color: #fff; font-family: inherit; font-size: .9rem;
  color-scheme: dark;
}
.quickbook select:focus, .quickbook input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,6,19,.25); }
.quickbook .btn { font-size: .98rem; padding: .68rem 1.3rem; flex: 0 0 auto; }
@media (max-width: 640px) { .quickbook { padding: 1rem; } .quickbook .btn { width: 100%; justify-content: center; } }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.65); font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
}
.scroll-hint .mouse {
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-hint .mouse i { width: 3px; height: 8px; border-radius: 3px; background: var(--red); animation: wheel 1.6s var(--ease) infinite; }
@keyframes wheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(12px); } }

/* ============ Page-hero (subpaginas) ============ */
.page-hero {
  position: relative; background: var(--ink); color: #fff; overflow: hidden; isolation: isolate;
  padding: 4.6rem 0 4.2rem;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background: radial-gradient(820px 420px at 82% 20%, rgba(227,6,19,.22), transparent 65%),
              radial-gradient(620px 420px at 8% 100%, rgba(227,6,19,.12), transparent 60%);
}
.page-hero .crumbs { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; font-size: .82rem; color: var(--grey-2); margin-bottom: 1.6rem; }
.page-hero .crumbs a { color: #cfd5dc; transition: color .2s; }
.page-hero .crumbs a:hover { color: var(--red); }
.page-hero .crumbs .sep { color: var(--red); }
.page-hero .ph-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 2.5rem; align-items: center; }
.page-hero .kicker {
  display: inline-flex; align-items: center; gap: .65rem;
  border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.07);
  color: #fff; font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .45rem 1.05rem; border-radius: 999px; margin-bottom: 1.3rem;
}
.page-hero .kicker .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(227,6,19,.6); animation: pulse 2.2s infinite; }
.page-hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.2rem); font-weight: 800; }
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero p.lead { color: #dfe3e8; line-height: 1.7; margin: 1.2rem 0 1.9rem; max-width: 640px; font-size: 1.05rem; }
.page-hero .hero-ctas { opacity: 1; animation: none; }
.page-hero .hero-trust { opacity: 1; animation: none; margin-top: 1.9rem; }
.page-hero .ph-machine { position: relative; display: flex; align-items: flex-end; justify-content: center; }
.page-hero .ph-machine img { max-height: 330px; object-fit: contain; filter: drop-shadow(0 40px 40px rgba(0,0,0,.6)); animation: floaty 6s ease-in-out infinite; }
.page-hero .ph-machine .price-chip {
  position: absolute; top: -4%; right: 2%;
  background: var(--red); color: #fff; text-align: center;
  font-family: var(--font-head); text-transform: uppercase; font-weight: 800;
  padding: .7rem 1rem; border-radius: 12px; line-height: 1.05;
  box-shadow: var(--shadow-red); transform: rotate(4deg);
}
.page-hero .ph-machine .price-chip small { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .1em; opacity: .9; }
.page-hero .ph-machine .price-chip b { font-size: 1.45rem; }
@media (max-width: 900px) {
  .page-hero .ph-grid { grid-template-columns: 1fr; }
  .page-hero .ph-machine { display: none; }
}

/* ============ Marquee ============ */
.marquee {
  background: var(--red); color: #fff;
  padding: 1.05rem 0; overflow: hidden; white-space: nowrap;
  transform: rotate(-1.2deg) scale(1.02);
  position: relative; z-index: 5; margin: -1.4rem 0;
  box-shadow: 0 16px 50px -18px rgba(227,6,19,.55);
}
.marquee .track { display: inline-flex; gap: 3.2rem; animation: marquee 26s linear infinite; padding-right: 3.2rem; }
.marquee:hover .track { animation-play-state: paused; }
.marquee span { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; text-transform: uppercase; letter-spacing: .08em; display: inline-flex; align-items: center; gap: 3.2rem; }
.marquee span::after { content: "◆"; font-size: .7rem; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Sections base ============ */
section { padding: 6.5rem 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 3.6rem; }
.section-head.center { text-align: center; margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  color: var(--red); font-weight: 700; letter-spacing: .26em;
  text-transform: uppercase; font-size: .78rem;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--red); }
.section-head.center .eyebrow::after { content: ""; width: 34px; height: 2px; background: var(--red); }
.section-head h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; margin-top: .8rem; }
.section-head h2 em { font-style: normal; color: var(--red); position: relative; display: inline-block; }
.section-head h2 em::after {
  content: ""; position: absolute; left: -2%; bottom: .04em; width: 104%; height: .32em; z-index: -1;
  background: rgba(227,6,19,.14); transform: scaleX(0); transform-origin: left;
  transition: transform .8s var(--ease) .35s;
}
.section-head.visible h2 em::after { transform: scaleX(1); }
.section-head p { color: var(--grey); margin-top: 1.1rem; line-height: 1.75; font-size: 1.03rem; }

/* ============ Stats ============ */
.stats { padding: 4.5rem 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -1rem; top: 12%; height: 76%; width: 1px; background: var(--line); }
.stat .num { font-family: var(--font-head); font-weight: 800; line-height: 1; font-size: clamp(2.6rem, 5vw, 4.2rem); }
.stat .num small { color: var(--red); font-size: .65em; }
.stat .lbl { font-weight: 600; font-size: .9rem; margin-top: .45rem; color: var(--grey); text-transform: uppercase; letter-spacing: .1em; }

/* ============ Vloot / product cards ============ */
.products { background: var(--paper-2); }
.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 3rem; }
.chip {
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; text-transform: uppercase; letter-spacing: .05em;
  padding: .55rem 1.35rem; border-radius: 999px; cursor: pointer;
  background: #fff; color: var(--ink); border: 1px solid var(--line);
  transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: 0 12px 26px -12px rgba(11,12,14,.5); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(285px, 1fr)); gap: 1.7rem; }
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; position: relative;
  transform-style: preserve-3d; will-change: transform;
  transition: box-shadow .35s, border-color .35s, opacity .5s var(--ease), transform .5s var(--ease);
}
.card.hide { display: none; }
.card:hover { border-color: rgba(227,6,19,.4); box-shadow: var(--shadow); z-index: 2; }
.card .glare {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0; transition: opacity .3s;
  background: radial-gradient(480px circle at var(--gx,50%) var(--gy,50%), rgba(255,255,255,.55), transparent 42%);
  mix-blend-mode: soft-light;
}
.card:hover .glare { opacity: 1; }
.card .badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 4;
  background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem .75rem; border-radius: 4px;
  box-shadow: 0 8px 18px -8px rgba(227,6,19,.7);
}
.card .badge.dark { background: var(--ink); box-shadow: none; }
.card .img-wrap {
  background: radial-gradient(ellipse at 50% 88%, rgba(227,6,19,.10), transparent 60%), linear-gradient(180deg, #fafbfc, #eef0f3);
  padding: 2.1rem 1.6rem 1.1rem; height: 225px;
  display: flex; align-items: flex-end; justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.card .img-wrap img {
  max-height: 100%; object-fit: contain;
  transition: transform .5s var(--ease);
  filter: drop-shadow(0 20px 18px rgba(11,12,14,.22));
}
.card:hover .img-wrap img { transform: scale(1.09) translateY(-4px); }
.card .img-wrap.cover { padding: 0; }
.card .img-wrap.cover img { width: 100%; height: 100%; object-fit: cover; max-height: none; filter: none; }
.card .body { padding: 1.35rem 1.5rem 1.6rem; }
.card .cat { color: var(--red); font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.card h3 { font-size: 1.6rem; font-weight: 800; margin: .4rem 0 .75rem; }
.card .specs { list-style: none; display: grid; gap: .42rem; margin-bottom: 1.1rem; }
.card .specs li { color: var(--grey); font-size: .89rem; display: flex; gap: .55rem; align-items: baseline; line-height: 1.45; }
.card .specs li::before { content: "▸"; color: var(--red); font-size: .8rem; }
.card .body .btn { font-size: .95rem; padding: .58rem 1.35rem; }
.card .body .more {
  margin-left: .9rem; font-weight: 600; font-size: .88rem; color: var(--ink);
  border-bottom: 2px solid var(--red); padding-bottom: 2px; transition: color .2s;
}
.card .body .more:hover { color: var(--red); }

/* Huurprijs op kaart */
.card .price-row {
  display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap;
  border-top: 1px dashed var(--line); padding-top: .85rem; margin-bottom: 1.05rem;
}
.card .price-row .price { font-family: var(--font-head); font-weight: 800; font-size: 1.75rem; color: var(--red); line-height: 1; }
.card .price-row .price small { font-family: var(--font-body); font-weight: 600; font-size: .74rem; color: var(--grey); letter-spacing: 0; }
.card .price-row .week { font-size: .82rem; color: var(--grey); font-weight: 500; }

/* ============ Range (donker) ============ */
.range { background: var(--ink); color: #fff; }
.range .section-head p { color: var(--grey-2); }
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.range-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  padding: 2.4rem 2rem; background: linear-gradient(170deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  transition: transform .35s var(--ease), border-color .3s;
}
.range-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: var(--red); transition: width .5s var(--ease);
}
.range-card:hover { transform: translateY(-8px); border-color: rgba(227,6,19,.55); }
.range-card:hover::after { width: 100%; }
.range-tag { color: var(--red); font-weight: 700; letter-spacing: .22em; text-transform: uppercase; font-size: .75rem; }
.range-card h3 { font-size: 2.3rem; font-weight: 800; margin: .5rem 0 .4rem; }
.range-card .models {
  font-family: var(--font-head); color: #fff; font-size: 1.05rem; letter-spacing: .06em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: .9rem; margin-bottom: .9rem;
}
.range-card p { color: var(--grey-2); font-size: .94rem; line-height: 1.7; }
.range-card ul { list-style: none; margin: 1.1rem 0 1.4rem; display: grid; gap: .5rem; }
.range-card ul li { display: flex; gap: .6rem; color: #dfe3e8; font-size: .9rem; }
.range-card ul li::before { content: "✓"; color: var(--red); font-weight: 700; }
.range-card .price-line { margin: 0 0 1.2rem; font-family: var(--font-head); font-size: 1.35rem; text-transform: uppercase; }
.range-card .price-line b { color: var(--red); font-size: 1.6rem; }
.range-card .link-arrow {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .92rem; margin-top: auto;
  color: #fff; border-bottom: 2px solid var(--red); padding-bottom: 2px; align-self: flex-start;
  transition: color .2s, gap .25s var(--ease);
}
.range-card .link-arrow:hover { color: var(--red); gap: .75rem; }
.range-foot { text-align: center; margin-top: 2.6rem; color: var(--grey-2); font-size: .95rem; }
.range-foot a { color: #fff; border-bottom: 2px solid var(--red); padding-bottom: 2px; font-weight: 600; transition: color .2s; }
.range-foot a:hover { color: var(--red); }
@media (max-width: 1080px) { .range-grid { grid-template-columns: 1fr; } }

/* ============ Calculator ============ */
.calc-section { background: var(--paper); }
.calc {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.calc .calc-form { padding: 2.6rem 2.4rem; background: #fff; display: grid; gap: 1.35rem; align-content: start; }
.calc .calc-form h3 { font-size: 1.9rem; font-weight: 800; }
.calc label { font-size: .84rem; font-weight: 600; display: block; margin-bottom: .45rem; }
.calc select {
  width: 100%; padding: .82rem 1rem; border-radius: 8px;
  border: 1px solid var(--line); background: var(--paper-2);
  color: var(--ink); font-family: inherit; font-size: .95rem;
}
.calc select:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(227,6,19,.14); }
.calc .period-chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.calc .period-chips .chip { font-size: .92rem; padding: .5rem 1.1rem; }
.calc .opts { display: grid; gap: .6rem; }
.calc .opts label { display: flex; align-items: center; gap: .65rem; font-weight: 500; font-size: .92rem; margin: 0; cursor: pointer; }
.calc .opts input { width: 18px; height: 18px; accent-color: var(--red); }
.calc-result {
  background: var(--ink); color: #fff; padding: 2.6rem 2.4rem;
  display: flex; flex-direction: column; justify-content: center; gap: .4rem;
  position: relative; overflow: hidden;
}
.calc-result::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(480px 300px at 80% 10%, rgba(227,6,19,.28), transparent 65%);
}
.calc-result > * { position: relative; }
.calc-result .cr-label { color: var(--grey-2); font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; }
.calc-result .cr-machine { font-family: var(--font-head); text-transform: uppercase; font-weight: 700; font-size: 1.3rem; margin-top: .3rem; }
.calc-result .cr-price { font-family: var(--font-head); font-weight: 800; font-size: clamp(3rem, 6vw, 4.6rem); line-height: 1; color: #fff; margin: .6rem 0 .2rem; }
.calc-result .cr-price small { font-size: .35em; color: var(--grey-2); font-weight: 600; }
.calc-result .cr-sub { color: var(--grey-2); font-size: .88rem; line-height: 1.65; }
.calc-result ul { list-style: none; margin: 1.1rem 0 1.4rem; display: grid; gap: .45rem; }
.calc-result ul li { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; color: #dfe3e8; border-bottom: 1px dashed rgba(255,255,255,.14); padding-bottom: .45rem; }
.calc-result ul li b { font-weight: 600; }
.calc-result .btn { align-self: flex-start; }
@media (max-width: 900px) { .calc { grid-template-columns: 1fr; } }

/* ============ Categorie-gids ============ */
.catguide { background: var(--paper); }
.cat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
  padding: 3.4rem 0;
}
.cat-row + .cat-row { border-top: 1px solid var(--line); }
.cat-row:nth-child(even) .cat-media { order: 2; }
.cat-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cat-media img { width: 100%; height: 380px; object-fit: cover; transition: transform .7s var(--ease); }
.cat-row:hover .cat-media img { transform: scale(1.05); }
.cat-media.png-stage {
  background: radial-gradient(ellipse at 50% 90%, rgba(227,6,19,.12), transparent 60%), linear-gradient(180deg, #fafbfc, #e9ebef);
  display: flex; align-items: flex-end; justify-content: center; padding: 2.4rem; box-shadow: none; border: 1px solid var(--line);
}
.cat-media.png-stage img { height: 320px; width: auto; object-fit: contain; filter: drop-shadow(0 26px 26px rgba(11,12,14,.25)); }
.cat-media .cat-num {
  position: absolute; top: 1.1rem; left: 1.2rem; z-index: 2;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem; letter-spacing: .1em;
  background: var(--ink); color: #fff; padding: .35rem .8rem; border-radius: 4px;
}
.cat-media .price-chip {
  position: absolute; right: 1.1rem; bottom: 1.1rem; z-index: 2;
  background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 800;
  text-transform: uppercase; padding: .5rem .9rem; border-radius: 8px; line-height: 1.05; text-align: center;
  box-shadow: var(--shadow-red);
}
.cat-media .price-chip small { display: block; font-size: .66rem; font-weight: 600; letter-spacing: .08em; }
.cat-body h2, .cat-body h3.cat-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.cat-body h2 em, .cat-body h3.cat-title em { font-style: normal; color: var(--red); }
.cat-body .lead-line { font-weight: 600; color: var(--ink); margin: 1.1rem 0 .7rem; line-height: 1.6; }
.cat-body p { color: var(--grey); line-height: 1.8; font-size: .98rem; }
.cat-body ul { list-style: none; margin: 1.2rem 0 1.6rem; display: grid; gap: .5rem; }
.cat-body ul li { display: flex; gap: .6rem; align-items: baseline; color: var(--ink); font-size: .93rem; font-weight: 500; }
.cat-body ul li::before { content: "✓"; color: var(--red); font-weight: 700; }
.cat-ctas { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; }
.cat-ctas .btn { font-size: .98rem; padding: .65rem 1.5rem; }
.cat-ctas .link-arrow {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .93rem;
  color: var(--ink); border-bottom: 2px solid var(--red); padding-bottom: 2px; transition: color .2s, gap .25s var(--ease);
}
.cat-ctas .link-arrow:hover { color: var(--red); gap: .75rem; }
@media (max-width: 1080px) {
  .cat-row { grid-template-columns: 1fr; gap: 1.8rem; }
  .cat-row:nth-child(even) .cat-media { order: 0; }
}

/* ============ Sectoren ============ */
.sectors-wrap { background: var(--paper-2); }
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.sector {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 430px;
  color: #fff; display: flex; align-items: flex-end;
  box-shadow: var(--shadow);
}
.sector img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.18); transition: transform 1.1s var(--ease);
  will-change: transform;
}
.sector.visible img { transform: scale(1); }
.sector:hover img { transform: scale(1.07); }
.sector .wipe { position: absolute; inset: 0; z-index: 2; background: var(--red); transform: scaleX(1); transform-origin: left; }
.sector.visible .wipe { transform: scaleX(0); transform-origin: right; transition: transform .85s var(--ease) .1s; }
.sector .overlay {
  position: relative; z-index: 1; width: 100%;
  background: linear-gradient(180deg, transparent, rgba(11,12,14,.55) 40%, rgba(11,12,14,.94));
  padding: 5rem 1.8rem 1.8rem;
  transform: translateY(52px); transition: transform .5s var(--ease);
}
.sector:hover .overlay { transform: none; }
.sector .overlay .tag { color: #ff6b74; font-weight: 700; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; }
.sector h3 { font-size: 1.95rem; font-weight: 800; margin: .4rem 0 .5rem; }
.sector p { color: #d3d8de; font-size: .93rem; line-height: 1.6; opacity: 0; transition: opacity .4s .1s; }
.sector:hover p { opacity: 1; }
@media (max-width: 1080px) {
  .sector-grid { grid-template-columns: 1fr; }
  .sector { height: 300px; }
  .sector .overlay { transform: none; }
  .sector p { opacity: 1; }
}

/* ============ Werkwijze (stappen) ============ */
.steps { background: var(--paper); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem 1.6rem 1.9rem; background: #fff;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .3s;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(227,6,19,.4); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 800; font-size: 3rem; line-height: 1;
  color: rgba(227,6,19,.16); display: block; margin-bottom: .8rem;
}
.step h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.step p { color: var(--grey); font-size: .92rem; line-height: 1.65; }
.step .arrow {
  position: absolute; top: 50%; right: -1.35rem; z-index: 2; transform: translateY(-50%);
  color: var(--red); font-weight: 800; font-size: 1.3rem;
}
.step:last-child .arrow { display: none; }

/* ============ USP's (donker) ============ */
.usps { background: var(--ink); color: #fff; overflow: hidden; }
.usps .section-head p { color: var(--grey-2); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.usp {
  position: relative; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  padding: 2.2rem 1.7rem; background: linear-gradient(170deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  transition: transform .35s var(--ease), border-color .3s, background .3s;
}
.usp:hover { transform: translateY(-8px); border-color: rgba(227,6,19,.6); background: linear-gradient(170deg, rgba(227,6,19,.09), rgba(255,255,255,.02)); }
.usp .num {
  position: absolute; top: 1.2rem; right: 1.4rem;
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem;
  color: rgba(255,255,255,.08); line-height: 1;
}
.usp svg { width: 40px; height: 40px; stroke: var(--red); margin-bottom: 1.1rem; }
.usp h3 { font-size: 1.4rem; margin-bottom: .55rem; }
.usp p { color: var(--grey-2); font-size: .92rem; line-height: 1.65; }

/* ============ Tarieven / vergelijkingstabel ============ */
.compare { background: var(--paper-2); }
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table.compare-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 760px; }
.compare-table th, .compare-table td { padding: 1.05rem 1.3rem; text-align: left; font-size: .93rem; }
.compare-table thead th {
  background: var(--ink); color: #fff; font-family: var(--font-head); text-transform: uppercase;
  font-size: 1.02rem; letter-spacing: .06em; font-weight: 700;
}
.compare-table tbody tr { border-top: 1px solid var(--line); transition: background .2s; }
.compare-table tbody tr:hover { background: rgba(227,6,19,.035); }
.compare-table td:first-child { font-weight: 700; color: var(--ink); }
.compare-table td:first-child a { border-bottom: 2px solid var(--red); padding-bottom: 1px; transition: color .2s; }
.compare-table td:first-child a:hover { color: var(--red); }
.compare-table td { color: var(--grey); line-height: 1.55; }
.compare-table td.p { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--red); white-space: nowrap; }
.compare-table td .mini-btn {
  display: inline-block; background: var(--red); color: #fff; font-family: var(--font-head);
  font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: .85rem;
  padding: .4rem .95rem; border-radius: 4px; transition: background .2s, transform .2s;
}
.compare-table td .mini-btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.table-note { color: var(--grey); font-size: .86rem; margin-top: 1.1rem; line-height: 1.6; }

/* ============ CTA banner ============ */
.cta-banner {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background: var(--ink); padding: 7.5rem 0;
}
.cta-banner .bg-wrap {
  position: absolute; inset: -14% 0; z-index: 0;
  transform: translateY(calc(var(--scroll-in, .5) * -60px));
  will-change: transform;
}
.cta-banner .bg-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.cta-banner::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(rgba(11,12,14,.82), rgba(11,12,14,.88)); }
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 800; }
.cta-banner h2 span { color: var(--red); text-shadow: 0 0 50px rgba(227,6,19,.5); }
.cta-banner p { color: #dfe3e8; max-width: 560px; margin: 1.3rem auto 2.4rem; font-size: 1.1rem; line-height: 1.7; }
.cta-banner .hero-ctas { justify-content: center; opacity: 1; animation: none; }

/* ============ Kennisbank ============ */
.kb-teaser { background: var(--paper-2); }
.kb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.kb-card {
  display: flex; flex-direction: column; gap: .8rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.7rem;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .25s;
}
.kb-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(227,6,19,.4); }
.kb-card .kb-num { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: rgba(227,6,19,.18); line-height: 1; }
.kb-card h3 { font-size: 1.4rem; font-weight: 800; }
.kb-card p { color: var(--grey); font-size: .92rem; line-height: 1.65; flex: 1; }
.kb-card .link-arrow {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .92rem;
  color: var(--ink); border-bottom: 2px solid var(--red); padding-bottom: 2px; align-self: flex-start;
  transition: color .2s, gap .25s var(--ease);
}
.kb-card .link-arrow:hover { color: var(--red); gap: .75rem; }

/* Artikel-layout */
.article-body { padding: 4.5rem 0; }
.article-body .container { width: min(860px, 92vw); }
.article-body h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 800; margin: 2.4rem 0 .9rem; }
.article-body h2 em { font-style: normal; color: var(--red); }
.article-body h3 { font-size: 1.35rem; font-weight: 700; margin: 1.8rem 0 .6rem; }
.article-body p { color: #3c4148; line-height: 1.85; font-size: 1rem; margin-bottom: 1rem; }
.article-body ul, .article-body ol { margin: .4rem 0 1.2rem 1.2rem; display: grid; gap: .5rem; color: #3c4148; line-height: 1.7; }
.article-body a { color: var(--red); font-weight: 600; }
.article-body a:hover { text-decoration: underline; }
.article-body .toc {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.7rem; margin: 1.6rem 0 2.2rem;
}
.article-body .toc b { font-family: var(--font-head); text-transform: uppercase; font-size: 1.1rem; letter-spacing: .05em; }
.article-body .toc ol { margin: .8rem 0 0 1.2rem; gap: .35rem; }
.article-body .toc a { color: var(--ink); font-weight: 500; }
.article-body .toc a:hover { color: var(--red); }
.article-body table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.6rem; font-size: .93rem; }
.article-body table th { background: var(--ink); color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; text-align: left; padding: .8rem 1rem; }
.article-body table td { border: 1px solid var(--line); padding: .75rem 1rem; color: #3c4148; }
.article-body table tr:nth-child(even) td { background: var(--paper-2); }
.article-body blockquote {
  border-left: 4px solid var(--red); background: var(--paper-2);
  padding: 1.1rem 1.4rem; border-radius: 0 12px 12px 0; margin: 1.4rem 0;
  color: var(--ink); font-weight: 500; line-height: 1.7;
}
.article-meta { color: var(--grey); font-size: .85rem; margin-bottom: .4rem; }

/* ============ FAQ ============ */
.faq { background: var(--paper); }
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: .9rem; }
details {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; transition: border-color .25s, box-shadow .25s;
}
details[open] { border-color: rgba(227,6,19,.45); box-shadow: var(--shadow); }
summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.4rem; font-weight: 600; font-size: 1.02rem;
}
summary::-webkit-details-marker { display: none; }
summary .plus {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--line); color: var(--red);
  display: grid; place-items: center; font-weight: 700; font-size: 1.1rem;
  transition: transform .3s var(--ease), background .25s, border-color .25s;
}
details[open] summary .plus { transform: rotate(45deg); background: var(--red); border-color: var(--red); color: #fff; }
details .answer { padding: 0 1.4rem 1.3rem; color: var(--grey); line-height: 1.7; font-size: .96rem; }
details .answer a { color: var(--red); font-weight: 600; }

/* ============ Contact / reserveren ============ */
.contact { background: var(--paper-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-lines { display: grid; margin-top: 1.8rem; border-top: 1px solid var(--line); }
.contact-lines a {
  display: flex; align-items: center; gap: 1rem; font-weight: 600; padding: 1.05rem .2rem;
  border-bottom: 1px solid var(--line); transition: padding-left .3s var(--ease), color .2s;
}
.contact-lines a:hover { color: var(--red); padding-left: .8rem; }
.contact-lines svg { width: 21px; height: 21px; stroke: var(--red); flex: none; }
form.quote {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.2rem; display: grid; gap: 1.05rem;
  box-shadow: var(--shadow);
}
form.quote .form-head { font-family: var(--font-head); text-transform: uppercase; font-weight: 800; font-size: 1.7rem; }
form.quote .form-sub { color: var(--grey); font-size: .9rem; margin-top: -.5rem; }
form.quote label { font-size: .84rem; font-weight: 600; }
form.quote input, form.quote select, form.quote textarea {
  width: 100%; padding: .82rem 1rem; border-radius: 8px;
  border: 1px solid var(--line); background: var(--paper-2);
  color: var(--ink); font-family: inherit; font-size: .95rem; margin-top: .4rem;
}
form.quote input:focus, form.quote select:focus, form.quote textarea:focus {
  outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(227,6,19,.14);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ============ SEO tekstblok ============ */
.seo-text { background: var(--paper); border-top: 1px solid var(--line); padding: 4.5rem 0; }
.seo-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 1.2rem; }
.seo-text h2 em { font-style: normal; color: var(--red); }
.seo-text h3 { font-size: 1.3rem; font-weight: 700; margin: 1.6rem 0 .6rem; }
.seo-text p { color: var(--grey); line-height: 1.85; font-size: .97rem; max-width: 900px; }
.seo-text p + p { margin-top: 1rem; }
.seo-text a { color: var(--red); font-weight: 600; }
.seo-text a:hover { text-decoration: underline; }

/* ============ Footer ============ */
footer { background: var(--ink); color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr .9fr 1fr 1.2fr; gap: 2.2rem; margin-bottom: 2.8rem; }
footer h4 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.12rem; margin-bottom: 1.05rem; letter-spacing: .06em; }
footer h4::after { content: ""; display: block; width: 28px; height: 2px; background: var(--red); margin-top: .45rem; }
footer ul { list-style: none; display: grid; gap: .55rem; }
footer ul a, footer address { color: var(--grey-2); font-size: .92rem; font-style: normal; transition: color .2s, padding-left .25s; }
footer ul a:hover { color: #fff; padding-left: .3rem; }
footer address { line-height: 1.9; }
footer address a { color: var(--grey-2); }
footer address a:hover { color: #fff; }
footer .brand img { height: 42px; width: auto; margin-bottom: 1.1rem; filter: brightness(0) invert(1); }
footer .brand p { color: var(--grey-2); font-size: .9rem; line-height: 1.7; max-width: 330px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem;
  display: flex; justify-content: space-between; color: #5f6975; font-size: .84rem; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: #8b95a1; }
.footer-bottom a:hover { color: #fff; }

/* ============ Werkgebied / regio-chips ============ */
.werkgebied { background: var(--paper); border-top: 1px solid var(--line); }
.regio-grid { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; max-width: 960px; margin: 0 auto; }
.regio-grid .chip { text-decoration: none; display: inline-flex; align-items: center; gap: .45rem; }
.regio-grid .chip .zap { color: var(--red); font-size: .8rem; }
.regio-note { text-align: center; color: var(--grey); font-size: .93rem; margin-top: 1.8rem; line-height: 1.7; }
.regio-note a { color: var(--red); font-weight: 600; }
.regio-note a:hover { text-decoration: underline; }

/* ============ Reveal / hulpelementen ============ */
.reveal { opacity: 0; transform: translateY(42px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.visible { opacity: 1; transform: none; }

#toTop {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 190;
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--red); color: #fff; font-size: 1.25rem;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
  box-shadow: var(--shadow-red);
}
#toTop:hover { background: var(--ink); }
#toTop.show { opacity: 1; pointer-events: auto; transform: none; }

.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
  background: rgba(11,12,14,.96); backdrop-filter: blur(10px);
  padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
  gap: .7rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.mobile-cta a {
  flex: 1; text-align: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: .75rem .5rem; border-radius: 6px; font-size: 1rem;
  display: inline-flex; align-items: center; gap: .45rem;
}
.mobile-cta .call { background: #fff; color: var(--ink); }
.mobile-cta .offer { background: var(--red); color: #fff; }

/* ============ Responsive ============ */
@media (max-width: 1420px) { .nav .logo .logo-txt { display: none; } }
@media (max-width: 1200px) { .hero-machine { width: 44vw; } .nav ul { gap: .95rem; } }
@media (max-width: 1080px) {
  .hero-machine { display: none; }
  .spot-grid, .kb-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step .arrow { display: none; }
}
@media (max-width: 980px) {
  .nav ul, .nav > .btn { display: none; }
  #burger { display: flex; }
  .stats-grid, .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar .container { justify-content: center; text-align: center; }
  .mobile-cta { display: flex; }
  #toTop { bottom: 5.2rem; }
  footer { padding-bottom: 5.5rem; }
}
@media (max-width: 560px) {
  .stats-grid, .usp-grid, .footer-grid, .steps-grid { grid-template-columns: 1fr; }
  section { padding: 4.5rem 0; }
  .hero-inner { padding: 6rem 0 7rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .hero h1 .line > span { transform: none; }
  .hero p.lead, .hero-ctas, .rotator-strip, .hero-machine, .hero-trust { opacity: 1; }
  .reveal, .sector img { opacity: 1; transform: none; }
  .sector .wipe { display: none; }
  #cursor-dot, #cursor-ring { display: none; }
}
