/* ============================================================
   AB Flexibles — Design system
   ============================================================ */
:root {
  --red: #D90700;
  --red-soft: #EF4D48;
  --red-deep: #A80500;
  --dark: #2B161B;
  --dark-2: #3A2228;
  --ink: #241318;
  --grey: #5C555A;
  --cream: #F7F3F5;
  --paper: #FDFCFC;
  --line: #E9E0E3;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px rgba(43, 22, 27, .10);
  --shadow-lg: 0 24px 70px rgba(43, 22, 27, .18);
  --ease: cubic-bezier(.22, .8, .3, 1);
  --font: "Hanken Grotesk", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 130px) 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--dark); color: var(--white); }

/* ---------- Typography ---------- */
h1, h2, h3 { line-height: 1.08; font-weight: 800; letter-spacing: -.02em; }
h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; text-transform: uppercase; letter-spacing: .03em; line-height: 1.14;
  color: #F3E6E3;
}
h1 em { font-weight: 600; color: var(--red-soft) !important; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.25rem; letter-spacing: -.01em; }
h1 em, h2 em { font-style: normal; color: var(--red); }
.section-dark h2 em { color: var(--red-soft); }
p { color: var(--grey); }
.section-dark p { color: rgba(255,255,255,.72); }
p + p { margin-top: 1em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); }
.eyebrow-light { color: var(--red-soft); }
.eyebrow-light::before { background: var(--red-soft); }

.lead { font-size: 1.16rem; margin-top: 22px; max-width: 34em; }
.section-head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head h2 { margin-bottom: 0; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--red); }
.section-head .eyebrow-light::after { background: var(--red-soft); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; white-space: nowrap;
  font-weight: 700; font-size: .98rem; font-family: var(--font);
  border: none; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 5px 0 var(--red-deep), 0 12px 26px rgba(217,7,0,.25); }
.btn-primary:hover { background: var(--red-soft); box-shadow: 0 7px 0 var(--red-deep), 0 16px 30px rgba(217,7,0,.3); }
.btn-primary:active { box-shadow: 0 2px 0 var(--red-deep); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn-dark { background: var(--dark); color: var(--white); margin-top: 28px; box-shadow: 0 5px 0 #140a0d; }
.btn-dark:hover { background: var(--red); box-shadow: 0 5px 0 var(--red-deep); }
.btn-light { background: var(--white); color: var(--red); box-shadow: 0 5px 0 rgba(0,0,0,.22); }
.btn-sm { padding: 11px 22px; font-size: .9rem; }
.btn-block { width: 100%; }

.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--red); margin-top: 14px;
}
.text-link .arrow, .btn .arrow { transition: transform .3s var(--ease); }
.text-link:hover .arrow, .btn:hover .arrow { transform: translateX(5px); }
.text-link-light { color: var(--red-soft); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s;
}
.site-header.scrolled {
  background: rgba(43, 22, 27, .92);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 6px 30px rgba(0,0,0,.25);
}
.header-inner { display: flex; align-items: center; gap: 28px; }
.logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.logo-mark { width: 38px; height: 35px; color: var(--red-soft); flex: none; }
.logo-text { font-weight: 800; font-size: 1.15rem; line-height: 1.05; letter-spacing: -.01em; display: flex; flex-direction: column; }
.logo-text small { font-weight: 500; font-size: .62rem; letter-spacing: .08em; opacity: .65; text-transform: uppercase; }

.main-nav {
  margin-left: auto;
  background: var(--white); border-radius: 999px; padding: 5px;
  box-shadow: 0 12px 34px rgba(20, 8, 11, .28);
}
.main-nav > ul { display: flex; gap: 2px; }
.main-nav a {
  display: block; padding: 9px 13px; border-radius: 999px;
  color: var(--ink); font-weight: 600; font-size: .92rem;
  white-space: nowrap; transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--red); background: var(--cream); }
.has-sub { position: relative; }
.submenu {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s var(--ease);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(4px); }
.submenu a { color: var(--ink); padding: 9px 14px; border-radius: 8px; }
.submenu a:hover { background: var(--cream); color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 3px; }
.lang-switch button {
  border: none; background: transparent; color: rgba(255,255,255,.65);
  font: 700 .75rem var(--font); padding: 5px 10px; border-radius: 999px; cursor: pointer;
}
.lang-switch button.active { background: var(--white); color: var(--dark); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: .3s var(--ease); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(217,7,0,.22), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(239,77,72,.12), transparent 60%),
    linear-gradient(160deg, var(--dark) 0%, #1f0f13 100%);
  color: var(--white);
  padding: clamp(150px, 16vw, 210px) 0 clamp(80px, 9vw, 130px);
}
.hero-texture {
  position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 75%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.hero p.lead { color: rgba(255,255,255,.75); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 44px; }
.hero-trust li { display: flex; align-items: center; gap: 9px; font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.75); }
.hero-trust svg { width: 19px; height: 19px; color: var(--red-soft); flex: none; }

.hero-visual { position: relative; }
.hero-card {
  border-radius: 28px 150px 28px 28px; overflow: hidden; box-shadow: var(--shadow-lg);
  animation: heroFloat 7s ease-in-out infinite;
}
.hero-card img { width: 100%; height: 420px; object-fit: cover; }
.hero-card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 40px 24px 20px;
  background: linear-gradient(transparent, rgba(31,15,19,.9));
  font-size: .9rem; color: rgba(255,255,255,.8);
}
.hero-card figcaption strong { display: block; color: var(--white); font-size: 1.05rem; }
.hero-chip {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--ink);
  font-size: .82rem; font-weight: 700;
  padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow-lg);
}
.hero-chip strong { color: var(--red); }
.hero-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: #2fbf71; box-shadow: 0 0 0 4px rgba(47,191,113,.2); }
.hero-chip-1 { top: 6%; left: -8%; animation: chipFloat 5s ease-in-out infinite; }
.hero-chip-2 { bottom: 10%; right: -6%; animation: chipFloat 6s ease-in-out 1s infinite; }
@keyframes heroFloat { 50% { transform: translateY(-10px); } }
@keyframes chipFloat { 50% { transform: translateY(-8px); } }

/* ---------- Stats ---------- */
.stats { background: var(--red); color: var(--white); padding: 34px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat-num { display: block; font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -.02em; }
.stat-label { font-size: .84rem; opacity: .85; line-height: 1.35; display: block; max-width: 20ch; margin-inline: auto; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: var(--dark); color: rgba(255,255,255,.55); padding: 13px 0; }
.marquee-track { display: flex; gap: 34px; width: max-content; animation: marquee 30s linear infinite; font-weight: 600; font-size: .88rem; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.marquee-track i { font-style: normal; color: var(--red-soft); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Intro ---------- */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }

/* ---------- Products ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: transparent;
  transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); }
.product-img {
  overflow: hidden; aspect-ratio: 4 / 3;
  border-radius: var(--radius); background: var(--dark);
  box-shadow: 0 6px 24px rgba(43,22,27,.12);
  transition: box-shadow .4s var(--ease);
}
.product-card:hover .product-img { box-shadow: var(--shadow-lg); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-body { padding: 20px 6px 0; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { margin-bottom: 8px; }
.product-body p { font-size: .92rem; flex: 1; }
.product-body .text-link { font-size: .9rem; }

/* ---------- Kiezer ---------- */
.kiezer-card {
  background:
    radial-gradient(700px 400px at 110% -20%, rgba(239,77,72,.28), transparent 60%),
    var(--dark);
  color: var(--white); border-radius: calc(var(--radius) + 8px);
  padding: clamp(36px, 5vw, 64px);
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 4vw, 60px);
  box-shadow: var(--shadow-lg);
}
.kiezer-intro h2 { margin-bottom: 14px; }
.kiezer-q { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 12px; color: rgba(255,255,255,.9); }
.kiezer-step + .kiezer-step { margin-top: 26px; }
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-group button {
  font: 600 .92rem var(--font); color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.2);
  padding: 10px 20px; border-radius: 999px; cursor: pointer;
  transition: all .25s var(--ease);
}
.chip-group button:hover { border-color: var(--red-soft); color: var(--white); }
.chip-group button.selected { background: var(--red); border-color: var(--red); color: var(--white); }
.kiezer-result { margin-top: 30px; }
.kiezer-result-inner {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm); padding: 24px;
  animation: fadeUp .5s var(--ease);
}
.kiezer-badge {
  display: inline-block; background: var(--red); font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}
.kiezer-result h3 { margin-bottom: 8px; }
.kiezer-result p { margin-bottom: 18px; }

/* ---------- USP's ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.usp { padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.usp:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.usp-icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  display: grid; place-items: center; margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(217,7,0,.25);
}
.usp-icon svg { width: 28px; height: 28px; color: var(--white); }
.usp h3 { margin-bottom: 8px; }
.usp p { font-size: .92rem; }

/* ---------- Sectoren ---------- */
.sector-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.sector-tabs button {
  font: 700 .95rem var(--font); color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.16);
  padding: 12px 24px; border-radius: 999px; cursor: pointer;
  transition: all .25s var(--ease);
}
.sector-tabs button:hover { color: var(--white); border-color: rgba(255,255,255,.4); }
.sector-tabs button[aria-selected="true"] { background: var(--red); border-color: var(--red); color: var(--white); }
.sector-panel { display: none; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.sector-panel.active { display: grid; animation: fadeUp .5s var(--ease); }
.sector-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.sector-img img { width: 100%; height: 360px; object-fit: cover; }
.sector-text h3 { font-size: 1.6rem; margin-bottom: 12px; }
.check-list { margin-top: 18px; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 30px; font-weight: 600; font-size: .95rem; }
.section-dark .check-list li { color: rgba(255,255,255,.85); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 21px; height: 21px; border-radius: 50%;
  background: rgba(217,7,0,.14); color: var(--red);
  font-size: .75rem; font-weight: 800; display: grid; place-items: center;
}
.section-dark .check-list li::before { background: rgba(239,77,72,.2); color: var(--red-soft); }

/* ---------- Duurzaamheid ---------- */
.sustain-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.sustain-ring { position: relative; width: min(320px, 80%); margin-inline: auto; }
.sustain-ring svg { width: 100%; height: auto; }
.ring-progress { transition: stroke-dashoffset 1.6s var(--ease); }
.sustain-ring-label {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  font-size: .85rem; color: var(--grey); padding: 20%;
}
.sustain-ring-label strong { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--dark); line-height: 1.1; }

/* ---------- Proces ---------- */
.process-flow {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  counter-reset: step; position: relative;
}
.process-flow::before {
  content: ""; position: absolute; top: 26px; left: 6%; right: 6%;
  height: 2px; background: var(--line); z-index: 0;
}
.process-flow li { position: relative; z-index: 1; }
.step-num {
  display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 50%; background: var(--white); border: 2px solid var(--red);
  color: var(--red); font-weight: 800; font-size: 1.1rem; margin-bottom: 18px;
  transition: background .3s, color .3s;
}
.process-flow li:hover .step-num { background: var(--red); color: var(--white); }
.process-flow h3 { font-size: 1.05rem; margin-bottom: 6px; }
.process-flow p { font-size: .88rem; }

/* ---------- Over ons ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.about-img { border-radius: 28px 120px 28px 28px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 480px; object-fit: cover; }
.testimonial {
  margin: 26px 0; padding: 22px 26px;
  background: var(--white); border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; box-shadow: var(--shadow);
}
.testimonial p { font-weight: 600; color: var(--ink); font-style: italic; }
.testimonial cite { display: block; margin-top: 10px; font-style: normal; font-size: .85rem; color: var(--grey); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.accordion details {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden;
  transition: box-shadow .3s;
}
.accordion details[open] { box-shadow: var(--shadow); border-color: transparent; }
.accordion summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; font-weight: 700; cursor: pointer; list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.acc-icon { position: relative; width: 22px; height: 22px; flex: none; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--red); transition: transform .3s var(--ease);
}
.acc-icon::before { width: 14px; height: 2px; }
.acc-icon::after { width: 2px; height: 14px; }
.accordion details[open] .acc-icon::after { transform: rotate(90deg); }
.accordion details p { padding: 0 24px 22px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.contact-info { margin-top: 30px; display: grid; gap: 16px; }
.contact-info li { display: flex; align-items: center; gap: 14px; font-weight: 600; color: rgba(255,255,255,.85); }
.contact-info svg { width: 22px; height: 22px; color: var(--red-soft); flex: none; }
.contact-form {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: clamp(26px, 3.5vw, 44px);
  box-shadow: var(--shadow-lg); display: grid; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 7px; font-weight: 700; font-size: .86rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  font: 500 .96rem var(--font); color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 10px;
  padding: 13px 15px; background: var(--paper);
  transition: border-color .25s, box-shadow .25s;
}
.contact-form :is(input, select, textarea):focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(217,7,0,.1);
}
.form-success { color: #1a8a4e; font-weight: 700; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: #1f0f13; color: rgba(255,255,255,.65); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand p { font-size: .92rem; margin-top: 18px; max-width: 26ch; color: rgba(255,255,255,.55); }
.site-footer h4 { color: var(--white); font-size: .95rem; margin-bottom: 16px; }
.site-footer nav a { display: block; padding: 5px 0; font-size: .92rem; transition: color .2s; }
.site-footer nav a:hover { color: var(--red-soft); }
.socials { display: flex; gap: 10px; }
.socials a {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; background: rgba(255,255,255,.08); transition: background .25s;
}
.socials a:hover { background: var(--red); }
.socials svg { width: 18px; height: 18px; color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; font-size: .85rem;
}
.footer-bottom a:hover { color: var(--red-soft); }

/* ---------- Subpagina's ---------- */
.page-hero {
  background:
    radial-gradient(900px 500px at 90% -20%, rgba(217,7,0,.25), transparent 60%),
    linear-gradient(160deg, var(--dark) 0%, #1f0f13 100%);
  color: var(--white);
  padding: clamp(140px, 15vw, 190px) 0 clamp(56px, 7vw, 90px);
}
.page-hero .lead { color: rgba(255,255,255,.75); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 26px; }
.breadcrumb a { color: rgba(255,255,255,.75); font-weight: 600; }
.breadcrumb a:hover { color: var(--red-soft); }
.breadcrumb span::before { content: "/"; margin-right: 8px; color: rgba(255,255,255,.3); }
.page-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.two-col .col-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.two-col .col-img img { width: 100%; height: 400px; object-fit: cover; }

.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.type-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.type-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.type-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.type-card h3 { margin-bottom: 10px; }
.type-card .tag {
  display: inline-block; background: rgba(217,7,0,.08); color: var(--red);
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.type-card p { font-size: .93rem; }
.type-card .check-list { margin-top: 16px; }
.type-card .check-list li { font-size: .88rem; }

.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); font-size: .95rem; }
.spec-table th, .spec-table td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { background: var(--dark); color: var(--white); font-weight: 700; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table td:first-child { font-weight: 700; white-space: nowrap; }

.cta-band {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(239,77,72,.3), transparent 60%),
    var(--red);
  color: var(--white); border-radius: calc(var(--radius) + 8px);
  padding: clamp(36px, 5vw, 64px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
}
.cta-band h2 { max-width: 18em; }
.cta-band p { color: rgba(255,255,255,.85); }
.cta-band .btn-light:hover { background: var(--dark); color: var(--white); }

.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sector-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 18px rgba(43,22,27,.08); aspect-ratio: 4 / 3; display: block; }
.sector-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.sector-card:hover img { transform: scale(1.06); }
.sector-card .sector-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; background: linear-gradient(transparent 40%, rgba(31,15,19,.88));
  color: var(--white);
}
.sector-card h3 { color: var(--white); margin-bottom: 4px; }
.sector-card p { color: rgba(255,255,255,.75); font-size: .85rem; }

.machine-strip { text-align: center; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.machine-strip p { font-size: .85rem; letter-spacing: .04em; }
.machine-strip strong { color: var(--ink); font-weight: 700; }

.prose { max-width: 760px; }
.prose h2 { margin: 1.6em 0 .6em; font-size: 1.5rem; }
.prose ul { list-style: disc; padding-left: 1.3em; color: var(--grey); }
.prose li { margin: .3em 0; }

@media (max-width: 1080px) { .type-grid, .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } .two-col .col-img img { height: 300px; } }
@media (max-width: 560px) { .type-grid, .type-grid.cols-2, .sector-grid { grid-template-columns: 1fr; } .spec-table { font-size: .85rem; } .spec-table th, .spec-table td { padding: 11px 14px; } }

/* ---------- Fotoband ---------- */
.photo-band { height: clamp(260px, 38vw, 460px); overflow: hidden; }
.photo-band img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Hulp-bubbel ---------- */
.help-bubble {
  position: fixed; right: 0; bottom: 0; z-index: 90;
  background: var(--dark-2); color: var(--white);
  border-radius: 120px 0 0 0; padding: 44px 34px 30px 52px;
  box-shadow: 0 -8px 40px rgba(20,8,11,.3);
  max-width: 300px; text-align: center;
  transform: translateY(12px); opacity: 0;
  animation: bubbleIn .6s var(--ease) 1.2s forwards;
}
.help-bubble p { color: var(--white); font-weight: 700; font-size: 1.05rem; line-height: 1.35; margin-bottom: 14px; }
.help-bubble .btn { padding: 10px 24px; font-size: .9rem; }
.help-bubble-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 1.1rem; cursor: pointer; line-height: 1; padding: 4px;
}
.help-bubble-close:hover { color: var(--white); }
@keyframes bubbleIn { to { transform: none; opacity: 1; } }
@media (max-width: 700px) { .help-bubble { display: none; } }

/* ---------- Reveal animaties ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }
.reveal.in-view { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-card, .hero-chip, .marquee-track { animation: none; }
  * { transition-duration: .01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .product-grid, .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .process-flow { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .process-flow::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .main-nav {
    position: fixed; inset: 0; background: var(--dark);
    border-radius: 0; padding: 0; box-shadow: none;
    display: grid; place-items: center;
    opacity: 0; visibility: hidden; transition: opacity .3s;
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav > ul { flex-direction: column; text-align: center; gap: 10px; }
  .main-nav a { font-size: 1.3rem; color: rgba(255,255,255,.9); }
  .main-nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
  .submenu { display: none; }
  .nav-toggle { display: block; position: relative; z-index: 10; }
  .main-nav.open ~ .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .main-nav.open ~ .nav-toggle span:nth-child(2) { opacity: 0; }
  .main-nav.open ~ .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .lang-switch { display: none; }
  .header-actions .btn { display: none; }

  .hero-inner, .intro-grid, .kiezer-card, .sector-panel.active,
  .sustain-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; }
  .hero-chip-1 { left: 0; } .hero-chip-2 { right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-img img { height: 320px; }
}
@media (max-width: 560px) {
  .product-grid, .usp-grid, .process-flow { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card img { height: 300px; }
}
