/* Van Bodegraven Elektromotoren — styles.css v3
   Premium B2B engineering site
*/

/* ====== RESET & BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ====== DESIGN TOKENS ====== */
:root {
  --vb-orange:#f08812; --r-lg:16px; --text-body:#1f3350; --vb-navy:#0e377b; --vb-border:#d0daea; --vb-muted:#5a718c;
  --font-mono: 'IBM Plex Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Sans', system-ui, sans-serif; /* v11.67: was ongedefinieerd -> viel terug op systeemfont */
  --primary:        #002060;
  --primary-dark:   #001540;
  --primary-light:  #1a3d8f;
  --accent:         #F6960A;
  --accent-hover:   #e38908;
  --accent-dark:    #c47405;

  --atex-red:       #C1272D;
  --atex-red-soft:  #fdf4f4;

  --bg:             #ffffff;
  --bg-soft:        #f7f8fb;
  --bg-muted:       #eef0f6;
  --bg-dark:        #001540;

  --text:           #101628;
  --text-soft:      #3b4357;
  --text-muted:     #5e6a80;
  --text-subtle:    #7e869c;
  --text-inverse:   #ffffff;

  --border:         #e4e7ef;
  --border-strong:  #c8cfdd;

  --shadow-xs:  0 1px 2px rgba(0, 32, 96, 0.04);
  --shadow-sm:  0 2px 4px rgba(0, 32, 96, 0.06), 0 1px 2px rgba(0, 32, 96, 0.04);
  --shadow-md:  0 8px 24px rgba(0, 32, 96, 0.08), 0 2px 6px rgba(0, 32, 96, 0.05);
  --shadow-lg:  0 16px 40px rgba(0, 32, 96, 0.10), 0 4px 12px rgba(0, 32, 96, 0.06);
  --shadow-xl:  0 24px 60px rgba(0, 32, 96, 0.14), 0 8px 20px rgba(0, 32, 96, 0.08);

  --radius-sm: 4px;
  --radius:    8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --container: 1280px;

  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  --space-9: 96px; --space-10: 128px;

  --transition: 180ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 320ms cubic-bezier(.4,0,.2,1);
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; letter-spacing: -0.025em; }
/* v11.33: h1-promotie op toolpagina's, visueel identiek aan h2.section-title */
h1.section-title { line-height: 1.2; letter-spacing: -0.025em; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p { margin: 0; color: var(--text-soft); }
strong { color: var(--text); font-weight: 600; }
code, .mono {
  font-family: 'IBM Plex Sans', 'Menlo', 'Consolas', monospace;
  font-size: 0.9em;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

.accent { color: var(--accent); }

/* ====== LAYOUT ====== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
@media (min-width: 768px) { .container { padding: 0 var(--space-6); } }

/* v6.66/v6.71: STICKY SECTION-JUMP NAV — natuurlijk sticky gedrag.
   Verschijnt in document flow direct na hero. Wanneer bezoeker er overheen
   scrollt blijft hij plakken net onder de site-header.
   v6.71: top is exact gemeten header-hoogte (77px desktop, 64px mobile).
   Vorige top: 64px overlapte 13px met de header → top van de nav verstopt
   achter de header → "niet uitgelijnd" feel.
   Z-index 40 = onder site-header (z=50). */
.section-jump {
  position: -webkit-sticky;   /* oude iOS Safari */
  position: sticky;
  top: calc(var(--topbar-h, 47px) + var(--vb-header-h, 77px));
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 32, 96, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) { .section-jump { top: calc(var(--topbar-h, 46px) + var(--vb-header-h, 64px)); } }

/* v6.67/v6.71: scroll-margin-top op alle sprong-targets.
   Stack: site-header (77px) + section-jump (~47px) + 16px breathing = 140px desktop.
   Mobile: 64 + 44 + 12 = 120px. */
#workshop, #engineering, #dormot, #marine, #trident, #abb,
#dc, #calc, #kennisbank, #pricelist, #contact,
#lines, #faq, #marine-hub, #dimsheet, #vfd, #cases, #partner {
  scroll-margin-top: 148px;  /* v11.41 */
}
@media (max-width: 768px) {
  #workshop, #engineering, #dormot, #marine, #trident, #abb,
  #dc, #calc, #kennisbank, #pricelist, #contact,
  #lines, #faq, #marine-hub, #dimsheet, #vfd, #cases, #partner {
    scroll-margin-top: 180px;   /* v11.41, was 172; v7.9: klaart mobiele header (89) + sticky balk (~54), incl. ~26px topbar-inklap tijdens scroll */
  }
}
.section-jump-inner {
  padding: 0;
}
.section-jump-scroll {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  /* v6.71: negatieve margin = pixel-perfect alignment van eerste link met
     container-edge. Anders verspringt de tekst 14px naar binnen door de
     pill-padding op de eerste link. */
  margin-left: -14px;
  margin-right: -14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
/* v11.13: op desktop de links evenredig over de volle breedte verdelen
   (geen scroll nodig). Op mobiel behoudt overflow-x het scroll-gedrag. */
@media (min-width: 769px) {
  .section-jump-scroll {
    justify-content: space-between;
    margin-left: 0;
    margin-right: 0;
  }
}
.section-jump-scroll::-webkit-scrollbar {
  display: none;
}
.section-jump-link {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted, #64748b);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  border: 1px solid transparent;
}
.section-jump-link:hover {
  background: rgba(0, 32, 96, 0.06);
  color: var(--primary);
}
.section-jump-link.is-active {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

/* Fade edges to suggest horizontal scroll on mobile */
@media (max-width: 768px) {
  .section-jump-inner {
    position: relative;
  }
  .section-jump-inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95));
    pointer-events: none;
  }
  .section-jump-link {
    font-size: 0.75rem;
    padding: 6px 11px;
  }
}

section { padding: var(--space-6) 0; }
section.tight { padding: var(--space-5) 0; }
section.compact { padding: var(--space-4) 0; }
@media (min-width: 1024px) { section { padding: var(--space-7) 0; } }

.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--space-2);
  position: relative;
  padding-left: 24px;
}
.section-eyebrow::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 16px; height: 1px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  color: var(--text);
  max-width: 820px;
  margin-bottom: var(--space-3);
}
.section-lead {
  max-width: 760px;
  font-size: 1rem;
  color: var(--text-soft);
  margin-bottom: var(--space-5);
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-secondary {
  background: #fff;
  color: var(--primary);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 10px 18px;
}
.btn-ghost:hover { background: var(--bg-muted); color: var(--primary); }

.btn-on-dark {
  background: #fff;
  color: var(--primary);
}
.btn-on-dark:hover {
  background: var(--accent);
  color: #fff;
}

/* ====== TOPBAR ====== */
.topbar {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.topbar-left { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.topbar-left strong { color: #fff; }
.topbar-left .phone { color: var(--accent); font-weight: 600; }
.topbar-right { display: flex; align-items: center; gap: var(--space-3); }
.topbar-since { color: rgba(255,255,255,0.6); font-size: 0.75rem; }

.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 2px;
}
.lang-switcher button {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: none;
  padding: 4px 10px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.05em;
}
.lang-switcher button:hover { color: #fff; }
.lang-switcher button.active {
  background: var(--accent);
  color: #fff;
}

/* ====== HEADER / NAV ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-5);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 200ms ease;
}
.logo img { display: none; }  /* fallback uit */

/* ===== Header logo container met officieel VBE logo ===== */
.header-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 0;
}
.header-logo-img {
  display: block !important;  /* override .logo img display:none */
  height: 48px;  /* v11.42: logo groter */
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 2px 4px rgba(0, 32, 96, 0.12));
  transition: filter 300ms ease, transform 400ms ease;
}
.home .header-logo-img {
  height: 52px;  /* v11.42: homepage extra groot (mobiel) */
}
.logo:hover .header-logo-img {
  filter: drop-shadow(0 3px 8px rgba(246, 150, 10, 0.3));
  transform: scale(1.02);
}



.logo-tagline {
  display: none;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  border-left: 2px solid rgba(0, 32, 96, 0.15);
  padding-left: 12px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .logo-tagline { display: inline-block; }
  .header-logo-img { height: 54px; }  /* v11.42: logo groter */
  .home .header-logo-img { height: 62px; }  /* v11.42: homepage extra groot */
}

@media (prefers-reduced-motion: reduce) {
  .header-logo-pulse,
  .header-logo-img { animation: none; transition: none; }
}

.main-nav {
  display: none;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 960px) { .main-nav { display: flex; } }

.main-nav a {
  color: var(--text-soft);
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--primary); }
.main-nav a.active { color: var(--primary); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.header-cta {
  display: none;
}
@media (min-width: 768px) { .header-cta { display: inline-flex; } }

/* ====== HERO ====== */
.hero {
  background: linear-gradient(135deg, #001540 0%, #002060 40%, #1a3d8f 100%);
  color: var(--text-inverse);
  padding: var(--space-6) 0 var(--space-5);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(246, 150, 10, 0.15) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26, 61, 143, 0.5) 0%, transparent 65%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: rgba(246, 150, 10, 0.15);
  border: 1px solid rgba(246, 150, 10, 0.35);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-5);
}
.hero-eyebrow::before { content: none; }
.hero h1 {
  color: #fff;
  max-width: 900px;
  margin-bottom: var(--space-4);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.1;
}
.hero h1 .accent { color: var(--accent); }
.hero-lead {
  max-width: 680px;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--space-5);
}
.hero-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 768px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.hero-stat-value {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.35;
}

/* ====== USP STRIP ====== */
.usp-strip {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: var(--space-5) 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 768px) { .usp-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-4); } }
.usp-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.usp-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(246, 150, 10, 0.12);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.usp-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}
.usp-item span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ====== INTRO SECTION (OVER ONS) ====== */
.intro-section {
  background: var(--bg);
  position: relative;
}
.intro-header {
  max-width: 820px;
  margin-bottom: var(--space-5);
}
.intro-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
/* Medium: 2×2 grid (4 cards netjes in vierkant) */
@media (min-width: 640px)  { .intro-cards { grid-template-columns: repeat(2, 1fr); } }
/* Large: 4 kolommen naast elkaar */
@media (min-width: 1100px) { .intro-cards { grid-template-columns: repeat(4, 1fr); } }
.intro-card {
  padding: var(--space-4) var(--space-5);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  height: 100%;
}
.intro-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.intro-card-icon {
  width: 38px; height: 38px;
  background: rgba(246, 150, 10, 0.12);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: var(--space-1);
}
.intro-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-1);
}
.intro-card p {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ====== LINES SECTION (DORMOT) ====== */
.lines-section { background: var(--bg-soft); }
.lines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 768px) { .lines-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lines-grid { grid-template-columns: repeat(4, 1fr); } }

.line-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.line-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--border);
  transition: background var(--transition);
}
.line-card.available::before { background: var(--accent); }
.line-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.line-card.available:hover::before { background: var(--accent); }

.line-card-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: var(--space-3);
}
.line-card-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.line-card-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.line-card.available .line-card-tag {
  background: rgba(246, 150, 10, 0.12);
  color: var(--accent-dark);
}
.line-card.soon .line-card-tag {
  background: var(--bg-muted);
  color: var(--text-muted);
}
.line-card-title {
  font-size: 0.9375rem;
  color: var(--text-soft);
  font-weight: 500;
}
.line-card-desc {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin: var(--space-1) 0 var(--space-2);
}
.line-specs {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.line-spec {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: 0.8125rem;
}
.line-spec-label { color: var(--text-muted); }
.line-spec-value { color: var(--text); font-weight: 500; text-align: right; }
.line-card-cta {
  margin-top: var(--space-3);
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 0.8125rem;
}

/* v6.77: line-card-cta in Dormot rood — sterkere merkbeleving.
   Geldt voor alle drie de tiers (Core, Pro, Renew). De ::before-streep van
   line-card behoudt de per-tier tint (coral/red/bordeaux), maar de CTA
   button is overal de hoofd Dormot rood zodat het visueel rust is. */
.line-card-cta.btn-primary {
  background: var(--dormot-red);
  border-color: var(--dormot-red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(227, 6, 19, 0.25);
  transition: background 150ms ease, border-color 150ms ease, transform 100ms ease, box-shadow 150ms ease;
}
.line-card-cta.btn-primary:hover {
  background: var(--dormot-red-dark);
  border-color: var(--dormot-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(227, 6, 19, 0.35);
}
.line-card-cta.btn-primary:active {
  transform: translateY(0);
}
.line-card-cta.btn-primary:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.35);
  outline-offset: 2px;
}
/* btn-secondary (Renew "notify me" / coming soon) krijgt ook een rode hover-rand */
.line-card-cta.btn-secondary {
  border-color: rgba(227, 6, 19, 0.35);
  color: var(--dormot-red);
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.line-card-cta.btn-secondary:hover {
  background: var(--dormot-red-soft);
  border-color: var(--dormot-red);
  color: var(--dormot-red-dark);
}

/* ====== COMPARE TABLE ====== */
.compare-section { background: var(--bg); }
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}
.compare-table th,
.compare-table td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  vertical-align: top;
}
.compare-table th {
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--text);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.compare-table th.col-feature {
  width: 200px;
  color: var(--text-muted);
}
.compare-table th.col-line-pro {
  background: linear-gradient(180deg, rgba(246, 150, 10, 0.08), rgba(246, 150, 10, 0.04));
  color: var(--primary);
}
.compare-table td.col-feature {
  color: var(--text-muted);
  font-weight: 500;
}
.compare-table td.col-line-pro {
  background: rgba(246, 150, 10, 0.03);
  font-weight: 500;
  color: var(--text);
}
.compare-table tbody tr:hover { background: var(--bg-soft); }
.compare-table tbody tr:hover td.col-line-pro {
  background: rgba(246, 150, 10, 0.08);
}
.compare-table .tbd {
  color: var(--text-subtle);
  font-style: italic;
  font-size: 0.8125rem;
}

/* ====== ENGINEERING / MAATWERK ====== */
.eng-section {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

/* v6.66: Engineering sub-block binnen workshop — gemerged met workshop sectie.
   Visueel afgescheiden van workshop-grid maar binnen hetzelfde container.
   eng-section blijft hierboven voor backward compat met andere pagina's, maar
   wordt op de homepage niet meer gerenderd. */
.workshop-eng-bridge {
  margin-top: 56px;
  padding-top: 56px;
  position: relative;
}
.workshop-eng-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.workshop-eng-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-6);
}
.workshop-eng-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.workshop-eng-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 var(--space-3);
  line-height: 1.2;
}
.workshop-eng-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Unified workshop + engineering CTA: één blok onderaan ipv twee aparte */
.workshop-unified-cta {
  margin-top: var(--space-7);
  padding: var(--space-6);
  background: linear-gradient(135deg, #0e377b 0%, #1a4a8a 100%);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-5);
  align-items: center;
  box-shadow: 0 12px 40px rgba(14, 55, 123, 0.18);
}
.workshop-cta-left h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.workshop-cta-left p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.5;
}
.workshop-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.workshop-cta-actions .btn {
  white-space: nowrap;
}
.workshop-cta-actions .btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 700;
  border-radius: 8px;
}
.workshop-cta-actions .btn-primary:hover {
  background: #d97a14;
  transform: translateY(-1px);
}
.workshop-cta-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 8px;
}
.workshop-cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.workshop-cta-sub {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}
@media (max-width: 768px) {
  .workshop-unified-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-5);
    min-width: 0;
  }
  .workshop-cta-left { min-width: 0; }
  .workshop-cta-left h4 { font-size: 1.125rem; overflow-wrap: break-word; }
  .workshop-cta-sub { overflow-wrap: break-word; }
  .workshop-cta-actions {
    justify-content: center;
    flex-direction: column;
    min-width: 0;
  }
  .workshop-cta-actions .btn {
    white-space: normal;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .workshop-eng-bridge {
    margin-top: 40px;
    padding-top: 40px;
  }
}
@media (max-width: 480px) {
  .workshop-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .workshop-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.eng-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}
@media (min-width: 768px) { .eng-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .eng-grid { grid-template-columns: repeat(3, 1fr); } }

.eng-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.eng-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.eng-card-icon {
  width: 44px; height: 44px;
  background: rgba(0, 32, 96, 0.08);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: var(--space-2);
}
.eng-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
}
.eng-card p {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.eng-card ul {
  margin-top: var(--space-3);
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.eng-card li {
  font-size: 0.8125rem;
  color: var(--text-soft);
  padding-left: 18px;
  position: relative;
}
.eng-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 2px;
  background: var(--accent);
}

/* Klantwaarde blokken */
.eng-value {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.eng-value h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}
.eng-value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 768px) { .eng-value-grid { grid-template-columns: repeat(3, 1fr); } }
.eng-value-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.eng-value-item-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.eng-value-check {
  width: 28px; height: 28px;
  background: rgba(246, 150, 10, 0.12);
  color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.eng-value-item strong { font-size: 1rem; color: var(--text); }
.eng-value-item p { font-size: 0.875rem; color: var(--text-soft); line-height: 1.5; }

.eng-callout {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-7);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) { .eng-callout { grid-template-columns: 1fr auto; } }
.eng-callout h3 {
  color: #fff;
  margin-bottom: var(--space-2);
  font-size: 1.25rem;
}
.eng-callout p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
}

/* ====== ABB SECTION ====== */
.abb-section { background: var(--bg); }
.abb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
/* ABB grid: 3 kolommen op desktop, ATEX-card volle breedte */
@media (min-width: 768px) {
  .abb-grid { grid-template-columns: repeat(3, 1fr); }
  .abb-card.atex {
    grid-column: 1 / -1;       /* Volle breedte */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0 40px;
    align-items: start;
  }
  /* Head en specs links, desc rechts, ATEX-subs onderaan vol breed */
  .abb-card.atex .abb-card-head  { grid-column: 1; grid-row: 1; }
  .abb-card.atex .abb-card-desc  { grid-column: 2; grid-row: 1 / 3; align-self: start; padding-top: 4px; }
  .abb-card.atex .abb-card-specs { grid-column: 1; grid-row: 2; }
  .abb-card.atex .atex-subs      { grid-column: 1 / -1; grid-row: 3; flex-direction: row; gap: 14px; margin-top: 16px; }
  .abb-card.atex .atex-sub       { flex: 1; }
  .abb-card.atex > .btn          { grid-column: 1; grid-row: 4; margin-top: 16px; width: auto; align-self: start; }
}

.abb-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.abb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--primary);
}
.abb-card.atex::before { background: var(--atex-red); }
.abb-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.abb-card-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: var(--space-3);
}
.abb-card-head-left {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  flex: 1;
}
.abb-card-icon {
  width: 40px; height: 40px;
  background: rgba(0, 32, 96, 0.08);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.abb-card.atex .abb-card-icon {
  background: var(--atex-red-soft);
  color: var(--atex-red);
}
.abb-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.abb-card.atex .abb-card-name { color: var(--atex-red); }
.abb-card-title {
  font-size: 0.9375rem;
  color: var(--text-soft);
  font-weight: 500;
  margin-top: 2px;
}
.abb-card-code {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-muted);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}
.abb-card-desc {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.abb-card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px dashed var(--border);
}
.abb-card-spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.abb-card-spec-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

/* ATEX sub-series */
.atex-subs {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.atex-subs-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--atex-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-1);
}
.atex-sub {
  background: var(--atex-red-soft);
  border: 1px solid rgba(193, 39, 45, 0.15);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
}
.atex-sub-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--atex-red);
  margin-bottom: 4px;
}
.atex-sub-desc {
  font-size: 0.8125rem;
  color: var(--text-soft);
  line-height: 1.45;
}

/* ====== VFD SECTION ====== */
.vfd-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.vfd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
@media (min-width: 768px) { .vfd-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vfd-grid { grid-template-columns: repeat(4, 1fr); } }

.vfd-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: all var(--transition);
}
.vfd-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.vfd-card-icon {
  width: 44px; height: 44px;
  background: rgba(246, 150, 10, 0.12);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-1);
}
.vfd-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.vfd-card p {
  font-size: 0.8125rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.vfd-cta {
  display: flex;
  justify-content: flex-start;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ====== USE CASES ====== */
.cases-section { background: var(--bg-soft); }

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 768px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }

.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-slow);
  box-shadow: var(--shadow-sm);
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

/* Banner met gradient + icon + tag */
.case-banner {
  height: 110px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  position: relative;
  border-top: 3px solid var(--primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(246, 150, 10, 0.25) 0%, transparent 50%);
}
.case-banner-icon {
  font-size: 2.25rem;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}
.case-tag {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.02em;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.case-body {
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.case-head { margin-bottom: var(--space-2); }
.case-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: var(--space-1);
}
.case-customer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
}
.case-customer::before {
  content: '◆';
  color: var(--accent);
  font-size: 0.6rem;
}

.case-strategy {
  padding: var(--space-3) var(--space-4);
  background: rgba(246, 150, 10, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  margin: var(--space-2) 0;
}
.case-strategy-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.case-strategy-label-icon { font-size: 0.85rem; }
.case-strategy-statement {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

.case-field {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: var(--space-3);
  align-items: start;
}
.case-field-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: none;
  padding-top: 2px;
}
.case-field-value {
  font-size: 0.8125rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.case-result {
  margin-top: auto;
  padding: var(--space-3) var(--space-4);
  background: rgba(23, 167, 79, 0.06);
  border-left: 3px solid #17a74f;
  border-radius: var(--radius-sm);
}
.case-result-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0d7a3a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.case-result-statement {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

/* ====== PRICELIST ====== */
.pricelist-section { background: var(--bg-soft); }

.discount-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.discount-panel h3 {
  font-size: 1rem;
  margin-bottom: var(--space-1);
}
.discount-panel-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}
.discount-inputs {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) { .discount-inputs { grid-template-columns: repeat(2, 1fr) auto; align-items: end; } }
.discount-input {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.discount-input label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.discount-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.discount-input input[type="number"] {
  width: 100%;
  padding: 10px 40px 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color var(--transition);
}
.discount-input input[type="number"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 32, 96, 0.1);
}
.discount-input-pct {
  position: absolute;
  right: 14px;
  color: var(--text-muted);
  font-size: 0.875rem;
  pointer-events: none;
}

.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  align-items: flex-end;
}
.filter-group { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.filter-group:first-child { flex: 2 1 240px; }  /* zoekveld breder */
.filter-group { flex: 1 1 130px; }
.filter-group select#filter-iec { max-width: 180px; }
.filter-group select#filter-power { max-width: 140px; }
.filter-group select#filter-brand { max-width: 140px; }
.filter-group:has(#filter-line) { flex: 2 1 220px; max-width: 320px; }
.filter-mount-group { flex: 1 1 auto; }
.filter-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.filter-group input,
.filter-group select {
  padding: 9px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text);
  background: #fff;
  width: 100%;
}
.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 32, 96, 0.1);
}

.filter-atex {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 9px 14px;
  background: var(--atex-red-soft);
  border: 1px solid rgba(193, 39, 45, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--atex-red);
  transition: all var(--transition);
  user-select: none;
}
.filter-atex input { margin: 0; cursor: pointer; accent-color: var(--atex-red); }
.filter-atex:hover { background: rgba(193, 39, 45, 0.08); }

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  align-items: center;
}
.active-filters-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--bg-muted);
  border-radius: 12px;
  font-size: 0.8125rem;
  color: var(--text);
}
.chip button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  font-weight: 400;
}
.chip button:hover { color: var(--text); }

/* Table */
.pricetable-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricetable-scroll { overflow-x: auto; }
.pricetable {
  width: 100%;
  min-width: 1020px;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.pricetable th {
  background: var(--bg-soft);
  font-weight: 600;
  text-align: left;
  padding: 12px 14px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  position: sticky;
  top: 0;
  z-index: 1;
}
.pricetable th:hover { color: var(--primary); }
.pricetable th.sortable::after {
  content: ' ↕';
  opacity: 0.3;
  font-size: 0.7rem;
}
.pricetable th.sort-asc::after  { content: ' ↑'; opacity: 1; color: var(--accent); }
.pricetable th.sort-desc::after { content: ' ↓'; opacity: 1; color: var(--accent); }
.pricetable td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  white-space: nowrap;
}
.pricetable tr:hover td { background: var(--bg-soft); }
.pricetable tr.selected td { background: rgba(246, 150, 10, 0.06); }
.pricetable tr.atex td { background: rgba(193, 39, 45, 0.02); }
.pricetable tr.atex:hover td { background: rgba(193, 39, 45, 0.05); }
.pricetable tr.atex.selected td { background: rgba(246, 150, 10, 0.06); }

.col-brand-cell { display: inline-flex; align-items: center; gap: 6px; }
.brand-logo { height: 22px; width: auto; }  /* v11.62: alleen logo, groter */
.brand-name {
  font-size: 0.8125rem;
  font-weight: 600;
}
.brand-name.dormot { color: var(--primary); }
.brand-name.abb { color: #ff000f; }

.badge-ie {
  display: inline-block;
  padding: 2px 7px;
  background: var(--primary);
  color: #fff;
  border-radius: 3px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  margin-right: 6px;
}
.badge-ie.ie4 { background: var(--accent); }
.badge-ie.ie5 { background: var(--atex-red); }

.badge-atex {
  display: inline-block;
  padding: 2px 7px;
  background: var(--atex-red);
  color: #fff;
  border-radius: 3px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-right: 6px;
}
.type-cell { display: flex; flex-direction: column; gap: 2px; }
.type-cell-main {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}
.type-cell-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.type-cell-ex {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.7rem;
  color: var(--atex-red);
  font-weight: 600;
  margin-top: 2px;
}

.dim-btn {
  background: transparent;
  border: 1px dashed var(--border-strong);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.dim-btn:hover { background: var(--primary); color: #fff; border-style: solid; border-color: var(--primary); }

.price-gross { color: var(--text-muted); text-decoration: line-through; font-family: 'IBM Plex Sans', system-ui, sans-serif; }
.price-net {
  color: var(--text);
  font-weight: 600;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}

.availability-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.availability-ok       { background: #17a74f; }
.availability-limited  { background: var(--accent); }
.availability-order    { background: #7e869c; }
.availability-text { font-size: 0.8125rem; color: var(--text-soft); }
.availability-note {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 1px;
  margin-left: 14px;
}

.sameday-badge {
  display: inline-block;
  padding: 2px 7px;
  background: rgba(23, 167, 79, 0.12);
  color: #0d7a3a;
  border-radius: 3px;
  font-size: 0.6875rem;
  font-weight: 700;
  margin-left: 4px;
  letter-spacing: 0.04em;
}

.pricetable input[type="checkbox"] { cursor: pointer; accent-color: var(--accent); width: 16px; height: 16px; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.pag-info { font-size: 0.8125rem; color: var(--text-muted); }
.pag-controls { display: flex; gap: var(--space-2); }
.pag-btn {
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all var(--transition);
}
.pag-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.pag-btn:not(:disabled):hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Selection bar */
.selection-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  box-shadow: 0 -4px 20px rgba(0, 32, 96, 0.25);
  z-index: 40;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}
.selection-bar.active { transform: translateY(0); }
.selection-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.selection-count {
  font-weight: 600;
  font-size: 0.9375rem;
}
.selection-total { font-size: 0.875rem; color: rgba(255,255,255,0.85); }
.selection-total strong {
  color: var(--accent);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 700;
  margin-left: 6px;
}
.selection-actions { display: flex; gap: var(--space-2); }

/* Empty / Loading */
.empty-state, .loading-state {
  padding: var(--space-8) var(--space-4);
  text-align: center;
  background: #fff;
}
.empty-state h3, .loading-state h3 {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: var(--space-2);
}
.empty-state p, .loading-state p {
  color: var(--text-subtle);
  font-size: 0.875rem;
}
.spinner {
  width: 32px; height: 32px;
  margin: 0 auto var(--space-4);
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.count-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 8px;
}

/* ====== CONTACT SECTION ====== */
.contact-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
}
.contact-section .section-eyebrow { color: var(--accent); }
.contact-section h2 { color: #fff; }
.contact-section .section-lead { color: rgba(255,255,255,0.85); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
@media (min-width: 900px) { .contact-layout { grid-template-columns: 3fr 2fr; } }

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: #fff;
  transition: all var(--transition);
}
.contact-channel:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(246, 150, 10, 0.4);
  color: #fff;
  transform: translateX(4px);
}
.contact-channel-icon {
  width: 44px; height: 44px;
  background: rgba(246, 150, 10, 0.15);
  color: var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}
.contact-channel-body { display: flex; flex-direction: column; gap: 2px; }
.contact-channel-title {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.contact-channel-value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
}
.contact-channel-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}

.contact-benefits {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}
.contact-benefits h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: var(--space-4);
}
.contact-benefits ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.contact-benefits li {
  padding-left: 28px;
  position: relative;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}
.contact-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0; top: -1px;
  width: 20px; height: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ====== FOOTER ====== */
.site-footer {
  background: #000a24;
  color: rgba(255,255,255,0.7);
  padding: var(--space-8) 0 var(--space-4);
  font-size: 0.875rem;
  position: relative;
}
/* Subtiele accent-lijn bovenin footer */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(246, 150, 10, 0.3) 30%, rgba(246, 150, 10, 0.3) 70%, transparent 100%);
}

/* ====== FOOTER STATEMENT BAR (brand + stats) ====== */
.footer-statement {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
  margin-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 900px) {
  .footer-statement {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
  }
}

.footer-brand-compact {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.footer-brand-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.footer-brand-slogan {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.2;
  margin-top: 2px;
  margin-bottom: 2px;
}
.footer-brand-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}

/* Stats bar rechts: 3 numbers met dividers */
.footer-statement-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer-meta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.footer-meta-item strong {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}
.footer-meta-item span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.footer-meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 600px) {
  .footer-meta-divider { display: none; }
  .footer-statement-meta { gap: var(--space-5); }
}

/* ====== FOOTER GRID (nu 4 koloms, brand zit bovenin statement) ====== */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1.4fr; } }

.footer-col h4 {
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); margin: 0; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 150ms ease, transform 150ms ease;
  display: inline-block;
}
.footer-col a:hover { color: var(--accent); transform: translateX(2px); }

/* ====== FOOTER OFFICES — schoner layout ====== */
.footer-offices {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-office {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-2) 0;
  margin: 0;
}
.footer-office-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.footer-office-label {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.footer-office-tag {
  margin-left: auto;
  padding: 2px 8px;
  background: rgba(246, 150, 10, 0.15);
  border: 1px solid rgba(246, 150, 10, 0.3);
  color: var(--accent);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 3px;
}

/* Mini vlaggen */
.footer-office-flag {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.footer-office-flag-nl {
  background: linear-gradient(to bottom, #AE1C28 33%, #fff 33%, #fff 66%, #21468B 66%);
}
.footer-office-flag-gr {
  position: relative;
  /* 9 horizontale strepen (5 blauw, 4 wit) */
  background:
    linear-gradient(to bottom,
      #0D5EAF 0%, #0D5EAF 11.11%, #fff 11.11%, #fff 22.22%,
      #0D5EAF 22.22%, #0D5EAF 33.33%, #fff 33.33%, #fff 44.44%,
      #0D5EAF 44.44%, #0D5EAF 55.55%, #fff 55.55%, #fff 66.66%,
      #0D5EAF 66.66%, #0D5EAF 77.77%, #fff 77.77%, #fff 88.88%,
      #0D5EAF 88.88%, #0D5EAF 100%);
  overflow: hidden;
}
/* blauw kanton linksboven (5 strepen = 55.55% hoog, even breed) met wit kruis */
.footer-office-flag-gr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55.55%;
  height: 55.55%;
  background:
    /* verticale arm van het kruis */
    linear-gradient(to right, transparent 40%, #fff 40%, #fff 60%, transparent 60%),
    /* horizontale arm van het kruis */
    linear-gradient(to bottom, transparent 40%, #fff 40%, #fff 60%, transparent 60%),
    #0D5EAF;
}
.footer-office-flag-sg {
  background: linear-gradient(to bottom, #EF3340 50%, #fff 50%);
}
.footer-office-flag-cn {
  background: #DE2910;
}

.footer-office-line {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: color 150ms ease;
  line-height: 1.4;
}
.footer-office-line:hover { color: var(--accent); }
.footer-office-line strong { color: #fff; font-weight: 600; font-family: var(--font-mono); letter-spacing: 0.01em; }

/* ====== FOOTER BOTTOM — legal + financial in 2 rows ====== */
.footer-bottom {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-bottom-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: flex-start;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .footer-bottom-row {
    flex-direction: row;
    align-items: center;
    gap: var(--space-3);
  }
  .footer-bottom-financial { justify-content: flex-start; }
}
.footer-copyright { color: rgba(255, 255, 255, 0.6); font-weight: 500; }

.footer-bottom-divider {
  display: none;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
}
@media (min-width: 768px) {
  .footer-bottom-divider { display: block; }
}

/* Financial info: KvK, BTW, IBAN — monospace, subtle */
.footer-financial-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-financial-label {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-financial-value {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

/* Extra: hide oude footer-brand standalone styling (nu footer-brand-compact) */
.footer-brand { display: none; }
.footer-brand-compact .footer-logo-wrap { margin-bottom: 0; }

/* ====== MODAL ====== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 36, 0.7);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  animation: fadeIn 180ms;
}
.modal-overlay.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: #fff;
  border-radius: var(--radius-md);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: slideUp 220ms;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-head {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: #fff;
}
.modal-head h3 { font-size: 1.125rem; color: var(--text); }
.modal-close {
  background: var(--bg-muted);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--primary); color: #fff; }
.modal-body { padding: var(--space-6); }
.modal-foot {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
}

/* Dimensions table */
.dim-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; margin-bottom: var(--space-4); }
.dim-table th, .dim-table td { padding: 8px 12px; border-bottom: 1px solid var(--border); text-align: left; }
.dim-table th { background: var(--bg-soft); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.dim-table td { font-family: 'IBM Plex Sans', system-ui, sans-serif; }

.dim-schema {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  text-align: center;
  border: 1px dashed var(--border-strong);
}
.dim-tip {
  background: rgba(246, 150, 10, 0.08);
  border-left: 3px solid var(--accent);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-soft);
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-field { display: flex; flex-direction: column; gap: 4px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
}
.form-field label .req { color: var(--atex-red); }
.form-field input,
.form-field textarea {
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 32, 96, 0.1);
}
.form-field textarea { resize: vertical; min-height: 90px; }

.form-error {
  padding: var(--space-3) var(--space-4);
  background: var(--atex-red-soft);
  color: var(--atex-red);
  border: 1px solid rgba(193, 39, 45, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-bottom: var(--space-3);
  display: none;
}
.form-error.active { display: block; }

.summary-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
  margin-bottom: var(--space-4);
}
.summary-table th, .summary-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.summary-table th {
  background: var(--bg-soft);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}
.summary-table td.mono { font-family: 'IBM Plex Sans', system-ui, sans-serif; }
.summary-table tfoot td {
  background: var(--bg-soft);
  font-weight: 600;
  border-bottom: none;
}

.qty-input {
  width: 60px;
  padding: 4px 8px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  text-align: center;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}

.success-state { text-align: center; padding: var(--space-5); }
.success-icon {
  width: 64px; height: 64px;
  background: #17a74f;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto var(--space-4);
}
.success-state h3 { font-size: 1.375rem; color: var(--text); margin-bottom: var(--space-3); }
.success-state p { font-size: 0.9375rem; color: var(--text-soft); margin-bottom: var(--space-3); line-height: 1.6; }
.success-ref {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-muted);
  border-radius: var(--radius-sm);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--text);
}

/* ====== RESPONSIVE HELPERS ====== */
@media (max-width: 640px) {
  section { padding: var(--space-7) 0; }
  .hero { padding: var(--space-7) 0 var(--space-6); }
  .eng-callout { padding: var(--space-5); }
}

/* ====== PRINT ====== */
@media print {
  .topbar, .site-header, .hero, .usp-strip, .intro-section, .lines-section,
  .compare-section, .eng-section, .abb-section, .vfd-section, .cases-section,
  .contact-section, .site-footer, .selection-bar, .discount-panel,
  .filters-bar, .pagination { display: none !important; }
  .pricetable-wrap { box-shadow: none; border: none; }
  body { background: #fff; }
}

/* ====== HERO TOOL (zoekveld + filters) ====== */
.hero-tool {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-lg);
}
.hero-tool-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: var(--space-3);
}
.hero-search-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}
.hero-search-wrap {
  flex: 1;
  min-width: 260px;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-search-icon {
  position: absolute;
  left: 16px;
  width: 20px; height: 20px;
  color: var(--text-muted);
  pointer-events: none;
}
.hero-search-input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  transition: all var(--transition);
}
.hero-search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(246, 150, 10, 0.25);
}
.hero-search-btn {
  padding: 14px 24px;
  font-size: 0.9375rem;
  white-space: nowrap;
}
.hero-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}
.hero-filters-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-right: var(--space-2);
}
.hero-filter-pill {
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 18px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  min-width: 120px;
}
.hero-filter-pill:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}
.hero-filter-pill option {
  background: var(--primary-dark);
  color: #fff;
}
.hero-filter-atex { min-width: auto; padding: 8px 16px; font-weight: 600; }
.hero-filter-atex.active { background: var(--vb-navy,#0e377b); border-color: var(--vb-navy,#0e377b); color: #fff; }

/* ====== SHORTCUTS SECTION ====== */
.shortcuts-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  padding: var(--space-6) 0 !important;
}
.shortcuts-header {
  text-align: center;
  margin-bottom: var(--space-5);
}
.shortcuts-header .section-title {
  max-width: 100%;
  margin: 0 auto var(--space-2);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.shortcuts-header .section-eyebrow::before { display: none; }
.shortcuts-header .section-eyebrow { padding-left: 0; }
.shortcuts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 640px)  { .shortcuts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .shortcuts-grid { grid-template-columns: repeat(5, 1fr); gap: var(--space-3); } }

.shortcut-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-5) var(--space-4);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-slow);
  font-family: inherit;
  gap: var(--space-3);
  position: relative;
}
.shortcut-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.shortcut-card:hover .shortcut-cta { color: var(--accent-dark); }
.shortcut-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0, 32, 96, 0.08), rgba(246, 150, 10, 0.08));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition);
}
.shortcut-card:hover .shortcut-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  transform: scale(1.05);
}
.shortcut-icon svg { width: 26px; height: 26px; }
.shortcut-body { display: flex; flex-direction: column; gap: var(--space-1); width: 100%; }
.shortcut-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}
.shortcut-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
  min-height: 2.3em;
}
.shortcut-cta {
  margin-top: var(--space-2);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition);
}

/* ====== POPULAIRE MOTOREN ====== */
.popular-section { background: var(--bg-soft); }
.popular-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
@media (min-width: 640px)  { .popular-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .popular-grid { grid-template-columns: repeat(3, 1fr); } }

.popular-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  overflow: hidden;
}
.popular-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.popular-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.popular-card:hover::before { transform: scaleX(1); }

.popular-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 22px;
}
.popular-brand-logo {
  display: block;
  height: 18px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
.popular-brand-logo.dormot { height: 16px; }  /* dormot is breder dan abb */
.popular-badges { display: flex; gap: 4px; flex-shrink: 0; }
.popular-type {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.popular-specs {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-soft);
  flex-wrap: wrap;
}
.popular-specs-sep {
  color: var(--border-strong);
  font-weight: 400;
}
.popular-specs strong {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 700;
}

/* Eén oranje CTA — vervangt 'Op aanvraag' pill + 'Offerte aanvragen voor selectie' link */
.popular-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  pointer-events: none; /* card-level onclick handelt klik af, knop is puur visueel */
}
.popular-cta-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.popular-card:hover .popular-cta-btn {
  background: var(--accent-hover);
}
.popular-card:hover .popular-cta-btn svg {
  transform: translateX(3px);
}
.popular-cta {
  display: flex;
  justify-content: center;
}

/* ====== OFFICES (NL + HELLAS) ====== */
.offices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
@media (min-width: 768px) { .offices-grid { grid-template-columns: repeat(2, 1fr); } }

.office-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  color: #fff;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.office-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(246, 150, 10, 0.4);
}
.office-flag {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px; height: 36px;
  opacity: 0.85;
  border-bottom-left-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: -2px 2px 6px rgba(0,0,0,0.2);
}
.office-flag svg { width: 100%; height: 100%; display: block; }
.office-head {
  display: flex;
  flex-direction: column;
  padding-right: 70px;
}
.office-country {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 2px;
}
.office-city {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
}
.office-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.office-channel {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.9);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color var(--transition);
}
.office-channel:hover { color: var(--accent); }
.office-channel-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}
.office-hours {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}
.office-hours::before { content: none; }

/* ====== FOOTER OFFICE BLOCKS ====== */
.footer-office { margin-bottom: var(--space-3); }
.footer-office:last-child { margin-bottom: 0; }
.footer-office-label {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: var(--space-1);
}

/* ====== DORMOT LIJN KLEURACCENTEN — 4 shades rood (licht → donker vlnr) ====== */
/* Core:  licht rood (coral-rood)  — instap */
/* Prime: medium rood             — mid-range */
/* Pro:   volle Dormot rood       — hoofdproduct */
/* Renew: donker bordeaux         — premium/revisie */
.line-card[data-line="core"]::before  { background: #F15A60; }  /* licht coral-rood */
.line-card[data-line="pro"]::before   { background: #E2131A; }  /* Dormot rood, hoofdkleur */
.line-card[data-line="renew"]::before { background: #7A0A0E; }  /* bordeaux/diep rood */

.line-card[data-line="core"].available  .line-card-tag,
.line-card[data-line="core"].soon       .line-card-tag { background: rgba(241, 90, 96, 0.12);  color: #C23A40; }
.line-card[data-line="pro"].available   .line-card-tag,
.line-card[data-line="pro"].soon        .line-card-tag { background: rgba(226, 19, 26, 0.12);  color: #B30E14; }
.line-card[data-line="renew"].available .line-card-tag,
.line-card[data-line="renew"].soon      .line-card-tag { background: rgba(122, 10, 14, 0.12);  color: #5A070A; }

.line-card .line-card-name { transition: color var(--transition); }
.line-card[data-line="core"]:hover  .line-card-name { color: #C23A40; }
.line-card[data-line="pro"]:hover   .line-card-name { color: #B30E14; }
.line-card[data-line="renew"]:hover .line-card-name { color: #5A070A; }

/* Responsive hero tool */
@media (max-width: 640px) {
  .hero-search-row { flex-direction: column; }
  .hero-search-btn { width: 100%; }
  .hero-filter-pill { min-width: calc(50% - 6px); }
  .hero-filter-atex { min-width: auto; padding: 8px 16px; font-weight: 600; }
}

.topbar-version {
  display: inline-block;
  margin-left: var(--space-3);
  padding: 2px 8px;
  background: rgba(246, 150, 10, 0.2);
  color: var(--accent);
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  letter-spacing: 0.05em;
}

/* ====== SVG IKOON SIZING — globale consistency ====== */
.usp-icon svg           { width: 22px; height: 22px; stroke-width: 1.6; }
.intro-card-icon svg    { width: 28px; height: 28px; stroke-width: 1.6; }
.eng-card-icon svg      { width: 28px; height: 28px; stroke-width: 1.6; }
.eng-value-check svg    { width: 14px; height: 14px; stroke: var(--accent); stroke-width: 3; }
.abb-card-icon svg      { width: 28px; height: 28px; stroke-width: 1.6; }
.vfd-card-icon svg      { width: 26px; height: 26px; stroke-width: 1.6; }
.line-card-icon svg     { width: 32px; height: 32px; stroke-width: 1.6; }
.case-banner-icon svg   { width: 56px; height: 56px; stroke-width: 1.4; stroke: rgba(255,255,255,0.9); }
.contact-channel-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.case-result-label svg  { width: 14px; height: 14px; stroke: #17a74f; stroke-width: 3; }

/* Reset previous font-size based sizing */
.line-card-icon, .eng-card-icon, .abb-card-icon, .intro-card-icon,
.vfd-card-icon, .case-banner-icon { font-size: 0; }
.eng-value-check { background: rgba(246, 150, 10, 0.15); border-radius: 50%; }

/* ====== MEER INDUSTRIELE UITSTRALING ====== */
/* Subtielere card borders + schaduw variatie om minder "symmetric-AI" te voelen */
.intro-card, .eng-card, .line-card, .abb-card, .vfd-card, .shortcut-card {
  transition: box-shadow 220ms ease, transform 220ms ease, border-color 180ms ease;
}
.intro-card { border-left: 3px solid var(--border); }
.intro-card:hover { border-left-color: var(--accent); }

/* Technical grid-lines achter de hero — lichte engineering-touch */
.hero {
  background:
    linear-gradient(135deg, #001540 0%, #002060 40%, #1a3d8f 100%),
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 60px 60px;
  background-blend-mode: normal, overlay;
}
.hero::before {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  top: 0; right: 0;
  width: 60%; height: 100%;
  opacity: 0.4;
}

/* ====== Office cards — 5 kaarten (NL/GR offices + SG/CN stock + UK agent) ====== */
@media (min-width: 640px)  { .offices-grid { grid-template-columns: repeat(2, 1fr); } }
/* Op tablet: 3 cards boven, 2 onder — 2+3 met UK centraal eronder */
@media (min-width: 900px)  {
  .offices-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-3);
  }
  .offices-grid > .office-card:nth-child(1) { grid-column: span 2; }  /* NL */
  .offices-grid > .office-card:nth-child(2) { grid-column: span 2; }  /* GR */
  .offices-grid > .office-card:nth-child(3) { grid-column: span 2; }  /* SG */
  .offices-grid > .office-card:nth-child(4) { grid-column: 2 / span 2; }  /* CN (4e) centraal-links */
  .offices-grid > .office-card:nth-child(5) { grid-column: span 2; }  /* UK centraal-rechts */
}
/* Op desktop: alle 5 naast elkaar */
@media (min-width: 1280px) {
  .offices-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-3);
  }
  .offices-grid > .office-card:nth-child(n) { grid-column: auto; }  /* reset */
}

.office-card { position: relative; padding: var(--space-5) var(--space-4); }

.office-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-4);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 3;
}
.office-badge-office {
  background: rgba(246, 150, 10, 0.2);
  color: var(--accent);
  border: 1px solid rgba(246, 150, 10, 0.35);
}
.office-badge-stock {
  background: rgba(23, 167, 79, 0.2);
  color: #4ED38E;
  border: 1px solid rgba(23, 167, 79, 0.35);
}

.office-card[data-type="stock"] .office-flag {
  /* stock cards laten vlag wat meer accenteren */
  filter: saturate(0.9);
}

.office-card .office-head {
  margin-top: var(--space-3);
  padding-right: 72px;
}
.office-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  padding: var(--space-2) 0;
}

/* Global-reach intro boven de grid */
.global-reach-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-5);
}
.global-reach-title {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 600;
  margin: var(--space-2) 0;
}
.global-reach-lead {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.global-reach-intro .section-eyebrow::before { display: none; }
.global-reach-intro .section-eyebrow { padding-left: 0; }

/* Kleinere office-city voor Singapore/China */
.office-card[data-type="stock"] .office-city {
  font-size: 0.9375rem;
}

.footer-office-stock {
  color: #4ED38E !important;
  font-size: 0.65rem !important;
}

/* ====================================================================
   HAVEN BRAND STATEMENT SECTION
   Full-bleed havenfoto met parallax + gradient overlay
==================================================================== */
.haven-section {
  position: relative;
  min-height: 480px;
  padding: var(--space-8) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
}
@media (min-width: 1024px) {
  .haven-section { min-height: 560px; padding: var(--space-9) 0; }
}

.haven-bg {
  position: absolute;
  inset: 0;
  background-image: image-set(url('assets/haven.webp') type('image/webp'), url('assets/haven.png') type('image/png'));
  background-size: cover;
  background-position: center 40%;
  background-attachment: scroll;
  z-index: -2;
  transform: scale(1.05);
  filter: saturate(0.9) contrast(1.05);
}
@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .haven-bg { background-attachment: fixed; }
}

.haven-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(0, 10, 36, 0.92) 0%, rgba(0, 32, 96, 0.78) 45%, rgba(0, 32, 96, 0.35) 70%, rgba(0, 10, 36, 0.65) 100%);
}

.haven-content { max-width: 920px; }

.haven-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  background: rgba(246, 150, 10, 0.2);
  border: 1px solid rgba(246, 150, 10, 0.4);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.haven-eyebrow::before { content: none; }

.haven-title {
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
  max-width: 780px;
  /* Subtiele schaduw voor leesbaarheid */
  text-shadow: 0 2px 20px rgba(0, 10, 36, 0.4);
}

.haven-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: var(--space-6);
  font-weight: 400;
}

.haven-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 820px;
}
@media (min-width: 640px) { .haven-facts { grid-template-columns: repeat(3, 1fr); } }

.haven-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: var(--space-4);
  border-left: 2px solid var(--accent);
}
.haven-fact-value {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-family: 'IBM Plex Sans', sans-serif;
}
.haven-fact-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
}

/* ====================================================================
   WHATSAPP CHANNEL
==================================================================== */
.contact-channel-wa {
  position: relative;
}
.contact-channel-wa::after { content: none; }

.contact-channel-icon-wa {
  background: rgba(37, 211, 102, 0.15) !important;
  color: #25D366 !important;
}
.contact-channel-icon-wa svg {
  width: 24px; height: 24px;
}
.contact-channel-value-wa {
  color: #fff;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 1rem !important;
  letter-spacing: 0.02em;
}
.contact-channel-wa:hover { background: rgba(255,255,255,0.08); border-color: rgba(246,150,10,0.4); }
.contact-channel-wa:hover .contact-channel-icon-wa {
  background: rgba(37, 211, 102, 0.25) !important;
}

/* ====== Offices managed-by-GR note ====== */
.offices-note {
  text-align: center;
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  padding: var(--space-3) var(--space-5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.offices-note::before {
  content: 'ℹ';
  display: inline-block;
  margin-right: 8px;
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

/* ====== Floating WhatsApp button (24/7 technische lijn) ====== */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  display: flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 12px 18px 12px 14px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
  text-decoration: none;
  transition: all 220ms cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.wa-float:hover {
  background: #1DAA54;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 4px 10px rgba(0,0,0,0.2);
}
.wa-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 8px;
}


.wa-float-label { display: inline; }

@media (max-width: 640px) {
  .wa-float { bottom: 16px; right: 16px; padding: 12px; border-radius: 50%; }
  .wa-float svg { margin-right: 0; }
  .wa-float-label { display: none; }
}

/* ====== WhatsApp contact-channel styling ====== */
.contact-channel-wa {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.03)) !important;
  border-color: rgba(37, 211, 102, 0.3) !important;
}
.contact-channel-wa:hover { background: rgba(255,255,255,0.08); border-color: rgba(246,150,10,0.4); }
.contact-channel-icon-wa {
  background: rgba(37, 211, 102, 0.15) !important;
  color: #25D366 !important;
}
.contact-channel-icon-wa svg { fill: #25D366; }
.contact-channel-value-wa { color: #fff; }

/* Hide selection-bar when at bottom to avoid overlap with WA button */
.selection-bar.active ~ .wa-float,
.selection-bar.active + * .wa-float {
  bottom: 90px;
}

/* ====== FOOTER LOGO — draaiend VBE logo ====== */
.footer-logo-wrap {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  position: relative;
  isolation: isolate;
}

/* Roterende buitenring — industriële badge stijl */
.footer-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(246, 150, 10, 0.35);
  animation: logo-ring-rotate 40s linear infinite;
  pointer-events: none;
}
.footer-logo-ring-2 {
  inset: 8px;
  border: 1px solid rgba(246, 150, 10, 0.15);
  border-top-color: rgba(246, 150, 10, 0.5);
  animation-direction: reverse;
  animation-duration: 25s;
}
@keyframes logo-ring-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.footer-logo-rotating {
  width: 62%;
  height: 62%;
  object-fit: contain;
  animation: logo-slow-rotate 60s linear infinite;
  filter: drop-shadow(0 2px 10px rgba(246, 150, 10, 0.35));
  transition: filter 400ms ease, transform 400ms ease;
  z-index: 2;
}
.footer-brand:hover .footer-logo-rotating {
  animation-duration: 8s;
  filter: drop-shadow(0 4px 18px rgba(246, 150, 10, 0.7));
}
.footer-brand:hover .footer-logo-ring { animation-duration: 15s; border-color: rgba(246, 150, 10, 0.6); }
.footer-brand:hover .footer-logo-ring-2 { animation-duration: 10s; }
@keyframes logo-slow-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Subtiele licht-sheen die over het logo zweeft */
.footer-logo-sheen {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 70deg,
    rgba(246, 150, 10, 0.25) 90deg,
    transparent 120deg,
    transparent 360deg
  );
  animation: logo-sheen-rotate 8s linear infinite;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}
@keyframes logo-sheen-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Override eerder footer img styling */
.footer-brand > img { display: none; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .footer-logo-rotating,
  .footer-logo-ring,
  .footer-logo-ring-2,
  .footer-logo-sheen { animation: none; }
}

/* ====== HAVEN — Internationale groei subsection ====== */
.haven-intl {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 960px;
}
.haven-intl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(246, 150, 10, 0.12);
  border: 1px solid rgba(246, 150, 10, 0.3);
  border-radius: 12px;
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.haven-intl-title {
  color: #fff;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 600;
  margin-bottom: var(--space-3);
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.haven-intl-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-5);
  max-width: 800px;
}
.haven-intl-modes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 768px) {
  .haven-intl-modes { grid-template-columns: repeat(3, 1fr); }
}
.intl-mode {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: #fff;
  transition: all 200ms ease;
}
.intl-mode:hover {
  background: rgba(246, 150, 10, 0.1);
  border-color: rgba(246, 150, 10, 0.35);
  transform: translateY(-2px);
}
.intl-mode-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.intl-mode-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.intl-mode-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
}
.intl-mode-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

/* ====== PARTNER SECTION ====== */
.partner-section {
  background: linear-gradient(135deg, #001540 0%, #002060 45%, #1a3d8f 100%);
  color: #fff;
  padding: var(--space-8) 0;
  position: relative;
  overflow: hidden;
}
.partner-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(246, 150, 10, 0.2) 0%, transparent 70%);
  z-index: 0;
}
.partner-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(246, 150, 10, 0.1) 0%, transparent 70%);
  z-index: 0;
}
.partner-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.partner-eyebrow {
  color: var(--accent) !important;
  margin-bottom: var(--space-3);
}
.partner-eyebrow::before {
  background: var(--accent) !important;
}
.partner-title {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.partner-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 760px;
  margin-bottom: var(--space-7);
  margin-left: auto;
  margin-right: auto;
}
.partner-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}
@media (min-width: 768px)  { .partner-benefits { grid-template-columns: repeat(3, 1fr); } }

.partner-benefit {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  position: relative;
  transition: all 240ms ease;
}
.partner-benefit:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(246, 150, 10, 0.4);
  transform: translateY(-3px);
}
.partner-benefit-number {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-3);
  opacity: 0.85;
}
.partner-benefit h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.partner-benefit p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

.partner-cta-block {
  background: linear-gradient(135deg, rgba(246, 150, 10, 0.15) 0%, rgba(246, 150, 10, 0.05) 100%);
  border: 1px solid rgba(246, 150, 10, 0.4);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}
@media (min-width: 900px) {
  .partner-cta-block {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: var(--space-5);
  }
  .partner-cta-text { flex: 1; }
}

.partner-cta-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.partner-cta-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}
.partner-cta-btn {
  white-space: nowrap;
  padding: 14px 28px;
  font-size: 0.9375rem;
  background: var(--accent);
  color: var(--primary-dark);
  border: 0;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.partner-cta-btn:hover {
  background: var(--accent-light, #ffb13d);
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}

/* =============================================================
   DORMOT BRAND HERO — Premium kwaliteit, vriendelijke prijs
   Dormot kleuren: rood (#E2131A), wit, met accent op typografie
   ============================================================= */

:root {
  --dormot-red: #E2131A;
  --dormot-red-dark: #B30E14;
  --dormot-red-soft: rgba(226, 19, 26, 0.08);
  --dormot-cream: #FFF8F0;
}

.dormot-brand-section {
  position: relative;
  padding: var(--space-9) 0 var(--space-8);
  background: linear-gradient(180deg, #fff 0%, var(--dormot-cream) 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Decoratieve achtergrond — diagonale rode strepen + grid pattern */
.dormot-brand-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.dormot-brand-stripe {
  position: absolute;
  background: linear-gradient(135deg, transparent 0%, var(--dormot-red) 50%, transparent 100%);
  opacity: 0.05;
  border-radius: 2px;
}
.dormot-brand-stripe-1 {
  width: 600px;
  height: 4px;
  top: 8%;
  right: -100px;
  transform: rotate(-12deg);
}
.dormot-brand-stripe-2 {
  width: 800px;
  height: 6px;
  bottom: 15%;
  left: -150px;
  transform: rotate(8deg);
  opacity: 0.03;
}
.dormot-brand-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(226, 19, 26, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226, 19, 26, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 70% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, black 0%, transparent 70%);
}

.dormot-brand-inner { position: relative; z-index: 1; }

/* Top badges row */
.dormot-brand-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.dormot-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid rgba(226, 19, 26, 0.25);
  border-radius: 20px;
  color: var(--dormot-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(226, 19, 26, 0.08);
  transition: all 200ms ease;
}
.dormot-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.dormot-badge:hover {
  background: var(--dormot-red);
  color: #fff;
  border-color: var(--dormot-red);
  transform: translateY(-1px);
}
.dormot-badge-tier {
  background: var(--dormot-red);
  color: #fff;
  border-color: var(--dormot-red);
}
.dormot-badge-tier:hover {
  background: var(--dormot-red-dark);
}

/* Header layout: logo + text */
.dormot-brand-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  margin-bottom: var(--space-7);
}
@media (min-width: 768px) {
  .dormot-brand-header {
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: var(--space-8);
  }
}

.dormot-brand-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  background: #fff;
  border: 2px solid var(--dormot-red);
  border-radius: 12px;
  box-shadow:
    0 8px 32px rgba(226, 19, 26, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  isolation: isolate;
  /* Tape edges effect - alsof het officieel gestempeld is */
}
.dormot-brand-logo-wrap::before,
.dormot-brand-logo-wrap::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 4px;
  background: var(--dormot-red);
  opacity: 0.15;
}
.dormot-brand-logo-wrap::before { top: -2px; left: 24px; }
.dormot-brand-logo-wrap::after  { bottom: -2px; right: 24px; }

.dormot-brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 400ms cubic-bezier(.34,1.56,.64,1);
}
.dormot-brand-logo-wrap:hover .dormot-brand-logo {
  transform: scale(1.05);
}
.dormot-brand-logo-glow {
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: radial-gradient(circle at 50% 50%, rgba(226, 19, 26, 0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: 1;
}
.dormot-brand-logo-wrap:hover .dormot-brand-logo-glow {
  opacity: 1;
}

.dormot-brand-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: var(--dormot-red-soft);
  color: var(--dormot-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: var(--space-3);
}
.dormot-brand-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
}
/* v6.76: Rode accent op de title voor sterkere Dormot-merkbeleving.
   "replacement line" / "Van Bodegraven" elementen krijgen rode highlight via inline <span class="dormot-accent">. */
.dormot-brand-title .dormot-accent {
  color: var(--dormot-red);
  position: relative;
}
/* Korte rode accent-streep onder de title — visueel anker richting de spec-strip */
.dormot-brand-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: var(--dormot-red);
  border-radius: 2px;
  margin-top: var(--space-4);
}
.dormot-brand-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: var(--space-5);
  max-width: 640px;
}
.dormot-brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--dormot-red);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 200ms ease;
  box-shadow: 0 4px 14px rgba(226, 19, 26, 0.3);
}
.dormot-brand-cta::after {
  content: '→';
  transition: transform 200ms ease;
}
.dormot-brand-cta:hover {
  background: var(--dormot-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 19, 26, 0.4);
  color: #fff;
}
.dormot-brand-cta:hover::after {
  transform: translateX(4px);
}

/* Spec strip — 4 KPI's */
.dormot-spec-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(226, 19, 26, 0.15);
  border: 1px solid rgba(226, 19, 26, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: var(--space-7);
  box-shadow: 0 4px 20px rgba(226, 19, 26, 0.06);
}
@media (min-width: 768px) {
  .dormot-spec-strip { grid-template-columns: repeat(4, 1fr); }
}
.dormot-spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-4) var(--space-5);
  background: #fff;
  transition: background 200ms ease;
}
.dormot-spec-item:hover {
  background: var(--dormot-cream);
}
.dormot-spec-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 700;
}
.dormot-spec-value {
  font-size: 1.0625rem;
  color: var(--dormot-red);  /* v6.76: was primary blauw, nu Dormot rood voor sterker merk-anker */
  font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}
/* v6.76: subtiele rode top-border bij hover op spec-item zodat de strip
   sterker als "Dormot zone" voelt */
.dormot-spec-item {
  border-top: 3px solid transparent;
  transition: background 200ms ease, border-top-color 200ms ease;
}
.dormot-spec-item:hover {
  border-top-color: var(--dormot-red);
}

/* 4 Kernwaardes — premium card grid */
.dormot-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) { .dormot-values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .dormot-values { grid-template-columns: repeat(4, 1fr); } }

.dormot-value {
  position: relative;
  padding: var(--space-5);
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  transition: all 250ms ease;
  overflow: hidden;
  isolation: isolate;
}
/* Diagonale rode accent in hoek */
.dormot-value::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 32px 32px 0;
  border-color: transparent var(--dormot-red) transparent transparent;
  opacity: 0.12;
  transition: opacity 250ms ease;
  z-index: 0;
}
.dormot-value:hover {
  border-color: var(--dormot-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(226, 19, 26, 0.12);
}
.dormot-value:hover::before { opacity: 0.3; }

.dormot-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--dormot-red-soft);
  color: var(--dormot-red);
  border-radius: 8px;
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 1;
  transition: all 250ms ease;
}
.dormot-value-icon svg { width: 26px; height: 26px; }
.dormot-value:hover .dormot-value-icon {
  background: var(--dormot-red);
  color: #fff;
}
.dormot-value-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.dormot-value-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-soft);
  position: relative;
  z-index: 1;
}

/* Lines section: Dormot tinted eyebrow */
.dormot-section-eyebrow {
  background: var(--dormot-red-soft) !important;
  color: var(--dormot-red) !important;
  border-color: rgba(226, 19, 26, 0.2) !important;
}
.dormot-lines-section {
  background: var(--dormot-cream);
}

/* =============================================================
   MARINE / BOEGSCHROEF SECTIE — class society certified
   ============================================================= */
.marine-section {
  position: relative;
  padding: var(--space-9) 0;
  background: linear-gradient(135deg, #001a3d 0%, #002b66 50%, #001a3d 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.marine-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(13, 94, 175, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(226, 19, 26, 0.15) 0%, transparent 50%);
  opacity: 0.6;
}
/* Subtiele wave-pattern overlay */
.marine-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.02) 60px,
      rgba(255, 255, 255, 0.02) 61px);
}

.marine-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }

.marine-eyebrow {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  margin-bottom: var(--space-3);
}
.marine-title {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
  max-width: 800px;
}
.marine-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-7);
  max-width: 760px;
}

/* Class certification badges — als official stamps */
.marine-classes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: var(--space-6);
}
.marine-class {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  color: #fff;
  transition: all 200ms ease;
  position: relative;
  /* Stamp-like decorative dots */
}
.marine-class::before,
.marine-class::after {
  content: '✓';
  font-size: 0.75rem;
  margin-right: 8px;
  color: var(--accent);
  font-weight: 700;
}
.marine-class::after { display: none; }
.marine-class:hover {
  background: rgba(246, 150, 10, 0.15);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Features grid */
.marine-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
@media (min-width: 768px) { .marine-features { grid-template-columns: repeat(2, 1fr); } }

.marine-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  line-height: 1.55;
  transition: all 200ms ease;
}
.marine-feature:hover {
  background: rgba(255, 255, 255, 0.07);
  border-left-color: #fff;
  transform: translateX(2px);
}
.marine-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 150, 10, 0.15);
  color: var(--accent);
  border-radius: 6px;
}
.marine-feature-icon svg { width: 20px; height: 20px; }

.marine-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 200ms ease;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.marine-cta::after {
  content: '→';
  transition: transform 200ms ease;
}
.marine-cta:hover {
  background: #FFB347;
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.marine-cta:hover::after { transform: translateX(4px); }


/* ===== TRIDENT POSITIONING BAR ===== */
.trident-positioning {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  margin: var(--space-6) 0;
  background: linear-gradient(135deg,
    rgba(28, 41, 83, 0.08) 0%,
    rgba(28, 41, 83, 0.04) 100%);
  border: 1px solid rgba(28, 41, 83, 0.15);
  border-left: 4px solid #1c2953;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.trident-positioning::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px;
  height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(28, 41, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.trident-positioning-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c2953;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
}
.trident-positioning-icon svg { width: 100%; height: 100%; }
.trident-positioning-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-body, #333);
  margin: 0;
  max-width: 780px;
}

/* ===== UK OFFICE: address + dual channels ===== */
.office-address {
  font-style: normal;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
  padding: var(--space-3);
  margin: var(--space-3) 0;
  background: rgba(0, 0, 0, 0.02);
  border-left: 3px solid rgba(1, 33, 105, 0.4);
  border-radius: 4px;
}
.office-address strong {
  color: var(--text-body);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 0.875rem;
}

.office-channels-dual {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.office-channel-web {
  background: rgba(1, 33, 105, 0.06) !important;
  border-color: rgba(1, 33, 105, 0.2) !important;
}
.office-channel-web:hover {
  background: rgba(1, 33, 105, 0.1) !important;
  border-color: rgba(1, 33, 105, 0.35) !important;
}

/* Agent badge (UK): professioneel, neutraal donkerblauw */
.office-badge-agent {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
}

/* Office-UK specifieke accent */
.office-card.office-uk {
  border-left: 3px solid #012169;
}

/* ===== NAV DROPDOWN MENU (vervangt nav-brand logos) ===== */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  color: var(--text-soft);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  padding: var(--space-2) 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 180ms ease;
}
.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown.open .nav-dropdown-trigger {
  color: var(--primary);
}

.nav-dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform 200ms cubic-bezier(.4, 0, .2, 1);
  opacity: 0.6;
}
.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown.open .nav-dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Menu panel */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 10, 36, 0.15), 0 2px 8px rgba(0, 10, 36, 0.08);
  padding: var(--space-2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms cubic-bezier(.4, 0, .2, 1);
  z-index: 100;
}
/* Invisible bridge zodat muis naar menu kan zonder close */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
/* Arrow */
.nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown-trigger:focus + .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Menu items */
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 140ms ease;
  text-decoration: none;
}
.nav-dropdown-item:hover {
  background: rgba(246, 150, 10, 0.06);
}

/* Logo box: uniforme 40×40 voor alle merk-logos voor balans */
.nav-dropdown-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  padding: 4px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
}
.nav-dropdown-logo-dormot {
  padding: 6px 8px;
  object-fit: contain;
}
.nav-dropdown-logo-abb {
  padding: 6px;
}
.nav-dropdown-logo-trident {
  padding: 3px;
}

.nav-dropdown-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 32, 96, 0.06);
  color: var(--primary);
  border-radius: 6px;
}
.nav-dropdown-icon svg { width: 22px; height: 22px; }

.nav-dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.nav-dropdown-text strong {
  color: var(--primary);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.nav-dropdown-text span {
  color: var(--text-muted);
  font-size: 0.8125rem;
  line-height: 1.4;
}

/* Responsive nav */
@media (max-width: 1100px) {
  .main-nav { gap: var(--space-3); }
  .nav-dropdown-menu { min-width: 280px; }
}
@media (max-width: 960px) {
  .main-nav { display: none; }
}

/* ===== MARINE SECTION: SOURCE CARDS (boegschroef) ===== */
.marine-sources {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}
@media (min-width: 768px) {
  .marine-sources { grid-template-columns: repeat(3, 1fr); }
}
.marine-source {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-5);
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.marine-source:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 10, 36, 0.12);
  border-color: rgba(246, 150, 10, 0.4);
}
/* Badge nummer (01/02/03) */
.marine-source-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 32, 96, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.marine-source-revised .marine-source-badge {
  background: rgba(246, 150, 10, 0.12);
  color: var(--accent);
}
.marine-source-new .marine-source-badge {
  background: rgba(61, 155, 107, 0.12);
  color: #3D9B6B;
}
/* Icon STRAKKER — was te groot. Nu 32×32 met klein padding */
.marine-source-icon {
  width: 36px;
  height: 36px;
  margin-bottom: var(--space-3);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 32, 96, 0.04);
  border-radius: 8px;
  padding: 8px;
}
.marine-source-icon svg {
  width: 100%;
  height: 100%;
}
.marine-source-revised .marine-source-icon {
  color: var(--accent);
  background: rgba(246, 150, 10, 0.08);
}
.marine-source-new .marine-source-icon {
  color: #3D9B6B;
  background: rgba(61, 155, 107, 0.08);
}
.marine-source h3 {
  font-size: 1.0625rem;
  color: var(--primary);
  margin-bottom: var(--space-2);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.marine-source p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.marine-source-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-3);
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.marine-source-meta::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}
.marine-source-stock .marine-source-meta { color: var(--primary); }
.marine-source-revised .marine-source-meta { color: var(--accent); }
.marine-source-new .marine-source-meta { color: #3D9B6B; }

.marine-footer-strip {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
  .marine-footer-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.marine-class-label {
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
}

/* ===== TRIDENT BRAND-MARK: STRAKKER ===== */
.trident-section {
  background: linear-gradient(180deg, #0a1530 0%, #0e1c3a 50%, #1c2953 100%);
  color: #fff;
  padding: var(--space-8) 0;
  position: relative;
  overflow: hidden;
}
.trident-bg-wave,
.trident-bg-depth {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.trident-bg-depth {
  background:
    radial-gradient(circle at 20% 80%, rgba(28, 41, 83, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(246, 150, 10, 0.08) 0%, transparent 50%);
}
.trident-inner { position: relative; z-index: 1; }

.trident-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-6);
}
@media (min-width: 768px) {
  .trident-header {
    flex-direction: row;
    align-items: center;
    gap: var(--space-5);
  }
}

/* Brand-mark STRAKKER: was te groot. Compacter, meer in balans */
.trident-brand-mark {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.trident-mark-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  animation: trident-ring-rotate 35s linear infinite;
  pointer-events: none;
}
.trident-mark-ring-2 {
  inset: 5px;
  border: 1px solid rgba(246, 150, 10, 0.3);
  border-top-color: var(--accent);
  animation: trident-ring-rotate 20s linear infinite reverse;
}
@keyframes trident-ring-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Icon self: KLEINER dan voorheen, nu netjes binnen de ringen */
.trident-mark-icon {
  width: 56%;
  height: 56%;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
  z-index: 2;
}
.trident-mark-glow {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 150, 10, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.trident-header-text { flex: 1; min-width: 0; }
.trident-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(246, 150, 10, 0.15);
  border: 1px solid rgba(246, 150, 10, 0.35);
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 12px;
  margin-bottom: var(--space-3);
}
.trident-title {
  color: #fff;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-3);
}
.trident-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0;
}

/* Spec blocks — 4 grote numbers */
.trident-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin: var(--space-6) 0;
}
@media (min-width: 768px) {
  .trident-specs { grid-template-columns: repeat(4, 1fr); }
}
.trident-spec {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: var(--space-4) var(--space-3);
  text-align: center;
  transition: all 200ms ease;
}
.trident-spec:hover {
  background: rgba(246, 150, 10, 0.08);
  border-color: rgba(246, 150, 10, 0.3);
  transform: translateY(-2px);
}
.trident-spec-value {
  display: block;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 4px;
}
.trident-spec-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Positioning-bar op dark bg */
.trident-section .trident-positioning {
  background: linear-gradient(135deg, rgba(246, 150, 10, 0.1) 0%, rgba(246, 150, 10, 0.04) 100%);
  border: 1px solid rgba(246, 150, 10, 0.25);
  border-left: 4px solid var(--accent);
}
.trident-section .trident-positioning::before {
  background: radial-gradient(circle at 100% 50%, rgba(246, 150, 10, 0.12) 0%, transparent 70%);
}
.trident-section .trident-positioning-icon {
  background: var(--accent);
  color: #fff;
}
.trident-section .trident-positioning-text {
  color: rgba(255, 255, 255, 0.88);
}

/* Features grid — 2×2 */
.trident-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}
@media (min-width: 768px) {
  .trident-features { grid-template-columns: repeat(2, 1fr); }
}
.trident-feature {
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 200ms ease;
}
.trident-feature:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(246, 150, 10, 0.25);
  transform: translateY(-2px);
}
/* Feature icons STRAKKER — waren te groot. Nu 36×36 met padding */
.trident-feature-icon {
  width: 36px;
  height: 36px;
  margin-bottom: var(--space-3);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 150, 10, 0.12);
  border-radius: 8px;
  padding: 8px;
}
.trident-feature-icon svg {
  width: 100%;
  height: 100%;
}
.trident-feature h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-2);
}
.trident-feature p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

/* Trident CTA */
.trident-cta-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(135deg, rgba(246, 150, 10, 0.12) 0%, rgba(246, 150, 10, 0.05) 100%);
  border: 1px solid rgba(246, 150, 10, 0.3);
  border-radius: 12px;
  margin-top: var(--space-6);
}
@media (min-width: 768px) {
  .trident-cta-block {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.trident-cta-title {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.trident-cta-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 500px;
  margin: 0;
}
.trident-cta-btn {
  background: var(--accent);
  color: #002060;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 200ms ease;
  flex-shrink: 0;
  white-space: nowrap;
}
.trident-cta-btn:hover {
  background: #FFAD33;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}

/* Trident-positioning voor NIET-dark context */
.trident-positioning {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  margin: var(--space-6) 0;
  background: linear-gradient(135deg, rgba(28, 41, 83, 0.06) 0%, rgba(28, 41, 83, 0.03) 100%);
  border: 1px solid rgba(28, 41, 83, 0.15);
  border-left: 4px solid #1c2953;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
/* Positioning-icon KLEINER — was 44. Nu 36 */
.trident-positioning-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c2953;
  color: #fff;
  border-radius: 50%;
  padding: 8px;
}
.trident-positioning-icon svg { width: 100%; height: 100%; }
.trident-positioning-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-body, #333);
  margin: 0;
  max-width: 780px;
}


/* ===== OFFICES WORLDWIDE CLAIM (onder offices-grid) ===== */
.offices-worldwide {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
  background: linear-gradient(135deg, rgba(246, 150, 10, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(246, 150, 10, 0.2);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.offices-worldwide-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.offices-worldwide-icon svg {
  width: 100%;
  height: 100%;
}
.offices-worldwide-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}
.offices-worldwide-text::before { content: none; }


/* ===== UK VLAG (Union Jack) — footer ===== */
.footer-office-flag-uk {
  background:
    linear-gradient(90deg, #012169, #012169),
    linear-gradient(45deg, transparent 45%, #fff 45%, #fff 55%, transparent 55%),
    linear-gradient(135deg, transparent 45%, #fff 45%, #fff 55%, transparent 55%),
    linear-gradient(90deg, transparent 48%, #fff 48%, #fff 52%, transparent 52%),
    linear-gradient(0deg, transparent 48%, #fff 48%, #fff 52%, transparent 52%),
    linear-gradient(45deg, transparent 47%, #C8102E 47%, #C8102E 53%, transparent 53%),
    linear-gradient(135deg, transparent 47%, #C8102E 47%, #C8102E 53%, transparent 53%),
    linear-gradient(90deg, transparent 49%, #C8102E 49%, #C8102E 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, #C8102E 49%, #C8102E 51%, transparent 51%),
    #012169;
  background-blend-mode: normal, screen, screen, screen, screen, normal, normal, normal, normal, normal;
  position: relative;
  overflow: hidden;
}
/* Simpeler en zekerder: SVG achtergrond voor UK flag */
.footer-office-flag-uk {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 40"><rect width="60" height="40" fill="%23012169"/><path d="M0,0 L60,40 M60,0 L0,40" stroke="%23ffffff" stroke-width="8"/><path d="M0,0 L60,40 M60,0 L0,40" stroke="%23C8102E" stroke-width="4"/><path d="M30,0 V40 M0,20 H60" stroke="%23ffffff" stroke-width="12"/><path d="M30,0 V40 M0,20 H60" stroke="%23C8102E" stroke-width="6"/></svg>');
  background-size: cover;
  background-position: center;
}

/* ===== LINKEDIN SOCIAL CARD (footer) ===== */
.footer-social {
  padding: var(--space-5) 0;
  margin: var(--space-4) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-social-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.12) 0%, rgba(10, 102, 194, 0.04) 100%);
  border: 1px solid rgba(10, 102, 194, 0.25);
  border-radius: 12px;
  text-decoration: none;
  transition: all 220ms cubic-bezier(.4, 0, .2, 1);
  max-width: 560px;
  margin: 0 auto;
}
.footer-social-card:hover {
  border-color: #0A66C2;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.2) 0%, rgba(10, 102, 194, 0.08) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 102, 194, 0.25);
}
.footer-social-icon {
  width: 40px;
  height: 40px;
  color: #0A66C2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms ease;
}
.footer-social-icon svg { width: 100%; height: 100%; }
.footer-social-card:hover .footer-social-icon {
  transform: scale(1.1);
}
.footer-social-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.footer-social-title {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.footer-social-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8125rem;
  line-height: 1.4;
}
.footer-social-arrow {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
  transition: all 220ms ease;
}
.footer-social-arrow svg { width: 100%; height: 100%; }
.footer-social-card:hover .footer-social-arrow {
  color: #0A66C2;
  transform: translate(2px, -2px);
}

@media (max-width: 600px) {
  .footer-social-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
  }
  .footer-social-arrow { display: none; }
}

/* ===== TRIDENT LOGO PROMINENTER ===== */
/* Was 64px, te bescheiden. Nu 88-96px met sterkere glow + extra accent-ring */
.trident-brand-mark {
  width: 96px;
  height: 96px;
}
.trident-mark-icon {
  width: 62%;
  height: 62%;
  /* Subtieler filter, logo moet opvallen niet opgebleken worden */
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(246, 150, 10, 0.5)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
/* Extra prominent accent-ring rond logo */
.trident-mark-ring {
  border: 1.5px dashed rgba(255, 255, 255, 0.4);
}
.trident-mark-ring-2 {
  inset: 6px;
  border: 2px solid rgba(246, 150, 10, 0.4);
  border-top-color: var(--accent);
  border-right-color: rgba(246, 150, 10, 0.6);
}
.trident-mark-glow {
  background: radial-gradient(circle, rgba(246, 150, 10, 0.25) 0%, transparent 65%);
}
/* Hover: extra reveal */
.trident-brand-mark:hover .trident-mark-icon {
  animation: trident-spin 3s linear infinite;
  filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(246, 150, 10, 0.8)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
@keyframes trident-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .trident-brand-mark {
    width: 72px;
    height: 72px;
  }
}

/* ===== OFFICE-ADDRESS (voor GR card specifiek) ===== */
.office-address {
  font-style: normal;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  padding: var(--space-2) var(--space-3);
  margin: var(--space-2) 0;
  background: rgba(0, 0, 0, 0.15);
  border-left: 3px solid rgba(13, 94, 175, 0.5);
  border-radius: 4px;
  white-space: pre-line;
}
.office-address-gr {
  border-left-color: #0D5EAF;
}
.office-address-gr::first-line {
  font-weight: 600;
  color: #fff;
}

/* ===== LANG SWITCHER: EL button ondersteuning ===== */
.lang-switcher button {
  min-width: 28px;
  padding: 2px 6px;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}


/* ===== OFFICE CARDS ALIGNMENT (5 locaties netjes uitgelijnd) ===== */
/* Consistent spacing tussen elementen, flex voor auto-align */
.office-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}
/* Head, address, channels, hours krijgen consistent spacing */
.office-card .office-head {
  margin-bottom: var(--space-3);
}
/* Address blok reserveert vaste ruimte zodat cards zonder address op zelfde hoogte starten */
.office-card .office-address {
  margin-top: 0;
  margin-bottom: var(--space-3);
  min-height: 72px;  /* reserveert ruimte voor 3 regels adres */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
/* Cards zonder address krijgen lege placeholder van zelfde hoogte */
.office-card:not(:has(.office-address))::before {
  content: '';
  display: block;
  min-height: 72px;
  margin-bottom: var(--space-3);
}
/* Channels push naar beneden — maar niet forceren anders verlies je compactheid */
.office-card .office-channels {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: var(--space-2);
}
.office-card .office-hours {
  padding-top: var(--space-2);
  margin-top: var(--space-2);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/* UK card: bevat office-channels-dual ipv -channels, harmoniseren */
.office-card .office-channels-dual {
  margin-top: auto;
}

/* ===== MARINE CREDENTIALS (ISO 9001 + rederijen) — hoog contrast op dark bg ===== */
.marine-credentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin: var(--space-6) 0;
  padding: var(--space-5) var(--space-6);
  /* Witte glas-look tegen de donkerblauwe marine bg */
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
/* Accent-stripe links: oranje-gold-blauw diagonaal */
.marine-credentials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, #FFAD33 50%, var(--accent) 100%);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
/* Subtiele glow op achtergrond */
.marine-credentials::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(246, 150, 10, 0.08) 0%, transparent 60%);
  pointer-events: none;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .marine-credentials { grid-template-columns: 1fr 1fr; gap: var(--space-5); padding: var(--space-5); }
}
.marine-credential {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  position: relative;
  z-index: 1;
}
.marine-credential-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #002060;
  border-radius: 50%;
  padding: 11px;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.marine-credential-icon svg { width: 100%; height: 100%; stroke-width: 2; }
/* Tweede icon: blauwe accent in plaats van oranje (voor visueel ritme) */
.marine-credential:nth-child(2) .marine-credential-icon {
  background: #fff;
  color: #002060;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.marine-credential-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/* WITTE heading — hoog contrast op dark marine bg */
.marine-credential-text strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 10, 36, 0.3);
}
/* LICHTGRIJZE body text — leesbaar op dark bg */
.marine-credential-text span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  line-height: 1.6;
}


/* ===== MARINE EYEBROW — "DE boegschroefmotor specialist" prominent ===== */
.marine-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent), #FFAD33);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: var(--space-4);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.marine-eyebrow::before { content: none; }



/* ===== OFFICE-ADDRESS VARIANTS — netjes uitgelijnd tussen 5 cards ===== */
/* Universeel: zelfde min-height, zelfde positie */
.office-card .office-address {
  font-style: normal;
  font-size: 0.8125rem;
  line-height: 1.55;
  padding: var(--space-2) var(--space-3);
  margin: 0 0 var(--space-3) 0;
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  white-space: pre-line;
  color: rgba(255, 255, 255, 0.85);
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
/* Per-land accent linkerrand */
.office-card .office-address-nl {
  border-left-color: #AE1C28;
}
.office-card .office-address-gr {
  border-left-color: #0D5EAF;
}
.office-card .office-address-stock {
  border-left-color: var(--accent);
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
}
/* Sla de :has(.office-address) trick over — alle 5 cards hebben nu address */

/* Office-desc: verwijder/verberg op SG/CN, zijn nu vervangen door address */
.office-card .office-desc { display: none; }

/* Office-channels uniform positioning */
.office-card .office-channels {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Office-hours alleen als aanwezig — voor SG/CN/UK niet getoond */
.office-card .office-hours {
  padding-top: var(--space-2);
  margin-top: var(--space-2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

/* UK card: channels-dual op zelfde plaats als channels */
.office-card .office-channels-dual {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: var(--space-2);
}

/* Alle office-cards: even height */
.offices-grid {
  align-items: stretch;
}
.office-card {
  height: 100%;
}

/* ===== DORMOT BRAND SECTIE: 4 lijnen swatch legend ===== */
/* Als er ergens een visuele legenda voor de 4 shades staat, past die ook met rood */
.dormot-shade-swatch-core  { background: #F15A60; }
.dormot-shade-swatch-prime { background: #E2131A; }
.dormot-shade-swatch-pro   { background: #B30E14; }
.dormot-shade-swatch-renew { background: #7A0A0E; }


/* ============================================================
   DC MOTOREN SECTIE — grafisch strak, tech-industrial
   Donker als de trident/marine secties voor visuele diepte
   ============================================================ */
.dc-section {
  position: relative;
  padding: var(--space-9) 0;
  background: linear-gradient(160deg, #0a1a3d 0%, #0f2050 50%, #0a1a3d 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
/* Schematisch patroon op de achtergrond: circuit-board-achtig grid */
.dc-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246, 150, 10, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 150, 10, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.dc-inner { position: relative; z-index: 1; }

/* ===== HEADER: tekst links, grote spec rechts ===== */
.dc-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
  margin-bottom: var(--space-7);
}
@media (min-width: 768px) {
  .dc-header {
    grid-template-columns: 1fr auto;
    gap: var(--space-7);
  }
}
.dc-eyebrow {
  background: rgba(246, 150, 10, 0.14);
  border: 1px solid rgba(246, 150, 10, 0.35);
  color: var(--accent);
}
.dc-title {
  color: #fff;
  letter-spacing: -0.02em;
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
  text-shadow: 0 2px 12px rgba(0, 10, 36, 0.5);
}
.dc-lead {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 640px;
}

/* ===== HERO SPEC: 1500 kW in cirkel ===== */
.dc-hero-spec {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.dc-hero-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: dc-ring-rotate 30s linear infinite;
}
@keyframes dc-ring-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.dc-hero-spec-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.dc-hero-spec-value {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(246, 150, 10, 0.3);
  margin-bottom: 4px;
}
.dc-hero-spec-unit {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .dc-hero-spec { width: 140px; height: 140px; }
  .dc-hero-spec-value { font-size: 2.25rem; }
}

/* ===== MERKEN-RIJ ===== */
.dc-brands {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
}
@media (min-width: 768px) {
  .dc-brands {
    flex-direction: row;
    align-items: center;
    gap: var(--space-5);
  }
}
.dc-brands-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.dc-brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  flex: 1;
}
.dc-brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all 220ms cubic-bezier(.4, 0, .2, 1);
  position: relative;
}
.dc-brand:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(246, 150, 10, 0.5);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
/* Brand-specifieke accent-dots */
.dc-brand::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 10px;
  
}
.dc-brand-siemens::before   { background: #009999; color: #009999; } /* Siemens petrol */
.dc-brand-creusen::before   { background: #F15A60; color: #F15A60; } /* rood accent */
.dc-brand-abb::before       { background: #FF000F; color: #FF000F; } /* ABB rood */
.dc-brand-reliance::before  { background: #0066CC; color: #0066CC; } /* Reliance blauw */

/* ===== 3 FEATURES GRID ===== */
.dc-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
@media (min-width: 640px)  { .dc-features { grid-template-columns: repeat(3, 1fr); } }
.dc-feature {
  padding: var(--space-4) var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 220ms ease;
}
.dc-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 150, 10, 0.3);
  transform: translateY(-2px);
}
.dc-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 150, 10, 0.14);
  color: var(--accent);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: var(--space-3);
}
.dc-feature-icon svg { width: 100%; height: 100%; }
.dc-feature h3 {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-2);
}
.dc-feature p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8125rem;
  line-height: 1.55;
  margin: 0;
}

/* ===== CTA ===== */
.dc-cta {
  text-align: center;
}
.dc-cta-btn {
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.dc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}

/* ============================================================
   ENERGIE-CALCULATOR SECTIE
   Dark tech-industrial design, oranje accenten
   ============================================================ */
.calc-section {
  position: relative;
  padding: var(--space-9) 0;
  background: linear-gradient(175deg, #0f2050 0%, #0a1a3d 55%, #0f2050 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.calc-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246, 150, 10, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 150, 10, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.calc-inner { position: relative; z-index: 1; }

.calc-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto var(--space-7);
}
.calc-eyebrow {
  background: rgba(246, 150, 10, 0.14);
  border: 1px solid rgba(246, 150, 10, 0.35);
  color: var(--accent);
}
.calc-title {
  color: #fff;
  letter-spacing: -0.02em;
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
}
.calc-lead { color: rgba(255, 255, 255, 0.75); }

/* ===== WRAPPER: 2-koloms layout ===== */
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
@media (min-width: 960px) {
  .calc-wrapper { grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: stretch; }
}

/* ===== INPUT KOLOM ===== */
.calc-inputs {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.calc-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.calc-field input,
.calc-field select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(0, 10, 30, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 180ms ease;
  appearance: none;
  -webkit-appearance: none;
}
.calc-field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3e%3cpath d='M1 1l5 5 5-5' stroke='%23F6960A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(246, 150, 10, 0.2);
  background: rgba(0, 10, 30, 0.6);
}
.calc-field select option {
  background: #0a1a3d;
  color: #fff;
}

/* ===== RESULTAAT KOLOM ===== */
.calc-results {
  background: linear-gradient(145deg, rgba(246, 150, 10, 0.08) 0%, rgba(0, 0, 0, 0.2) 100%);
  border: 1px solid rgba(246, 150, 10, 0.25);
  border-radius: 14px;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.calc-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-2);
}
.calc-results-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.calc-results-ie-delta {
  padding: 4px 12px;
  background: var(--accent);
  color: #002060;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}

.calc-result-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 200ms ease;
}
.calc-result-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(246, 150, 10, 0.3);
}
.calc-result-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 150, 10, 0.14);
  color: var(--accent);
  border-radius: 8px;
  padding: 7px;
}
.calc-result-icon svg { width: 100%; height: 100%; }
.calc-result-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.calc-result-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}
.calc-result-value {
  font-family: var(--font-mono);
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-top: 2px;
  letter-spacing: -0.02em;
}
.calc-result-unit {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calc-efficiency-strip {
  margin-top: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}
.calc-efficiency-item sub {
  font-size: 0.6875rem;
  opacity: 0.7;
}
.calc-efficiency-item strong {
  color: var(--accent);
  margin-left: 4px;
  font-weight: 700;
}
.calc-efficiency-arrow {
  color: var(--accent);
  font-size: 1.125rem;
}

.calc-sources {
  margin-top: var(--space-6);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   KORTINGS-PANEEL KLEINER (minder nadruk op prijs)
   ============================================================ */
.discount-panel {
  padding: var(--space-3) var(--space-4);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(0, 32, 96, 0.03);
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 8px;
}
.discount-panel h3 {
  font-size: 0.875rem;
  margin-bottom: 4px;
}
.discount-panel-sub {
  font-size: 0.75rem;
}
.discount-panel-row {
  gap: var(--space-2);
}
.discount-panel-row label {
  font-size: 0.75rem;
}
.discount-panel-row input[type="number"] {
  padding: 6px 10px;
  font-size: 0.875rem;
  width: 70px;
}


/* ============================================================
   DORMOT LIJN-CARDS GROTER
   ============================================================ */
.line-card {
  padding: var(--space-6) var(--space-5);
  min-height: 320px;
}
.line-card-name {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
}
.line-card-tag {
  font-size: 0.75rem;
  padding: 5px 12px;
}
.line-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-top: var(--space-2);
  margin-bottom: var(--space-3);
  line-height: 1.35;
}
.line-card-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
}
.line-card::before {
  height: 5px;
}
.line-card-icon {
  width: 48px;
  height: 48px;
  padding: 10px;
  margin-bottom: var(--space-3);
}

/* Grid met maar 3 cards: betere verdeling */
.lines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px)  { .lines-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); } }

/* ============================================================
   ABB LOGO in sectie header (groot, prominent links)
   ============================================================ */
.abb-section-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  align-items: center;
}
@media (min-width: 768px) {
  .abb-section-header {
    grid-template-columns: auto 1fr;
    gap: var(--space-6);
  }
}
.abb-section-logo {
  width: 140px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(255, 0, 15, 0.15));
  transition: transform 300ms cubic-bezier(.4, 0, .2, 1);
}
.abb-section-logo:hover {
  transform: scale(1.04);
}
.abb-section-header-text {
  min-width: 0;
}
@media (max-width: 768px) {
  .abb-section-logo { width: 100px; max-height: 56px; }
}

/* ============================================================
   FOOTER ABB KOLOM: logo op zelfde hoogte als andere h4-titels
   ============================================================ */
.footer-col-abb {
  display: flex;
  align-items: center;
  /* Zelfde verticale ruimte innemen als tekst-h4 titels */
  min-height: 1.5rem;
  padding: 0 0 var(--space-2) 0;
  margin-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.footer-col-abb::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.footer-abb-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(1.05);
}

/* ============================================================
   TOP-NAV CALCULATOR HIGHLIGHT
   Prominent in hoofd-navigatie (niet in dropdown)
   ============================================================ */
.nav-calc-highlight {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 7px 14px !important;
  background: linear-gradient(135deg, var(--accent) 0%, #FFAD33 100%);
  color: #002060 !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  letter-spacing: -0.005em;
  border-radius: 6px;
  transition: all 220ms cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  border: none !important;
  position: relative;
}
.nav-calc-highlight::after { display: none !important; }
.nav-calc-highlight:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  background: linear-gradient(135deg, #FFAD33 0%, var(--accent) 100%);
  color: #002060 !important;
}
.nav-calc-highlight svg {
  width: 16px;
  height: 16px;
  color: #002060;
}
@media (max-width: 1100px) {
  .nav-calc-highlight span { display: none; }
  .nav-calc-highlight { padding: 7px 10px !important; }
}
@media (max-width: 900px) {
  .nav-calc-highlight { display: none !important; }
}

/* ============================================================
   CALCULATOR MARKETING-PITCH PANEL
   Marketing toon: snel terugverdiend, elke dag winst
   ============================================================ */
.calc-marketing {
  position: relative;
  max-width: 1100px;
  margin: 0 auto var(--space-7);
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(135deg, rgba(246, 150, 10, 0.14) 0%, rgba(246, 150, 10, 0.04) 100%);
  border: 1px solid rgba(246, 150, 10, 0.35);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  overflow: hidden;
}
@media (min-width: 860px) {
  .calc-marketing {
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-6);
  }
}
.calc-marketing-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), #FFAD33);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.calc-marketing-content {
  position: relative;
  z-index: 1;
}
.calc-marketing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--accent);
  color: #002060;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: var(--space-3);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.calc-marketing-eyebrow::before { content: none; }
.calc-marketing-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: var(--space-3);
  text-shadow: 0 2px 8px rgba(0, 10, 36, 0.4);
}
.calc-marketing-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.calc-marketing-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  align-content: center;
}
@media (min-width: 480px) {
  .calc-marketing-badges { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 860px) {
  .calc-marketing-badges { grid-template-columns: 1fr; gap: var(--space-3); }
}
.calc-marketing-badge {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-3);
  background: rgba(0, 10, 36, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  text-align: left;
  transition: all 220ms ease;
}
.calc-marketing-badge:hover {
  background: rgba(0, 10, 36, 0.4);
  border-color: rgba(246, 150, 10, 0.4);
  transform: translateY(-1px);
}
.calc-marketing-badge-value {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.calc-marketing-badge-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Calculator CTA onderaan */
.calc-cta-wrap {
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
  text-align: center;
}
.calc-cta-btn {
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  letter-spacing: -0.005em;
}
.calc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}


/* ============================================================
   CALC DUAL-CTA — leesbaar maken
   ============================================================ */
.calc-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
}
@media (min-width: 640px) {
  .calc-cta-wrap { flex-direction: row; justify-content: center; }
}
.calc-cta-btn {
  /* primaire CTA: oranje, hoog contrast */
  padding: 14px 26px;
  font-size: 0.9375rem;
  font-weight: 700;
  background: var(--accent) !important;
  color: #002060 !important;
  letter-spacing: -0.005em;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  border: 2px solid var(--accent) !important;
  text-shadow: none !important;
}
.calc-cta-btn:hover {
  background: #FFAD33 !important;
  color: #002060 !important;
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.calc-cta-btn-secondary {
  padding: 14px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  letter-spacing: -0.005em;
}
.calc-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  transform: translateY(-2px);
}

/* ============================================================
   PARTNER-ONBOARD: subtiel blokje onderaan partner-sectie
   B2B-toon: professioneel, geen flashy gradient
   ============================================================ */
.partner-onboard {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 860px) {
  .partner-onboard {
    grid-template-columns: auto 1fr;
    gap: var(--space-5);
    align-items: start;
  }
}
.partner-onboard-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 0;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  white-space: nowrap;
  align-self: flex-start;
}
.partner-onboard-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.partner-onboard-text {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}
.partner-onboard-channels {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.partner-onboard-channel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 180ms ease;
}
.partner-onboard-channel:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff;
  transform: translateY(-1px);
}
.partner-onboard-channel svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color 180ms ease;
}
.partner-onboard-channel:hover svg { color: var(--accent); }

/* ============================================================
   CALCULATOR COMPARE-MODUS
   ============================================================ */
.calc-compare-toggle-wrap {
  padding: var(--space-3);
  background: rgba(246, 150, 10, 0.06);
  border: 1px solid rgba(246, 150, 10, 0.22);
  border-radius: 8px;
}
.calc-compare-toggle {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  position: relative;
}
.calc-compare-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.calc-compare-switch {
  position: relative;
  flex-shrink: 0;
  width: 42px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  transition: all 220ms ease;
  margin-top: 2px;
}
.calc-compare-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 220ms cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.calc-compare-toggle input:checked ~ .calc-compare-switch {
  background: var(--accent);
  border-color: var(--accent);
}
.calc-compare-toggle input:checked ~ .calc-compare-switch::after {
  transform: translateX(18px);
  background: #002060;
}
.calc-compare-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.calc-compare-label strong {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.calc-compare-label span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8125rem;
  line-height: 1.45;
}

/* OPTIE A / B groups */
.calc-option-group {
  position: relative;
  padding: var(--space-4) var(--space-3) var(--space-3);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}
.calc-option-tag {
  position: absolute;
  top: -9px;
  left: 16px;
  padding: 2px 10px;
  background: var(--accent);
  color: #002060;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
}
.calc-option-b .calc-option-tag {
  background: #fff;
  color: #002060;
}

/* COMPARE-MODUS resultaat panel */
.calc-compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-3);
  align-items: center;
  margin-bottom: var(--space-3);
}
.calc-compare-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 240ms ease;
  text-align: center;
}
.calc-compare-col.is-winner {
  background: rgba(246, 150, 10, 0.14);
  border-color: var(--accent);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.calc-compare-col-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.calc-compare-col-line {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  line-height: 1.3;
  min-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-compare-col-cost {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  margin-top: 2px;
}
.calc-compare-col-unit {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.calc-compare-col-eta {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}
.calc-compare-col-eta strong {
  color: var(--accent);
  font-weight: 700;
  margin: 0 2px;
}
.calc-compare-vs {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0 6px;
}
.calc-compare-winner {
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(135deg, rgba(246, 150, 10, 0.2) 0%, rgba(246, 150, 10, 0.08) 100%);
  border: 1px solid rgba(246, 150, 10, 0.4);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
.calc-compare-winner-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.calc-compare-winner-value {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-shadow: 0 0 16px rgba(246, 150, 10, 0.35);
}

@media (max-width: 580px) {
  .calc-compare-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
  .calc-compare-vs {
    padding: var(--space-1) 0;
  }
}

/* ============================================================
   CALC: INFO-TOOLTIPS + ACCORDION VOOR ADVANCED
   ============================================================ */
/* Info-knop (? bij labels) */
.calc-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.calc-info {
  /* v11.61: rond houden op mobiel, niet samendrukken in flex-rij */
  flex: 0 0 16px;
  min-width: 16px;
  aspect-ratio: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.625rem;
  font-weight: 700;
  font-family: var(--font-mono);
  cursor: pointer;
  transition: all 160ms ease;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
}
.calc-info:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #002060;
  transform: scale(1.1);
}

/* Tooltip pop-over (dynamisch in document.body) */
.calc-tooltip-pop {
  position: absolute;
  max-width: 280px;
  padding: 10px 14px;
  background: #fff;
  color: #002060;
  font-size: 0.8125rem;
  line-height: 1.5;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  z-index: 9999;
  pointer-events: auto;
  animation: calc-tip-fade 160ms ease-out;
}
@keyframes calc-tip-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.calc-tooltip-pop::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #fff;
}

/* Accordion voor advanced settings */
.calc-advanced {
  margin-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-3);
}
.calc-advanced-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  list-style: none;
  transition: all 180ms ease;
}
.calc-advanced-trigger::-webkit-details-marker { display: none; }
.calc-advanced-trigger:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 150, 10, 0.3);
  color: #fff;
}
.calc-advanced-chevron {
  width: 14px;
  height: 14px;
  color: var(--accent);
  transition: transform 240ms cubic-bezier(.4, 0, .2, 1);
}
.calc-advanced[open] .calc-advanced-chevron {
  transform: rotate(180deg);
}
.calc-advanced-body {
  margin-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-3);
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  animation: calc-adv-slide 220ms ease-out;
}
@keyframes calc-adv-slide {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.calc-advanced-divider {
  padding-top: var(--space-2);
  margin-top: var(--space-1);
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Mobile: tooltip wordt full-width centered */
@media (max-width: 480px) {
  .calc-tooltip-pop {
    left: 12px !important;
    right: 12px;
    max-width: calc(100vw - 24px);
  }
}

/* ============================================================
   CALC v3: STAP-VOOR-STAP STRUCTUUR
   Drie genummerde stappen, hero-resultaat
   ============================================================ */

/* Verwijder de oude .calc-result-card layout, alles wordt nu hero */
.calc-step {
  position: relative;
  padding: var(--space-3) 0;
}
.calc-step + .calc-step {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: var(--space-2);
}
.calc-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-3);
}
.calc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #002060;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.calc-step-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
}
.calc-step-body {
  padding-left: 40px;
}
@media (max-width: 640px) {
  .calc-step-body { padding-left: 0; }
}

/* Input met suffix/prefix (zoals 'kW' achter vermogen, '€' voor prijs) */
.calc-input-suffix {
  position: relative;
  display: flex;
  align-items: stretch;
}
.calc-input-suffix input {
  flex: 1;
  padding-right: 40px !important;
  width: 100%;
}
.calc-input-suffix .calc-input-unit {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  font-family: var(--font-mono);
  pointer-events: none;
  font-weight: 500;
}
.calc-input-suffix .calc-input-prefix {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
  font-family: var(--font-mono);
  pointer-events: none;
  z-index: 1;
}
.calc-input-suffix:has(.calc-input-prefix) input {
  padding-left: 26px !important;
}

/* HERO RESULTAAT - één grote getal als blikvanger */
.calc-hero-result {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  padding: var(--space-5) var(--space-4);
  background: linear-gradient(135deg, var(--accent) 0%, #FFAD33 100%);
  border-radius: 12px;
  color: #002060;
  margin-bottom: var(--space-3);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  position: relative;
  overflow: hidden;
}
.calc-hero-result::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.calc-hero-prefix {
  font-family: var(--font-mono);
  font-size: 1.875rem;
  font-weight: 700;
  color: #002060;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}
.calc-hero-value {
  font-family: var(--font-mono);
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #002060;
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) {
  .calc-hero-value { font-size: 3.75rem; }
}
.calc-hero-suffix {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(0, 32, 96, 0.78);
  letter-spacing: -0.005em;
  width: 100%;
  margin-top: -4px;
  position: relative;
  z-index: 1;
}

/* Secondary stats: 2 kleine getallen (kWh + CO2) */
.calc-secondary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.calc-secondary-stat {
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calc-secondary-value {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.calc-secondary-unit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* Efficiency strip - aangepast layout */
.calc-efficiency-strip {
  padding: var(--space-3);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media (min-width: 480px) {
  .calc-efficiency-strip {
    flex-direction: row;
    justify-content: space-between;
  }
}
.calc-eff-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}
.calc-eff-block {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.9375rem;
}
.calc-eff-old {
  color: rgba(255, 255, 255, 0.6);
}
.calc-eff-old strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}
.calc-eff-arrow {
  color: var(--accent);
  font-size: 1.0625rem;
}
.calc-eff-new {
  padding: 2px 8px;
  background: rgba(246, 150, 10, 0.18);
  border: 1px solid rgba(246, 150, 10, 0.4);
  border-radius: 4px;
  color: #fff;
}
.calc-eff-new strong {
  color: var(--accent);
  font-weight: 700;
}


/* ============================================================
   WAAROM ABB sectie
   ============================================================ */
.abb-why {
  margin-top: var(--space-7);
  padding: var(--space-6);
  background: linear-gradient(135deg, #fafbfc 0%, #f0f3f7 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.abb-why-header {
  max-width: 720px;
  margin: 0 auto var(--space-5);
  text-align: center;
}
.abb-why-title {
  color: var(--primary);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}
.abb-why-lead {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.abb-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
@media (min-width: 640px)  { .abb-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .abb-why-grid { grid-template-columns: repeat(4, 1fr); } }

.abb-why-card {
  padding: var(--space-4);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 220ms ease;
}
.abb-why-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 32, 96, 0.08);
}
.abb-why-icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(0, 32, 96, 0.08);
  color: var(--primary);
  border-radius: 8px;
  margin-bottom: var(--space-3);
}
.abb-why-icon svg { width: 100%; height: 100%; }
.abb-why-card h4 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.abb-why-card p {
  color: var(--text-soft);
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
}

/* Shipserv CTA binnen ABB sectie */
.abb-shipserv {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-4);
  background: #fff;
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  text-decoration: none;
  transition: all 220ms ease;
  box-shadow: 0 2px 8px rgba(246, 150, 10, 0.1);
}
.abb-shipserv:hover {
  background: rgba(246, 150, 10, 0.04);
  transform: translateX(2px);
  box-shadow: 0 6px 18px rgba(246, 150, 10, 0.2);
}
.abb-shipserv-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 7px;
  background: rgba(246, 150, 10, 0.15);
  color: var(--accent);
  border-radius: 8px;
}
.abb-shipserv-icon svg { width: 100%; height: 100%; }
.abb-shipserv-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.abb-shipserv-text strong {
  color: var(--primary);
  font-size: 0.9375rem;
  font-weight: 600;
}
.abb-shipserv-text span {
  color: var(--text-soft);
  font-size: 0.8125rem;
  line-height: 1.4;
}
.abb-shipserv-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: transform 200ms ease;
}
.abb-shipserv:hover .abb-shipserv-arrow {
  transform: translateX(3px);
}

/* ============================================================
   CALCULATOR ADVANCED sub-groepen duidelijker
   ============================================================ */
.calc-advanced-hint {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  font-style: italic;
  margin: 0 0 var(--space-3);
  padding: 8px 12px;
  background: rgba(246, 150, 10, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
}
.calc-adv-group {
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.calc-adv-group + .calc-adv-group {
  margin-top: var(--space-2);
}
.calc-adv-group-title {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: -0.005em;
}
.calc-adv-group-hint {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: -6px 0 0 0;
  font-style: italic;
}

/* ============================================================
   ABB cards: 'op aanvraag' variant (PM + Water-cooled)
   ============================================================ */
.abb-card-badge-request {
  display: inline-block;
  padding: 2px 8px;
  margin-left: 8px;
  background: rgba(246, 150, 10, 0.15);
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid rgba(246, 150, 10, 0.4);
  vertical-align: middle;
}
.abb-card.on-request {
  background: linear-gradient(135deg, rgba(246, 150, 10, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
  border-color: rgba(246, 150, 10, 0.2);
}

/* ============================================================
   HERO v2: visuele upgrade
   - achtergrond grid + glow blobs
   - floating spec tags
   - credentials row
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 32, 96, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 32, 96, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-glow-1 {
  width: 480px;
  height: 480px;
  top: -100px;
  right: -120px;
  background: radial-gradient(circle, rgba(246, 150, 10, 0.28), transparent 70%);
}
.hero-bg-glow-2 {
  width: 540px;
  height: 540px;
  bottom: -180px;
  left: -180px;
  background: radial-gradient(circle, rgba(0, 32, 96, 0.18), transparent 70%);
}

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

/* Floating spec tags */
.hero-float-tag {
  position: absolute;
  display: none;
  flex-direction: column;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 32, 96, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 32, 96, 0.12);
  z-index: 1;
  pointer-events: none;
  animation: float-slow 6s ease-in-out infinite;
}
@media (min-width: 1100px) {
  .hero-float-tag { display: flex; }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-float-tag-1 {
  top: 100px;
  right: 5%;
  border-left: 3px solid var(--accent);
  animation-delay: 0s;
}
.hero-float-tag-2 {
  top: 280px;
  right: 2%;
  border-left: 3px solid var(--primary);
  animation-delay: 1.5s;
}
.hero-float-tag-3 {
  bottom: 200px;
  right: 8%;
  border-left: 3px solid #1c2953;
  animation-delay: 3s;
}
.hero-float-num {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.hero-float-lbl {
  font-size: 0.6875rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Credentials row bovenaan hero */
.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 16px;
  margin-bottom: var(--space-5);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 32, 96, 0.08);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}
.hero-cred-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
}
.hero-cred-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-cred-divider {
  width: 1px;
  height: 14px;
  background: rgba(0, 32, 96, 0.15);
}
@media (max-width: 640px) {
  .hero-cred-divider { display: none; }
  .hero-credentials { padding: 8px 12px; gap: var(--space-2); }
}

/* ============================================================
   ABB SECTIE: ABB-kleuren (rood + neutrals)
   ============================================================ */
.abb-section {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}
.abb-accent-stripes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg,
    transparent 0%,
    transparent 5%,
    #E2231A 5%,
    #E2231A 35%,
    transparent 35%,
    transparent 38%,
    #E2231A 38%,
    #E2231A 65%,
    transparent 65%,
    transparent 68%,
    #E2231A 68%,
    #E2231A 95%,
    transparent 95%
  );
  z-index: 1;
}
.abb-eyebrow-red {
  background: rgba(226, 35, 26, 0.1) !important;
  border: 1px solid rgba(226, 35, 26, 0.25) !important;
  color: #E2231A !important;
}
.abb-section-header {
  margin-top: var(--space-5);
}
.abb-section .section-title {
  color: #1a1a1a;
}
.abb-section .section-title .accent { color: #E2231A; }

/* ABB cards: subtle red accent stripe links */
.abb-card {
  border-left: 3px solid #E2231A !important;
}
.abb-card.atex {
  border-left-color: #C1272D !important;
}
.abb-card.on-request {
  border-left-color: var(--accent) !important;
}

/* abb-shipserv-top: nu prominenter bovenin */
.abb-shipserv-top {
  margin-bottom: var(--space-5);
  margin-top: 0;
  border-color: #E2231A;
  background: linear-gradient(135deg, #fff 0%, rgba(226, 35, 26, 0.02) 100%);
  box-shadow: 0 2px 12px rgba(226, 35, 26, 0.08);
}
.abb-shipserv-top:hover {
  background: linear-gradient(135deg, #fff 0%, rgba(226, 35, 26, 0.05) 100%);
  box-shadow: 0 6px 20px rgba(226, 35, 26, 0.18);
  border-color: #c01e15;
}
.abb-shipserv-top .abb-shipserv-icon {
  background: rgba(226, 35, 26, 0.1);
  color: #E2231A;
}
.abb-shipserv-top .abb-shipserv-arrow { color: #E2231A; }

/* Why ABB: ABB-rood accent */
.abb-why {
  background: #fff;
  border: 1px solid #e8e8e8;
}
.abb-why-card {
  border-top: 2px solid transparent;
}
.abb-why-card:hover {
  border-top-color: #E2231A;
  border-color: rgba(226, 35, 26, 0.25);
}
.abb-why-icon {
  background: rgba(226, 35, 26, 0.08) !important;
  color: #E2231A !important;
}

/* ============================================================
   DORMOT COMPARE: card-based ipv tabel
   ============================================================ */
.compare-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px)  { .compare-cards { grid-template-columns: repeat(3, 1fr); gap: var(--space-3); } }

.compare-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-5) var(--space-4);
  background: #fff;
  border: 1px solid var(--border);
  border-top: 5px solid var(--line-accent);
  border-radius: 12px;
  transition: all 240ms cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}
.compare-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 32, 96, 0.12);
  border-color: var(--line-accent);
}
.compare-card-featured {
  background: linear-gradient(180deg, rgba(226, 19, 26, 0.02) 0%, #fff 60%);
  border-color: var(--line-accent);
  box-shadow: 0 8px 24px rgba(226, 19, 26, 0.08);
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .compare-card-featured { transform: none; }
}
.compare-card-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  padding: 4px 10px;
  background: var(--line-accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(226, 19, 26, 0.3);
}
.compare-card-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.compare-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: color-mix(in srgb, var(--line-accent) 12%, transparent);
  color: var(--line-accent);
  border-radius: 10px;
}
.compare-card-icon svg { width: 100%; height: 100%; }
.compare-card-name {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
}
.compare-card-origin {
  font-size: 0.75rem;
  color: var(--line-accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare-card-pitch {
  color: var(--text);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 var(--space-4);
}
.compare-card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: var(--space-3);
  background: var(--bg-soft);
  border-radius: 8px;
  margin-bottom: var(--space-3);
}
.compare-card-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.compare-card-spec-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.compare-card-spec-value {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-mono);
}
.compare-card-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.compare-card-highlights li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.4;
}
.compare-card-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--line-accent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
}
.compare-card-best-for {
  margin-top: auto;
  padding: var(--space-3);
  background: color-mix(in srgb, var(--line-accent) 6%, transparent);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.compare-card-best-for-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--line-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-card-best-for-value {
  font-size: 0.8125rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   CASES v2: aantrekkelijk marketing-design
   ============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 900px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }

.case-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 280ms cubic-bezier(.4, 0, .2, 1);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 32, 96, 0.15);
  border-color: var(--case-accent);
}

/* Hero: fancy gradient header */
.case-hero {
  position: relative;
  padding: var(--space-5) var(--space-4) var(--space-4);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  min-height: 200px;
}
.case-hero { border-bottom: 3px solid var(--vb-orange,#f08812); }
.case-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--case-from) 0%, var(--case-to) 100%);
  z-index: -2;
}
.case-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  z-index: -1;
}
.case-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  position: relative;
  height: 100%;
}
.case-sector-tag { display: inline-block; color: var(--case-accent); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px; }
.case-hero-icon {
  margin-top: var(--space-2);
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.85);
}
.case-hero-icon svg { width: 100%; height: 100%; }
.case-hero-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin: var(--space-2) 0 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.case-body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* Metrics strip */
.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--bg-soft);
  border-radius: 10px;
}
.case-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-metric-value {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--case-accent);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.case-metric-label {
  font-size: 0.75rem;
  color: var(--text-soft);
  line-height: 1.4;
}

/* Story blocks: situation → action → result */
.case-story {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.case-story-block {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.case-story-step {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.case-story-block-result .case-story-step {
  background: var(--case-accent);
  color: #fff;
  border-color: var(--case-accent);
}
.case-story-block-result .case-story-step svg {
  width: 14px;
  height: 14px;
}
.case-story-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.case-story-text strong {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.case-story-text p {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}
.case-story-block-result .case-story-text strong {
  color: var(--case-accent);
}

/* ============================================================
   HERO v3 — "Visitekaartje": 2-koloms, donkerblauw met motor showcase rechts
   ============================================================ */
.hero-v3 {
  position: relative;
  overflow: hidden;
  padding: var(--space-6) 0 var(--space-7);
  background: linear-gradient(180deg, #041c44 0%, #002060 45%, #0a1f52 100%);
  isolation: isolate;
}
.hero-v3-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-v3-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 70% 10%, rgba(246, 150, 10, 0.15) 0%, transparent 55%),
    radial-gradient(900px 500px at 10% 70%, rgba(50, 80, 160, 0.25) 0%, transparent 55%);
}
.hero-v3-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  pointer-events: none;
}
.hero-v3-glow-orange {
  width: 520px;
  height: 520px;
  top: -80px;
  right: -120px;
  background: radial-gradient(circle, rgba(246, 150, 10, 0.45), transparent 70%);
}
.hero-v3-glow-navy {
  width: 620px;
  height: 620px;
  bottom: -240px;
  left: -160px;
  background: radial-gradient(circle, rgba(70, 110, 200, 0.3), transparent 70%);
}
.hero-v3-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 240px;
  opacity: 0.9;
}
.hero-v3-wave { animation: heroWave 18s ease-in-out infinite; }
.hero-v3-wave-2 { animation-duration: 24s; animation-delay: -6s; }
@keyframes heroWave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-30px); }
}

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

.hero-v3-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  margin-bottom: var(--space-5);
}
@media (min-width: 960px) {
  .hero-v3-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-7);
  }
}

/* LINKS: tekst + zoektool op donkere bg */
.hero-v3-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.hero-v3-credentials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 4px;
}
.hero-v3-cred-dot { display: none; }

.hero-v3-cred-item {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0;
}
.hero-v3-eyebrow {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(246, 150, 10, 0.18);
  border: 1px solid rgba(246, 150, 10, 0.4);
  color: #fbbf5a;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  width: fit-content;
}
.hero-v3-title {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 4px 0 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.hero-v3-title .accent {
  
  
  
  color:#f08812;
}
.hero-v3-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  line-height: 1.55;
  margin: 0 0 var(--space-3);
  max-width: 560px;
}

/* Zoektool binnen hero-v3: witte card die goed afsteekt tegen donkerblauw */
.hero-v3-tool { margin-top: var(--space-2); }
.hero-v3 .hero-tool {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.hero-v3 .hero-tool-label {
  color: var(--primary);
}
.hero-v3 .hero-search-input {
  color: var(--text);
}

/* RECHTS: showcase paneel */
.hero-v3-showcase {
  position: relative;
  min-height: 420px;
  display: none;
}
@media (min-width: 960px) {
  .hero-v3-showcase { display: block; }
}
.hero-v3-motor {
  width: 100%;
  height: auto;
  max-height: 460px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
  animation: motorRise 1s cubic-bezier(.4, 0, .2, 1) both;
}
@keyframes motorRise {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Floating pills: lichter uiterlijk tegen donkere bg */
.hero-v3-pill {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  z-index: 3;
  animation: pillFloat 6s ease-in-out infinite;
}
.hero-v3-pill-tl {
  top: 4%;
  left: -8%;
  border-left: 3px solid var(--accent);
  animation-delay: 0s;
}
.hero-v3-pill-br {
  top: 50%;
  right: -8%;
  border-left: 3px solid #1c2953;
  animation-delay: 2s;
}
.hero-v3-pill-bl {
  bottom: 8%;
  left: -4%;
  border-left: 3px solid #E2231A;
  animation-delay: 4s;
}
@keyframes pillFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-v3-pill-num {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-v3-pill-lbl {
  font-size: 0.6875rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
  white-space: nowrap;
}

/* Stats onderin: glass op donkere bg */
.hero-v3-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media (min-width: 640px) { .hero-v3-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-v3-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
  position: relative;
}
.hero-v3-stat + .hero-v3-stat::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-3) / 2);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.15);
  display: none;
}
@media (min-width: 640px) {
  .hero-v3-stat + .hero-v3-stat::before { display: block; }
}
.hero-v3-stat-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-v3-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.3;
}

/* Cert-strip: goed leesbaar op donker */
.hero-v3-certstrip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  padding: var(--space-3) var(--space-4);
  margin-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-v3-cert-label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-v3-cert {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.hero-v3-cert-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   TRIDENT BACKGROUND: grote drietand silhouet
   ============================================================ */
.trident-bg-trident {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  width: 320px;
  height: auto;
  max-height: 90%;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 900px) {
  .trident-bg-trident {
    width: 180px;
    right: -3%;
    opacity: 0.28;
  }
}
.trident-inner { position: relative; z-index: 1; }

/* ============================================================
   DORMOT MARINE ACCORDION: dek-opstelling verhaal
   ============================================================ */
.dormot-marine-accordion {
  margin-top: var(--space-5);
  background: linear-gradient(135deg, #f0f5fa 0%, #e4edf7 100%);
  border: 1px solid rgba(28, 41, 83, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: all 240ms ease;
}
.dormot-marine-accordion[open] {
  box-shadow: 0 8px 28px rgba(28, 41, 83, 0.08);
  border-color: rgba(28, 41, 83, 0.25);
}
.dormot-marine-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  cursor: pointer;
  list-style: none;
  transition: background 200ms ease;
}
.dormot-marine-trigger::-webkit-details-marker { display: none; }
.dormot-marine-trigger:hover {
  background: rgba(255, 255, 255, 0.4);
}
.dormot-marine-trigger-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #1c2953;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(28, 41, 83, 0.2);
}
.dormot-marine-trigger-icon svg { width: 100%; height: 100%; }
.dormot-marine-trigger-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.dormot-marine-trigger-text strong {
  color: #1c2953;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.dormot-marine-trigger-text span {
  color: var(--text-soft);
  font-size: 0.8125rem;
  line-height: 1.4;
}
.dormot-marine-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #1c2953;
  transition: transform 240ms cubic-bezier(.4, 0, .2, 1);
}
.dormot-marine-accordion[open] .dormot-marine-chevron {
  transform: rotate(180deg);
}
.dormot-marine-body {
  padding: 0 var(--space-4) var(--space-4);
  border-top: 1px solid rgba(28, 41, 83, 0.1);
  animation: dormotMarineSlide 300ms ease-out;
}
@keyframes dormotMarineSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.dormot-marine-body p {
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: var(--space-3) 0 0;
}
.dormot-marine-body p:first-child { margin-top: var(--space-3); }

/* ============================================================
   DIMENSION SHEET SECTIE
   ============================================================ */
.dimsheet-section {
  position: relative;
  padding: var(--space-7) 0;
  background:
    linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
  overflow: hidden;
  isolation: isolate;
}
.dimsheet-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 32, 96, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 32, 96, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 20%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, black 30%, transparent 75%);
  z-index: 0;
}
.dimsheet-inner { position: relative; z-index: 2; }

.dimsheet-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-5);
}
.dimsheet-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, #d97d00 100%);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  margin-bottom: var(--space-3);
}
.dimsheet-header-icon svg { width: 100%; height: 100%; }
.dimsheet-eyebrow {
  background: rgba(246, 150, 10, 0.12) !important;
  border: 1px solid rgba(246, 150, 10, 0.3) !important;
  color: #92631a !important;
}

/* Form container */
.dimsheet-form {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 32, 96, 0.06);
}

/* Reference diagram bovenaan */
.dimsheet-reference {
  padding: var(--space-5) var(--space-5);
  background: linear-gradient(180deg, #f6f9fd 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.dimsheet-ref-diagram {
  max-width: 480px;
  margin: 0 auto var(--space-3);
}
.dimsheet-ref-diagram svg { width: 100%; height: auto; }
.dimsheet-ref-hint {
  color: var(--text-soft);
  font-size: 0.875rem;
  font-style: italic;
  margin: 0;
}

/* Sectie styling */
.dimsheet-section {
  padding: var(--space-5);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.dimsheet-section:last-of-type { border-bottom: none; }
.dimsheet-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 var(--space-4);
  letter-spacing: -0.005em;
}
.dimsheet-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #002060;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  flex-shrink: 0;
}

/* Grid layouts */
.dimsheet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
@media (min-width: 640px) { .dimsheet-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .dimsheet-grid { grid-template-columns: repeat(4, 1fr); } }

.dimsheet-grid-compact {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (min-width: 640px) { .dimsheet-grid-compact { grid-template-columns: repeat(4, 1fr); gap: 10px; } }
@media (min-width: 900px) { .dimsheet-grid-compact { grid-template-columns: repeat(8, 1fr); gap: 8px; } }

.dimsheet-grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .dimsheet-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.dimsheet-grid-2 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .dimsheet-grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* Form fields */
.dimsheet-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.dimsheet-field span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.dimsheet-field input,
.dimsheet-field textarea,
.dimsheet-field select {
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
  min-width: 0;
}
.dimsheet-field input:focus,
.dimsheet-field textarea:focus,
.dimsheet-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(246, 150, 10, 0.15);
}
.dimsheet-field-wide { grid-column: 1 / -1; }
.dimsheet-field textarea { resize: vertical; min-height: 72px; }

/* Mount-option radios */
.dimsheet-mount-row,
.dimsheet-start-row,
.dimsheet-cbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: var(--space-3);
  background: var(--bg-soft);
  border-radius: 8px;
  margin-bottom: var(--space-3);
}
.dimsheet-mount-label,
.dimsheet-start-label,
.dimsheet-cbox-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 6px;
}
.dimsheet-mount-opt,
.dimsheet-start-opt,
.dimsheet-cbox-opt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: all 180ms ease;
  font-size: 0.8125rem;
}
.dimsheet-mount-opt:hover,
.dimsheet-start-opt:hover,
.dimsheet-cbox-opt:hover {
  border-color: var(--accent);
  background: rgba(246, 150, 10, 0.04);
}
.dimsheet-mount-opt input,
.dimsheet-start-opt input,
.dimsheet-cbox-opt input {
  margin: 0;
  accent-color: var(--accent);
}
.dimsheet-mount-opt input:checked ~ .dimsheet-mount-badge {
  background: var(--accent);
  color: #002060;
}
.dimsheet-mount-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 6px;
  background: var(--bg-soft);
  color: var(--primary);
  border-radius: 4px;
  transition: all 180ms ease;
}
.dimsheet-mount-hint {
  color: var(--text-muted);
  font-size: 0.75rem;
}
@media (max-width: 640px) {
  .dimsheet-mount-hint { display: none; }
}

/* Options grid */
.dimsheet-options-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-3);
}
.dimsheet-option-row {
  display: grid;
  grid-template-columns: 24px 1fr 180px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--bg-soft);
  border-radius: 6px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .dimsheet-option-row { grid-template-columns: 24px 1fr; }
  .dimsheet-opt-detail { grid-column: 1 / -1; margin-left: 34px; }
}
.dimsheet-option-row input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}
.dimsheet-opt-name {
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}
.dimsheet-opt-detail {
  padding: 6px 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.8125rem;
  font-family: inherit;
  width: 100%;
  min-width: 0;
}

/* Submit */
.dimsheet-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5);
  background: linear-gradient(135deg, rgba(246, 150, 10, 0.08) 0%, rgba(246, 150, 10, 0.02) 100%);
  border-top: 1px solid var(--border);
}
.dimsheet-submit-btn {
  min-width: 200px;
  justify-content: center;
}
.dimsheet-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  font-family: inherit;
}
.dimsheet-download-btn:hover { background: #071e42; }
.dimsheet-download-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.dimsheet-submit-hint {
  color: var(--text-soft);
  font-size: 0.8125rem;
  font-style: italic;
  flex: 1;
  min-width: 0;
}

/* ============================================================
   CASE-CARDS ALIGNMENT FIX
   Zorg dat alle 3 cards gelijke hoogte hebben en interne secties aligned zijn.
   ============================================================ */
/* De cases-grid stretcht alle cards naar gelijke hoogte */
.cases-grid > .case-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Hero (gradient header) krijgt exact dezelfde hoogte over alle 3 cards */
.case-card .case-hero {
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.case-card .case-hero-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
/* Title onderaan de hero, sector-tag + icon blijven bovenin */
.case-card .case-hero-title {
  margin-top: auto;
  min-height: 2.6em; /* plek voor 2 regels zodat alle cards dezelfde title-hoogte hebben */
  display: flex;
  align-items: flex-end;
}

/* Body: flex-column zodat story-blocks uitvullen */
.case-card .case-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Metrics strip: value en label hebben vaste hoogtes voor alignment */
.case-card .case-metric-value {
  min-height: 1.5em;
  display: flex;
  align-items: center;
}
.case-card .case-metric-label {
  min-height: 2.8em; /* 2 regels aligned */
  display: flex;
  align-items: flex-start;
}

/* Story: elke story-block heeft dezelfde structuur en alignment */
.case-card .case-story {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.case-card .case-story-block {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--space-3);
  align-items: flex-start;
}
.case-card .case-story-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.case-card .case-story-text strong {
  line-height: 1.2;
  min-height: 1.2em;
}
.case-card .case-story-text p {
  margin: 0;
  line-height: 1.5;
}
/* Op desktop: de 3 cards hebben een gelijkwaardige verdeling en tekst wraps nooit extra */
@media (min-width: 900px) {
  .cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

/* ============================================================
   FINAL POLISH: betere alignment door hele site
   ============================================================ */
/* Compare cards op gelijke hoogte */
.compare-cards > .compare-card {
  display: flex;
  flex-direction: column;
}
.compare-card .compare-card-pitch {
  flex: 1; /* Pitch duwt de specs naar beneden zodat die aligned blijven */
}
.compare-card .compare-card-highlights {
  min-height: 84px; /* 3 regels check-list aligned */
}

/* Hero v3: op mobile de showcase pills positie-fix */
@media (max-width: 960px) {
  .hero-v3-pill { display: none; }
}

/* ============================================================
   HERO v3 ONE-STOP-SHOP STRIP
   4 services in een glass-panel ter reinforcement van technisch partner
   ============================================================ */
.hero-v3-onestop {
  margin: var(--space-3) 0;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-v3-onestop-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-v3-onestop-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}
@media (min-width: 540px) {
  .hero-v3-onestop-items { grid-template-columns: repeat(4, 1fr); }
}
.hero-v3-onestop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.hero-v3-onestop-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   INTRO HEADER: 2-koloms layout (eyebrow+title links, lead rechts)
   ============================================================ */
.intro-header-split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: start;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 900px) {
  .intro-header-split {
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: var(--space-6);
  }
}
.intro-header-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.intro-header-left .section-title {
  margin-top: 4px;
  margin-bottom: 0;
}
.intro-header-right {
  display: flex;
  align-items: center;
}
.intro-header-right .section-lead {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* ============================================================
   WORKSHOP SHOWCASE: reparatie/revisie capabilities
   ============================================================ */
.workshop-showcase {
  margin: var(--space-5) 0;
  padding: var(--space-5) var(--space-5);
  background: linear-gradient(135deg, #f6f9fd 0%, #eff3f8 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
/* Decoratieve oranje accent-streep */
.workshop-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #d97d00 50%, var(--accent) 100%);
}

.workshop-intro {
  max-width: 840px;
  margin-bottom: var(--space-5);
}
.workshop-eyebrow {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(246, 150, 10, 0.12);
  border: 1px solid rgba(246, 150, 10, 0.3);
  color: #92631a;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  margin-bottom: 10px;
}
.workshop-title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.workshop-lead {
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  max-width: 780px;
}

/* 4 capability cards grid */
.workshop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
@media (min-width: 640px) {
  .workshop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .workshop-grid { grid-template-columns: repeat(4, 1fr); }
}

.workshop-card {
  padding: var(--space-4);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 200ms ease;
  position: relative;
}
.workshop-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 32, 96, 0.08);
  transform: translateY(-2px);
}
.workshop-card-icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #d97d00 100%);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.workshop-card-icon svg { width: 100%; height: 100%; }

.workshop-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.005em;
  margin: 4px 0 0;
  line-height: 1.25;
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
}
.workshop-card-desc {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

/* Summary strip: 4 credentials */
.workshop-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px var(--space-3);
  padding: var(--space-3);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
}
@media (min-width: 720px) {
  .workshop-summary { grid-template-columns: repeat(4, 1fr); }
}
.workshop-summary-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0;
  position: relative;
}
.workshop-summary-item + .workshop-summary-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-3) / 2);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--border);
  display: none;
}
@media (min-width: 720px) {
  .workshop-summary-item + .workshop-summary-item::before { display: block; }
}
.workshop-summary-item strong {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.workshop-summary-item span {
  font-size: 0.75rem;
  color: var(--text-soft);
  line-height: 1.35;
}

/* ============================================================
   SR-ONLY: content die visueel verborgen is maar wel in de HTML-bron staat
   Voor AI-crawlers (ChatGPT/Claude/Perplexity), screen readers, en SEO.
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   MOBILE POLISH - extra regels om zeker te zijn dat alles werkt op telefoon
   ============================================================ */
@media (max-width: 640px) {
  /* Prevent horizontal scroll. overflow-x: clip i.p.v. hidden: clip knipt
     horizontale overflow weg ZONDER een scroll-container te maken, zodat
     position: sticky (o.a. de section-jump balk) blijft werken op mobiel. */
  html { overflow-x: clip; }            /* alleen html: body-clip brak position:sticky op iOS */
  body { min-width: 320px; }

  /* Container padding op mobile */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Hero v3 mobile adjustments */
  .hero-v3 { padding: var(--space-5) 0 var(--space-5); }
  .hero-v3-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.15;
  }
  .hero-v3-lead {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  .hero-v3-credentials {
    padding: 6px 10px;
  }
  .hero-v3-cred-item {
    font-size: 0.75rem;
  }
  .hero-v3-certstrip {
    gap: 6px 10px;
    padding: 10px 8px;
  }
  .hero-v3-cert {
    font-size: 0.75rem;
    padding: 2px 6px;
  }
  .hero-v3-cert-divider { display: none; }
  .hero-v3-cert-label {
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
  }

  /* One-stop-shop strip op mobile */
  .hero-v3-onestop {
    padding: 12px 14px;
  }
  .hero-v3-onestop-item {
    font-size: 0.8125rem;
  }

  /* Hero search input mobile */
  .hero-search-row {
    flex-direction: column;
    gap: 10px;
  }
  .hero-search-btn {
    width: 100%;
  }
  .hero-filters {
    gap: 6px;
  }
  .hero-filter-pill {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  /* Stats mobile: 2×2 grid met kleinere waardes */
  .hero-v3-stat-value { font-size: 1.125rem; }
  .hero-v3-stat-label { font-size: 0.6875rem; }

  /* Section titles mobile */
  .section-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    line-height: 1.2;
  }
  .section-lead {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  /* Nav dropdown mobile - gedrag afhandelen */
  .site-header { padding: 10px 0; }
  .header-logo-img {
    /* Op mobiel: gebruik height (niet max-height) met width auto zodat aspect ratio behouden blijft */
    height: 36px !important;
    width: auto !important;
    max-width: none !important;  /* override max-width: 220px op kleinere schermen */
    object-fit: contain;
  }

  /* Intro header mobile: stapelen */
  .intro-header-split {
    grid-template-columns: 1fr !important;
    gap: var(--space-3);
  }

  /* Workshop cards mobile: single column stack */
  .workshop-showcase { padding: var(--space-4); }
  .workshop-grid { gap: 12px; }
  .workshop-card { padding: var(--space-3); }
  .workshop-card-title { min-height: auto; font-size: 0.9375rem; }
  .workshop-card-desc { font-size: 0.8125rem; }
  .workshop-title { font-size: 1.125rem; }
  .workshop-lead { font-size: 0.875rem; }

  /* Dimension Sheet mobile tweaks */
  .dimsheet-section { padding: var(--space-4) var(--space-3); }
  .dimsheet-ref-diagram { max-width: 100%; }
  .dimsheet-section-title { font-size: 0.9375rem; }
  .dimsheet-grid-compact { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .dimsheet-mount-row,
  .dimsheet-start-row,
  .dimsheet-cbox-row {
    gap: 8px;
    padding: 10px;
  }
  .dimsheet-mount-opt,
  .dimsheet-start-opt,
  .dimsheet-cbox-opt {
    padding: 5px 10px;
    font-size: 0.75rem;
  }
  .dimsheet-submit-row {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-3);
  }
  .dimsheet-submit-btn { width: 100%; min-width: auto; }

  /* Trident sectie mobile: inner padding */
  .trident-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .trident-specs {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .trident-spec-value { font-size: 1.125rem !important; }

  /* Marine section mobile: classes wrap nicely */
  .marine-classes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .marine-class {
    font-size: 0.75rem !important;
    padding: 4px 10px !important;
  }

  /* Cases mobile: volle breedte stack */
  .cases-grid { grid-template-columns: 1fr !important; }

  /* Compare cards (Dormot lines) mobile stack */
  .compare-cards { grid-template-columns: 1fr !important; }

  /* ABB grid mobile */
  .abb-grid { grid-template-columns: 1fr !important; }

  /* Contact office cards mobile */
  .offices-grid { grid-template-columns: 1fr !important; }

  /* Footer mobile */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-4);
  }
  .footer-bottom-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
  }
  .footer-bottom-divider { display: none; }

  /* Tables op mobile: horizontaal scrollen i.p.v. gebroken layout */
  .pricelist-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Calculator mobile */
  .calc-grid { grid-template-columns: 1fr !important; }
  .calc-result-value { font-size: 1.75rem !important; }

  /* WhatsApp floating button mobile - iets kleiner */
  .wa-float {
    width: 52px !important;
    height: 52px !important;
    bottom: 16px !important;
    right: 16px !important;
  }
}

/* Tussen mobile en tablet (~641px tot 900px) */
@media (min-width: 641px) and (max-width: 900px) {
  .hero-v3-grid { grid-template-columns: 1fr; }
  .hero-v3-showcase { display: none; }
  .workshop-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .compare-cards { grid-template-columns: 1fr; gap: var(--space-3); }
}

/* Touch-friendly tap targets (min 44x44px per WCAG) */
@media (hover: none) and (pointer: coarse) {
  button, .btn, a.nav-link, .nav-dropdown-item, .hero-filter-pill,
  .dimsheet-mount-opt, .dimsheet-start-opt, .dimsheet-cbox-opt {
    min-height: 44px;
  }
}

/* ============================================================
   KENNISBANK — Section on homepage + article pages shared styles
   ============================================================ */

/* Homepage Kennisbank section */
.kennisbank-section {
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
  position: relative;
  overflow: hidden;
}
.kennisbank-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}
.kennisbank-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-5);
}
.kennisbank-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(246, 150, 10, 0.15) 0%, rgba(0, 32, 96, 0.08) 100%);
  border: 1px solid rgba(246, 150, 10, 0.35);
  color: #92631a;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  margin-bottom: var(--space-2);
}

/* Uitgelichte pillar-kaart bovenaan de kennisbank (cornerstone-artikel) */
.kb-card-featured {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  background: linear-gradient(135deg, #002060 0%, #001540 100%);
  border: 1px solid #001540;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-4);
  text-decoration: none;
  color: #fff;
  transition: transform 260ms cubic-bezier(.4,0,.2,1), box-shadow 260ms cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.kb-card-featured:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,21,64,.28); }
.kb-card-featured-icon {
  flex: 0 0 auto;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(246,150,10,.14);
  border: 1px solid rgba(246,150,10,.35);
  border-radius: 14px;
  color: var(--accent);
}
.kb-card-featured-icon svg { width: 36px; height: 36px; }
.kb-card-featured-body { flex: 1 1 auto; min-width: 0; }
.kb-card-featured-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--space-1);
}
.kb-card-featured-title { font-size: 1.5rem; line-height: 1.2; margin: 0 0 var(--space-2); color: #fff; }
.kb-card-featured-excerpt { font-size: .95rem; line-height: 1.55; color: rgba(255,255,255,.82); margin: 0 0 var(--space-3); max-width: 64ch; }
.kb-card-featured-cta {
  display: inline-flex; align-items: center; gap: .4em;
  font-weight: 600; color: var(--accent);
}
.kb-card-featured-cta::after { content: "\2192"; transition: transform 200ms ease; }
.kb-card-featured:hover .kb-card-featured-cta::after { transform: translateX(4px); }
@media (max-width: 720px) {
  .kb-card-featured { flex-direction: column; align-items: flex-start; gap: var(--space-3); padding: var(--space-4); }
  .kb-card-featured-title { font-size: 1.25rem; }
}

.kennisbank-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 720px) { .kennisbank-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .kennisbank-grid { grid-template-columns: repeat(3, 1fr); } }

.kb-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 260ms cubic-bezier(.4, 0, .2, 1);
  position: relative;
}
.kb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 32, 96, 0.12);
  border-color: var(--accent);
}
.kb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #d97d00);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms ease;
}
.kb-card:hover::before { transform: scaleX(1); }

.kb-card-hero {
  position: relative;
  padding: var(--space-4);
  background: linear-gradient(135deg, var(--primary) 0%, #001640 100%);
  color: #fff;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.kb-card-hero::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(246, 150, 10, 0.25) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.kb-card-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse at top right, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 30%, transparent 75%);
}
.kb-card-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kb-card-icon {
  width: 40px; height: 40px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--accent);
}
.kb-card-icon svg { width: 100%; height: 100%; }
.kb-card-persona {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: 4px;
}
.kb-card-persona::before { content: none; }

.kb-card-body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.kb-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
  min-height: 2.6em;
}
.kb-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.kb-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  margin-top: var(--space-2);
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.kb-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.kb-card-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}
.kb-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8125rem;
  transition: gap 220ms ease;
}
.kb-card:hover .kb-card-arrow { gap: 8px; }
.kb-card-arrow svg { width: 14px; height: 14px; }

/* ============ ARTICLE PAGES shared styles ============ */
.article-page {
  background: #fafbfd;
  min-height: 100vh;
}

.article-hero {
  background: linear-gradient(135deg, #041c44 0%, #002060 45%, #0a1f52 100%);
  color: #fff;
  padding: var(--space-6) 0 var(--space-5);
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 80% 20%, rgba(246, 150, 10, 0.15) 0%, transparent 60%),
    radial-gradient(600px 400px at 10% 90%, rgba(70, 110, 200, 0.18) 0%, transparent 60%);
}
.article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
}
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}
.article-breadcrumb a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 180ms ease;
}
.article-breadcrumb a:hover { color: var(--accent); }
.article-breadcrumb-sep { color: rgba(255,255,255,0.4); }

.article-persona-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(246, 150, 10, 0.15);
  border: 1px solid rgba(246, 150, 10, 0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fbbf5a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}
.article-persona-tag svg { width: 14px; height: 14px; }

.article-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-3);
  color: #fff;
}
.article-subtitle {
  font-size: 1.125rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0 0 var(--space-4);
  max-width: 720px;
}
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}
.article-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-meta-item svg { width: 14px; height: 14px; }

.article-body {
  max-width: 780px;
  margin: var(--space-6) auto;
  padding: 0 var(--space-4);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
}
.article-body h2 {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.015em;
  margin: var(--space-6) 0 var(--space-3);
  line-height: 1.2;
}
.article-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: var(--space-4) 0 var(--space-2);
  line-height: 1.3;
}
.article-body p { margin: 0 0 var(--space-3); }
.article-body strong { color: var(--primary); font-weight: 700; }
.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}
.article-body a:hover { color: #d97d00; }
.article-body ul, .article-body ol {
  margin: 0 0 var(--space-3);
  padding-left: 24px;
}
.article-body li { margin-bottom: 6px; }
.article-body blockquote {
  margin: var(--space-4) 0;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(135deg, rgba(246, 150, 10, 0.08) 0%, rgba(0, 32, 96, 0.04) 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--text-soft);
}
.article-body blockquote strong { color: var(--primary); font-style: normal; }

/* Callout box */
.article-callout {
  margin: var(--space-4) 0;
  padding: var(--space-4);
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 32, 96, 0.04);
}
.article-callout-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.article-callout-title svg { width: 18px; height: 18px; color: var(--accent); }
.article-callout p:last-child { margin-bottom: 0; }

/* Table styling */
.article-table-wrap {
  overflow-x: auto;
  margin: var(--space-4) 0;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: #fff;
}
.article-body th {
  text-align: left;
  padding: 12px 16px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.article-body td {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  vertical-align: top;
}
.article-body tr:nth-child(even) td { background: var(--bg-soft); }

/* CTA-block onderaan artikel */
.article-cta {
  margin: var(--space-6) 0 0;
  padding: var(--space-5);
  background: linear-gradient(135deg, var(--primary) 0%, #001640 100%);
  color: #fff;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(246, 150, 10, 0.25) 0%, transparent 65%);
  pointer-events: none;
}
.article-cta-inner { position: relative; z-index: 1; }
.article-cta h3 {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.article-cta p {
  color: rgba(255,255,255,0.88);
  margin: 0 0 var(--space-3);
}
.article-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Related articles onderaan */
.article-related {
  max-width: 1080px;
  margin: var(--space-6) auto 0;
  padding: 0 var(--space-4);
}
.article-related-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-4);
  text-align: center;
}
.article-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 720px) { .article-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .article-related-grid { grid-template-columns: repeat(3, 1fr); } }

/* Article footer: terug naar kennisbank/home */
.article-footer {
  max-width: 780px;
  margin: var(--space-5) auto 0;
  padding: var(--space-5) var(--space-4) 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.article-footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.article-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 180ms ease;
}
.article-footer-link:hover { color: var(--accent); }

/* Article page site header tweaks */
.article-page .site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 640px) {
  .article-body { font-size: 1rem; }
  .article-body h2 { font-size: 1.375rem; }
  .article-body h3 { font-size: 1.125rem; }
  .article-cta { padding: var(--space-4); }
}

/* ============================================================
   NAV DROPDOWN — Wide variant voor Kennisbank (7 items)
   + persona-colored icons
   ============================================================ */
.nav-dropdown-menu-wide {
  min-width: 420px;
  max-width: 440px;
}

/* Kennisbank-dropdown iconen: uniforme VBE-huisstijl (navy op tint, amber accent bij hover) */
.nav-dropdown-icon-inkoper,
.nav-dropdown-icon-super,
.nav-dropdown-icon-tech,
.nav-dropdown-icon-kb {
  background: var(--bg-soft, #f5f6f9);
  color: var(--vb-navy, #002060);
  border: 1px solid var(--border, #e4e7ef);
  border-radius: 10px;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.nav-dropdown-item:hover .nav-dropdown-icon-inkoper,
.nav-dropdown-item:hover .nav-dropdown-icon-super,
.nav-dropdown-item:hover .nav-dropdown-icon-tech,
.nav-dropdown-item:hover .nav-dropdown-icon-kb {
  background: var(--vb-navy, #002060);
  color: #fff;
  border-color: var(--vb-navy, #002060);
}
/* amber hairline-accent links van het icoon bij hover, editorial detail */
.nav-dropdown-item .nav-dropdown-icon-kb { position: relative; }

/* "Alle artikelen bekijken" — highlighted CTA item */
.nav-dropdown-item-all {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(246, 150, 10, 0.04) 0%, rgba(0, 32, 96, 0.02) 100%);
}
.nav-dropdown-item-all strong { color: var(--primary); }
.nav-dropdown-item-all:hover {
  background: linear-gradient(135deg, rgba(246, 150, 10, 0.1) 0%, rgba(0, 32, 96, 0.05) 100%);
}

/* ============================================================
   TRIDENT DREDGING: baggerindustrie-toepassingen
   ============================================================ */
.trident-dredging {
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(246, 150, 10, 0.25);
}
.trident-dredging-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-5);
}
.trident-dredging-eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(246, 150, 10, 0.15);
  border: 1px solid rgba(246, 150, 10, 0.35);
  border-radius: 999px;
  color: #fbbf5a;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-2);
}
.trident-dredging-title {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 var(--space-2);
  letter-spacing: -0.015em;
}
.trident-dredging-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

/* 4 dredger-cards */
.trident-dredgers {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
@media (min-width: 720px) { .trident-dredgers { grid-template-columns: repeat(2, 1fr); } }

.trident-dredger {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: all 280ms cubic-bezier(.4, 0, .2, 1);
}
.trident-dredger:hover {
  transform: translateY(-3px);
  border-color: rgba(246, 150, 10, 0.4);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
}
.trident-dredger-illustration {
  aspect-ratio: 200 / 120;
  background: linear-gradient(180deg, rgba(4, 28, 68, 0.6) 0%, rgba(10, 31, 82, 0.4) 55%, rgba(4, 28, 68, 0.85) 100%);
  border-bottom: 1px solid rgba(246, 150, 10, 0.2);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trident-dredger-illustration svg {
  width: 100%;
  height: 100%;
  max-height: 140px;
}
.trident-dredger-content {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.trident-dredger-type {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.trident-dredger-name {
  font-size: 1.1875rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}
.trident-dredger-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 var(--space-2);
  flex: 1;
}
.trident-dredger-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trident-dredger-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trident-dredger-spec-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.trident-dredger-spec-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* Dredging challenges callout */
.trident-challenges {
  margin-top: var(--space-5);
  padding: var(--space-5);
  background: linear-gradient(135deg, rgba(4, 28, 68, 0.65) 0%, rgba(10, 31, 82, 0.5) 100%);
  border: 1px solid rgba(246, 150, 10, 0.2);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.trident-challenges::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(246, 150, 10, 0.18) 0%, transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.trident-challenges-title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 var(--space-4);
  letter-spacing: -0.01em;
  text-align: center;
}
.trident-challenges-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 720px) { .trident-challenges-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .trident-challenges-grid { grid-template-columns: repeat(4, 1fr); } }

.trident-challenge {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: var(--space-3);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}
.trident-challenge-icon {
  width: 40px; height: 40px;
  padding: 8px;
  background: rgba(246, 150, 10, 0.15);
  border: 1px solid rgba(246, 150, 10, 0.3);
  border-radius: 10px;
  color: var(--accent);
}
.trident-challenge-icon svg { width: 100%; height: 100%; }
.trident-challenge h5 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.005em;
}
.trident-challenge p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

@media (max-width: 640px) {
  .trident-dredger-specs { grid-template-columns: 1fr 1fr; }
  .trident-challenges { padding: var(--space-3); }
  .trident-dredger-illustration { aspect-ratio: 200 / 100; }
}

/* ============================================================
   PRICELIST B3/B5 toggle — toont B5 prijzen +5% bij keuze
   ============================================================ */
.pricelist-mount-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 3px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-left: 12px;
}
.pricelist-mount-btn {
  padding: 6px 12px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border-radius: 7px;
  transition: all 180ms ease;
  white-space: nowrap;
}
.pricelist-mount-btn:hover { color: var(--primary); }
.pricelist-mount-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 32, 96, 0.2);
}
.pricelist-mount-note {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}
.pricelist-mount-note strong { color: var(--accent); font-style: normal; }

/* ============================================================
   ARTICLE STUB PAGES (vertaalde verkorte versies)
   Eigen prefix om botsing met NL article-* klassen te voorkomen
   ============================================================ */
body.stub-page {
  background: var(--bg, #fff);
  color: var(--text, #1a1a1a);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  margin: 0;
  line-height: 1.6;
}
.stub-header {
  padding: 16px 0;
  border-bottom: 1px solid var(--border, #e5e7eb);
  background: var(--bg-soft, #f8f9fb);
}
.stub-header .stub-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.stub-home-link {
  color: var(--text-muted, #5a6570);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}
.stub-home-link:hover { color: var(--primary, #002060); }
.stub-breadcrumb {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted, #5a6570);
}
.stub-breadcrumb a { color: var(--accent, #E2131A); text-decoration: none; }
.stub-main {
  padding: 48px 0;
  min-height: 60vh;
}
.stub-main .stub-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.stub-h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--text, #1a1a1a);
  line-height: 1.2;
}
.stub-h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--text, #1a1a1a);
}
.stub-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted, #5a6570);
  margin: 0 0 24px;
  padding: 16px 20px;
  background: var(--bg-soft, #f8f9fb);
  border-left: 3px solid var(--accent, #E2131A);
  border-radius: 6px;
}
.stub-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stub-bullets li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--border, #e5e7eb);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text, #1a1a1a);
}
.stub-bullets li:last-child { border-bottom: none; }
.stub-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 20px;
  height: 20px;
  background: var(--accent, #E2131A);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.stub-cta-block {
  margin-top: 32px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(226, 19, 26, 0.05) 0%, rgba(226, 19, 26, 0.02) 100%);
  border: 1px solid rgba(226, 19, 26, 0.15);
  border-radius: 12px;
}
.stub-cta-block p { margin: 0; font-size: 0.9375rem; color: var(--text, #1a1a1a); }
.stub-cta-block a { color: var(--primary, #002060); font-weight: 700; text-decoration: none; }
.stub-cta-block a:hover { text-decoration: underline; }
.stub-lang-switch {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--bg-soft, #f8f9fb);
  border-radius: 8px;
  font-size: 0.8125rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.stub-lang-label {
  font-weight: 700;
  color: var(--text-muted, #5a6570);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.6875rem;
}
.stub-lang-switch a {
  color: var(--text-muted, #5a6570);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.stub-lang-switch a:hover {
  background: var(--accent, #E2131A);
  color: #fff;
}
.stub-lang-switch strong {
  padding: 4px 10px;
  background: var(--primary, #002060);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
}
.stub-footer {
  border-top: 1px solid var(--border, #e5e7eb);
  padding: 16px 0;
  background: var(--bg-soft, #f8f9fb);
  font-size: 0.75rem;
  color: var(--text-muted, #5a6570);
  text-align: center;
}
.stub-footer .stub-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}



/* ============================================================
   ON-REQUEST PILL — accent badge naast section titles voor 
   maatwerkproducten zoals boegschroef + onderwatermotoren
   ============================================================ */
.on-request-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 14px 6px 12px;
  background: linear-gradient(135deg, rgba(226, 19, 26, 0.12) 0%, rgba(226, 19, 26, 0.05) 100%);
  border: 1px solid rgba(226, 19, 26, 0.3);
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(226, 19, 26, 0.15);
  white-space: nowrap;
}
.on-request-pill svg {
  flex-shrink: 0;
  color: #ff6b6b;
  opacity: 0.95;
}
/* Op donkere section background — wit met rode accent border */
.marine-section .on-request-pill,
.trident-section .on-request-pill {
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary, #002060);
  border-color: rgba(226, 19, 26, 0.4);
}
.marine-section .on-request-pill svg,
.trident-section .on-request-pill svg {
  color: var(--accent, #E2131A);
  opacity: 1;
}
/* Mobile-friendly */
@media (max-width: 600px) {
  .on-request-pill {
    margin-top: 10px;
    font-size: 0.7rem;
    padding: 5px 12px 5px 10px;
  }
}

/* ============================================================
   STUB BLOG EXTENDED CLASSES - meta, FAQ, related articles
   ============================================================ */
.stub-meta {
  display: flex;
  gap: 16px;
  color: var(--text-muted, #5a6570);
  font-size: 0.8125rem;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border, #e5e7eb);
}
.stub-faq {
  margin-top: 16px;
}
.stub-faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary, #002060);
  margin: 24px 0 8px 0;
  padding-left: 24px;
  position: relative;
}
.stub-faq-q::before {
  content: 'Q';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--accent, #E2131A);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.stub-faq-a {
  color: var(--text, #1a1a1a);
  margin: 0 0 16px 24px;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.stub-related {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--bg-soft, #f8f9fb);
  border-radius: 12px;
  border-left: 3px solid var(--primary, #002060);
}
.stub-related-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary, #002060);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stub-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stub-related-list li {
  padding: 6px 0;
  font-size: 0.9375rem;
}
.stub-related-list a {
  color: var(--primary, #002060);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.15s ease;
}
.stub-related-list a:hover {
  color: var(--accent, #E2131A);
  border-bottom-color: var(--accent, #E2131A);
}

/* ============================================================
   HERO V3 — VISUEEL AANTREKKELIJKE LABELS (v5.40)
   Badge-style labels met duidelijk contrast voor leesbaarheid
   ============================================================ */

/* "Start direct met zoeken" — upgrade naar visuele badge met icoon */
.hero-v3 .hero-tool-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f9 100%);
  color: var(--primary, #002060);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255,255,255,0.2);
  margin-bottom: 14px;
  position: relative;
}
.hero-v3 .hero-tool-label::before { content: none; }


/* "Snelle selectie:" — donker pill voor scherp contrast met witte tekst */
.hero-v3 .hero-filters-label {
  display: inline-block;
  padding: 6px 13px;
  background: rgba(8, 20, 45, 0.85);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid rgba(246, 150, 10, 0.55);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  margin-right: 8px;
}

/* Filter pills (Vermogen/Toerental/Montage) — witte background, donkere tekst */
.hero-v3 .hero-filter-pill {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--primary, #002060);
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.hero-v3 .hero-filter-pill:hover {
  background: #fff;
  border-color: var(--accent, #E2131A);
  color: var(--primary, #002060);
  box-shadow: 0 4px 12px rgba(226, 19, 26, 0.2);
  transform: translateY(-1px);
}
.hero-v3 .hero-filter-pill option {
  background: #fff;
  color: var(--primary, #002060);
}

/* ATEX pill distinct rood */
.hero-v3 .hero-filter-atex { min-width: auto; padding: 8px 16px; font-weight: 600; }
/* Search input placeholder: leesbaar */
.hero-v3 .hero-search-input::placeholder {
  color: rgba(0, 32, 96, 0.55);
  opacity: 1;
}
.hero-v3 .hero-search-icon {
  color: var(--primary, #002060);
  opacity: 0.6;
}

/* ============================================================
   SITE NAV — visueel aantrekkelijke nav balk (v5.41)
   Subtiele pill-style hover, betere spacing, polished CTA
   ============================================================ */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a:not(.btn) {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: var(--primary, #002060);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  position: relative;
  transition: all 180ms ease;
  letter-spacing: -0.005em;
}
.site-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent, #E2131A);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.site-nav a:not(.btn):hover {
  color: var(--primary, #002060);
  background: rgba(0, 32, 96, 0.04);
}
.site-nav a:not(.btn):hover::after {
  transform: scaleX(1);
}
.site-nav a.active:not(.btn) {
  color: var(--accent, #E2131A);
  background: rgba(226, 19, 26, 0.06);
}
.site-nav a.active:not(.btn)::after {
  transform: scaleX(1);
}

/* Contact CTA in nav krijgt extra polish */
.site-nav .btn.btn-primary {
  margin-left: 8px;
  padding: 9px 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  background: linear-gradient(135deg, var(--accent, #E2131A) 0%, #c41117 100%);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(226, 19, 26, 0.25), 0 0 0 1px rgba(255,255,255,0.1) inset;
  transition: all 220ms ease;
  position: relative;
}
.site-nav .btn.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.site-nav .btn.btn-primary:hover {
  background: linear-gradient(135deg, #c41117 0%, var(--accent, #E2131A) 100%);
  box-shadow: 0 6px 20px rgba(226, 19, 26, 0.4), 0 0 0 1px rgba(255,255,255,0.15) inset;
  transform: translateY(-1px);
}

/* Mobile: stack nav into burger? voor nu blijven horizontal maar smaller */
@media (max-width: 900px) {
  .site-nav { gap: 0; }
  .site-nav a:not(.btn) { padding: 6px 10px; font-size: 0.875rem; }
  .site-nav .btn.btn-primary { padding: 7px 14px; }
}
@media (max-width: 640px) {
  .site-nav a:not(.btn) { display: none; }
  .site-nav .btn.btn-primary { margin-left: 0; }
}

/* ============================================================
   HERITAGE BANNER — Familiebedrijf sinds 1898 sectie (v5.41)
   Foto links + roterend logo + verhaal rechts
   ============================================================ */
.heritage-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, #001640 0%, #002060 100%);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 20px 60px rgba(0, 22, 64, 0.18), 0 1px 0 rgba(255,255,255,0.05) inset;
  min-height: 480px;
}

/* Linker zijde: foto van werkplaats motoren */
.heritage-banner-image {
  position: relative;
  overflow: hidden;
}
.heritage-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.heritage-banner:hover .heritage-banner-image img {
  transform: scale(1.04);
}
.heritage-banner-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 60%,
    rgba(0, 22, 64, 0.4) 85%,
    rgba(0, 22, 64, 0.85) 100%
  );
  pointer-events: none;
}

/* Rechter zijde: content met logo + verhaal */
.heritage-banner-content {
  position: relative;
  padding: 56px 48px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

/* Roterend VBE logo */
.heritage-banner-logo {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 96px;
  height: 96px;
  opacity: 0.9;
}
.heritage-rotating-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(226, 19, 26, 0.4));
  animation: heritage-rotate 18s linear infinite;
}
@keyframes heritage-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Tekst styling */
.heritage-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(226, 19, 26, 0.15);
  color: #ff8b8b;
  border: 1px solid rgba(226, 19, 26, 0.3);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}
.heritage-eyebrow::before { content: none; }
.heritage-title {
  font-size: clamp(1.875rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
  color: #fff;
}
.heritage-lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0 0 8px 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
}

/* Stats grid: 4 kerncijfers */
.heritage-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.heritage-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.heritage-stat-value {
  font-size: 1.875rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
  
  
  
  color:#f08812;
}
.heritage-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.2;
}

/* Tablet/mobile responsive */
@media (max-width: 980px) {
  .heritage-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .heritage-banner-image {
    aspect-ratio: 16 / 9;
  }
  .heritage-banner-image-overlay {
    background: linear-gradient(
      to bottom,
      transparent 50%,
      rgba(0, 22, 64, 0.85) 100%
    );
  }
  .heritage-banner-content {
    padding: 40px 32px;
  }
  .heritage-banner-logo {
    top: 20px;
    right: 20px;
    width: 72px;
    height: 72px;
  }
  .heritage-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 540px) {
  .heritage-banner-content { padding: 32px 24px; }
  .heritage-banner-logo { width: 60px; height: 60px; top: 16px; right: 16px; }
  .heritage-stat-value { font-size: 1.5rem; }
}

/* ============================================================
   DORMOT RENEW "binnenkort beschikbaar" BANNER (v5.42)
   In prijslijst-sectie — geel/oranje accent, eye-catching maar niet schreeuwerig
   ============================================================ */
.renew-coming-soon-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  margin: 24px 0;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef2f8 100%);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-left: 4px solid #f5a623;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(245, 166, 35, 0.08);
  position: relative;
  overflow: hidden;
}
.renew-coming-soon-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  100% { transform: translateX(100%); }
}
.renew-coming-soon-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 166, 35, 0.18);
  color: #b87600;
  border-radius: 50%;
  animation: rotate-soft 8s linear infinite;
}
@keyframes rotate-soft {
  to { transform: rotate(360deg); }
}
.renew-coming-soon-content {
  flex: 1;
  min-width: 0;
}
.renew-coming-soon-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #6b4400;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.renew-coming-soon-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #7a5500;
  margin: 0;
}
.renew-coming-soon-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #f5a623;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(245, 166, 35, 0.35);
  transition: all 200ms ease;
  white-space: nowrap;
}
.renew-coming-soon-cta:hover {
  background: #e5961a;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.5);
  transform: translateY(-1px);
  color: #fff;
}
@media (max-width: 760px) {
  .renew-coming-soon-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
  }
  .renew-coming-soon-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Dormot Renew "binnenkort beschikbaar" status — geel accent */
.line-card.coming_soon .line-card-tag {
  background: linear-gradient(135deg, #f7f9fc 0%, #eef2f8 100%);
  color: #b87600;
  border: 1px solid rgba(245, 166, 35, 0.4);
  font-weight: 700;
}
.line-card.coming_soon {
  position: relative;
}
.line-card.coming_soon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(245, 166, 35, 0.03) 100%);
  pointer-events: none;
  border-radius: inherit;
}

/* ============================================================
   HEADER PHONE + WHATSAPP + COOKIE BANNER (v5.43)
   ============================================================ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-phone, .header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: var(--primary, #002060);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 8px;
  background: rgba(0, 32, 96, 0.04);
  transition: all 180ms ease;
  border: 1px solid transparent;
}
.header-phone svg, .header-whatsapp svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.header-phone:hover {
  background: rgba(0, 32, 96, 0.08);
  border-color: rgba(0, 32, 96, 0.15);
  color: var(--primary, #002060);
  transform: translateY(-1px);
}
.header-whatsapp {
  background: rgba(37, 211, 102, 0.08);
  color: #128c7e;
}
.header-whatsapp:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.35);
  color: #128c7e;
  transform: translateY(-1px);
}
.header-whatsapp-text, .header-phone-text {
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .header-phone-text, .header-whatsapp-text { display: none; }
  .header-phone, .header-whatsapp { padding: 8px; }
}
@media (max-width: 640px) {
  .header-actions .header-cta { display: none; }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 640px) {
}

/* === FOOTER POLICY LINKS === */
.footer-bottom-policy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-policy-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 180ms ease;
}
.footer-policy-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* === "VRAAG OFFERTE AAN" knop per rij in prijslijst === */
.price-row-quote {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: transparent;
  color: var(--accent, #E2131A);
  border: 1px solid rgba(226, 19, 26, 0.25);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 160ms ease;
  white-space: nowrap;
}
.price-row-quote:hover {
  background: var(--accent, #E2131A);
  color: #fff;
  border-color: var(--accent, #E2131A);
  transform: translateY(-1px);
}
.price-row-quote svg {
  width: 12px;
  height: 12px;
}

/* === 404 / Policy pages === */
.policy-page { background: #f8f9fb; min-height: 100vh; }
.policy-hero {
  background: linear-gradient(135deg, #001640 0%, #002060 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}
.policy-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.policy-hero .policy-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
  margin: 0 auto;
}
.policy-body {
  max-width: 780px;
  margin: -40px auto 60px;
  background: #fff;
  padding: 48px 56px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 22, 64, 0.08);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text, #1a1a1a);
}
.policy-body h2 {
  font-size: 1.5rem;
  color: var(--primary, #002060);
  margin: 32px 0 12px;
  font-weight: 800;
}
.policy-body h3 {
  font-size: 1.125rem;
  color: var(--primary, #002060);
  margin: 24px 0 8px;
  font-weight: 700;
}
.policy-body p { margin: 0 0 14px; }
.policy-body ul { padding-left: 20px; margin: 0 0 14px; }
.policy-body li { margin-bottom: 6px; }
.policy-body a { color: var(--accent, #E2131A); }
.policy-body .policy-meta {
  color: var(--text-muted, #5a6570);
  font-size: 0.875rem;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

/* 404 specifiek */
.not-found-hero {
  background: linear-gradient(135deg, #001640 0%, #002060 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px 80px;
}
.not-found-code {
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 900;
  
  
  
  color:#14387F;
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}
.not-found-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.not-found-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  margin: 0 auto 32px;
}
.not-found-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.not-found-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 180ms ease;
}
.not-found-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-2px);
}
.not-found-link.primary {
  background: var(--accent, #E2131A);
  border-color: var(--accent, #E2131A);
}
.not-found-link.primary:hover { background: #c41117; }

@media (max-width: 640px) {
  .policy-body { padding: 32px 24px; margin: -20px 12px 40px; }
}

/* ============================================================
   HEADER LAYOUT FIX (v5.45) — voorkom overflow van Vraag-advies pill
   Betere gap management op middelgrote schermen
   ============================================================ */

/* Container tighter - voorkomt dat elementen over de rand vallen */
.site-header .container {
  gap: 16px;
  flex-wrap: nowrap;
  min-width: 0;
}

/* Main-nav compactere spacing + dropdowns voor minder breedte gebruik */
.main-nav {
  gap: 6px;
  min-width: 0;
  flex-shrink: 1;
}
.main-nav > a, .main-nav .nav-dropdown-trigger {
  padding: 8px 10px;
  font-size: 0.875rem;
  white-space: nowrap;
}

/* Header-actions rechts, niet-compressibel */
.header-actions {
  gap: 6px;
  flex-shrink: 0;
  flex-wrap: nowrap;
  margin-left: auto;
}

/* CTA pill compacter en responsive */
.header-actions .header-cta {
  padding: 9px 16px;
  font-size: 0.875rem;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

/* === Breakpoint management voor rechter balk === */
/* Zeer breed scherm: alles zichtbaar */
@media (min-width: 1280px) {
  .main-nav > a, .main-nav .nav-dropdown-trigger { font-size: 0.9375rem; padding: 8px 12px; }
  .header-actions { gap: 8px; }
}

/* Middelgroot desktop — verberg "Partner" link */
@media (max-width: 1199px) {
  .main-nav a[href="#partner"] { display: none; }
  .main-nav a[href="#contact"]:not(.btn) { display: none; }
  .main-nav { gap: 4px; }
}

/* Compact scherm — phone-text weg, CTA compacter */
@media (max-width: 1079px) {
  .header-phone-text { display: none; }
  .header-phone { padding: 8px 9px; }
  .header-actions .header-cta { padding: 8px 12px; font-size: 0.8125rem; }
  .nav-calc-highlight { display: none; }
}

/* Tablet — main-nav klapt dicht naar burger-achtige benadering */
@media (max-width: 959px) {
  /* main-nav is al display:none, dus meer ruimte */
  .header-actions { gap: 8px; }
  .header-phone-text { display: inline; }  /* nu hebben we ruimte */
  .header-actions .header-cta { padding: 9px 16px; font-size: 0.875rem; }
}

/* Mobiel — CTA pill blijft zichtbaar maar compacter */
@media (max-width: 640px) {
  .site-header .container { padding: 0 12px; gap: 8px; }
  .site-header .container { padding-top: 12px; padding-bottom: 12px; }
  .header-actions .header-cta { display: inline-flex; padding: 7px 12px; font-size: 0.75rem; }
  .header-phone { padding: 7px 8px; }
  .header-phone-text { display: none; }
  .logo-tagline { display: none; }
}

/* Extra klein — alleen phone icon + CTA */
@media (max-width: 420px) {
  .header-logo-img {
    height: 28px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain;
  }
  .header-actions .header-cta { padding: 6px 10px; font-size: 0.6875rem; }
}

/* ============================================================
   HEADER LAYOUT FIX (v5.45) — betere spacing, Vraag advies past altijd
   ============================================================ */
.nav-calc-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--text, #1a1a1a);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  transition: all 180ms ease;
}
.nav-calc-link:hover {
  background: rgba(0, 32, 96, 0.06);
  color: var(--primary, #002060);
}

/* Header container krijgt flexibele spacing */
.site-header .container {
  gap: 16px;
}
.main-nav {
  flex: 1;
  justify-content: center;
  gap: 6px;
}
.header-actions {
  flex-shrink: 0;
}

/* Progressive collapse bij smaller schermen */
@media (max-width: 1280px) {
  .nav-calc-link { display: none; }  /* Calculator verbergt eerst (minst belangrijk) */
}
@media (max-width: 1180px) {
  .header-phone-text { display: none; }
  .header-phone { padding: 8px; }
}
@media (max-width: 1080px) {
  .main-nav { gap: 2px; }
  .nav-dropdown-trigger { padding: 6px 10px !important; font-size: 0.875rem; }
}
@media (max-width: 960px) {
  .logo-tagline { display: none; }
  .main-nav { display: none; }  /* Dropdowns verbergen op tablet */
  .header-cta { padding: 9px 16px; font-size: 0.875rem; }
}
@media (max-width: 540px) {
  .header-cta { display: none; }
  .header-phone { background: var(--accent, #E2131A); color: #fff; }
  .header-phone:hover { background: #c41117; color: #fff; }
}

/* Nav hover state polishing — cleaner pill effect */
.main-nav > a,
.nav-dropdown-trigger {
  border-radius: 8px;
}

/* ============================================================
   HEADER LAYOUT v5.46 — telefoon links van logo, calc-highlight terug
   ============================================================ */
.header-phone-left {
  order: -1;  /* voor logo in de flex order */
  margin-right: 8px;
  padding: 8px 14px;
  background: rgba(0, 32, 96, 0.05);
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 10px;
  color: var(--primary, #002060);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 180ms ease;
  white-space: nowrap;
}
.header-phone-left:hover {
  background: rgba(0, 32, 96, 0.1);
  border-color: rgba(0, 32, 96, 0.2);
  transform: translateY(-1px);
  color: var(--primary, #002060);
}
.header-phone-left svg {
  width: 16px;
  height: 16px;
  color: var(--accent, #E2131A);
}

/* Responsive: op tablet verbergt tekst, icon blijft prominent */
@media (max-width: 1200px) {
  .header-phone-left .header-phone-text {
    display: none;
  }
  .header-phone-left {
    padding: 10px;
  }
}
@media (max-width: 640px) {
  .header-phone-left {
    background: var(--accent, #E2131A);
    border-color: var(--accent, #E2131A);
    color: #fff;
    padding: 9px;
  }
  .header-phone-left:hover {
    background: #c41117;
    color: #fff;
  }
  .header-phone-left svg {
    color: #fff;
  }
}

/* Header container spacing aangepast voor nieuwe layout */
.site-header .container {
  gap: 12px;
}

/* Verwijder de oude nav-calc-link styling omdat we terug zijn op highlight */
.nav-calc-link {
  display: none !important;  /* Safety: mocht de class nog ergens staan */
}

/* ============================================================
   HEADER DEFINITIEVE FIX v5.47 — geen overlap meer tussen calc en Vraag advies
   Calc-highlight zit NU in header-actions naast Vraag advies met gecontroleerde gap
   ============================================================ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;                  /* 10px tussen calc pill en Vraag advies */
  flex-shrink: 0;
}
.header-actions .nav-calc-highlight {
  /* Override eventuele nav-context styling */
  flex-shrink: 0;
  margin: 0 !important;
}
.header-actions .header-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Main-nav zonder calc-pill is nu compacter — minder ruimte nodig */
.main-nav {
  flex: 0 1 auto;
  gap: 4px;
}

/* Responsive breakpoints — calc verdwijnt eerst, dan Vraag advies */
@media (max-width: 1100px) {
  .header-actions .nav-calc-highlight span { display: none; }
  .header-actions .nav-calc-highlight { padding: 7px 10px !important; }
}
@media (max-width: 900px) {
  .header-actions .nav-calc-highlight { display: none !important; }
}
@media (max-width: 540px) {
  .header-actions .header-cta { display: none; }
}


/* ═══════════════════════════════════════════════════════════════════
   HEADER RESET v5.49 — DEFINITIEF, strak, geen overlap meer
   Overschrijft alle voorgaande .site-header / .main-nav / .header-actions
   regels met !important waar nodig. Dit is de LAATSTE definitie.
   ═══════════════════════════════════════════════════════════════════ */

/* Hoofd container — 3-koloms flex met expliciete spacing */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 32, 96, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

header.site-header > .container {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* LINKS: telefoon + logo (samen als één unit) */
header.site-header .header-phone-left {
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 9px 14px !important;
  background: rgba(0, 32, 96, 0.05);
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 10px;
  color: #002060 !important;
  font-weight: 700 !important;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 180ms ease;
  white-space: nowrap;
  margin: 0 !important;
  order: 0;
}
header.site-header .header-phone-left svg {
  width: 16px;
  height: 16px;
  color: #E2131A;
  flex-shrink: 0;
}
header.site-header .header-phone-left:hover {
  background: rgba(0, 32, 96, 0.1);
  transform: translateY(-1px);
}

header.site-header > .container > a.logo {
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  order: 1;
}
header.site-header .header-logo-img {
  display: block !important;
  height: 40px;
  width: auto;
}
header.site-header .logo-tagline {
  color: #5a6570;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}

/* MIDDEN: main-nav dropdowns — neemt de middelste ruimte */
header.site-header nav.main-nav {
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 4px !important;
  min-width: 0;
  order: 2;
}
header.site-header nav.main-nav .nav-dropdown {
  position: relative;
  flex-shrink: 0;
}
header.site-header nav.main-nav .nav-dropdown-trigger {
  padding: 8px 14px !important;
  font-size: 0.9375rem !important;
  font-weight: 600;
  color: #002060;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: background 160ms ease;
}
header.site-header nav.main-nav .nav-dropdown-trigger:hover {
  background: rgba(0, 32, 96, 0.05);
}

/* RECHTS: calc-highlight + Vraag advies — apart blok, flex-shrink: 0 */
header.site-header > .container > .header-actions {
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center;
  gap: 10px !important;
  margin: 0 !important;
  order: 3;
}

/* Besparingscalculator pill — oranje gradient */
header.site-header .header-actions .nav-calc-highlight {
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 9px 14px !important;
  background: linear-gradient(135deg, #F6960A 0%, #FFAD33 100%) !important;
  color: #002060 !important;
  font-weight: 700 !important;
  font-size: 0.8125rem !important;
  text-decoration: none;
  border-radius: 8px;
  border: none !important;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  transition: all 220ms cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap;
  margin: 0 !important;
}
header.site-header .header-actions .nav-calc-highlight::after { display: none !important; }
header.site-header .header-actions .nav-calc-highlight:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
header.site-header .header-actions .nav-calc-highlight svg {
  width: 15px;
  height: 15px;
  color: #002060;
  flex-shrink: 0;
}

/* Vraag advies CTA — rode pill */
header.site-header .header-actions .header-cta {
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center;
  padding: 9px 18px !important;
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.8125rem !important;
  text-decoration: none;
  border-radius: 8px;
  border: none !important;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  transition: all 180ms ease;
  white-space: nowrap;
  margin: 0 !important;
}
header.site-header .header-actions .header-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}

/* ═══ PROGRESSIVE RESPONSIVE — strikt opbouwen naar mobiel ═══ */

/* <1280: calc tekst verbergt (icoon blijft) */
@media (max-width: 1279px) {
  header.site-header .header-actions .nav-calc-highlight span {
    display: none !important;
  }
  header.site-header .header-actions .nav-calc-highlight {
    padding: 9px 11px !important;
  }
}

/* <1180: telefoon tekst verbergt (icoon blijft) */
@media (max-width: 1179px) {
  header.site-header .header-phone-left .header-phone-text {
    display: none !important;
  }
  header.site-header .header-phone-left {
    padding: 10px !important;
  }
  header.site-header .logo-tagline {
    display: none !important;
  }
}

/* <1024: main-nav dropdowns compacter */
@media (max-width: 1023px) {
  header.site-header nav.main-nav .nav-dropdown-trigger {
    padding: 7px 10px !important;
    font-size: 0.875rem !important;
  }
  header.site-header > .container {
    gap: 10px !important;
  }
}

/* <900: main-nav volledig verbergen (dropdowns weg) */
@media (max-width: 899px) {
  header.site-header nav.main-nav {
    display: none !important;
  }
  header.site-header .header-actions .nav-calc-highlight {
    display: none !important;
  }
  header.site-header > .container {
    justify-content: space-between;
  }
}

/* <640: CTA kleiner, telefoon blijft primair */
@media (max-width: 639px) {
  header.site-header > .container {
    padding-left: 14px;
    padding-right: 14px;
    gap: 8px !important;
  }
  header.site-header .header-phone-left {
    background: #E2131A !important;
    border-color: #E2131A !important;
    color: #fff !important;
  }
  header.site-header .header-phone-left svg {
    color: #fff !important;
  }
  header.site-header .header-actions .header-cta {
    padding: 9px 14px !important;
    font-size: 0.8125rem !important;
  }
}

/* <480: CTA verbergt, alleen telefoon + logo */
@media (max-width: 479px) {
  header.site-header .header-actions .header-cta {
    display: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   TOPBAR DEFINITIEVE FIX v5.54 — geen overlap meer
   Progressive hiding van minst-belangrijke elementen
   ═══════════════════════════════════════════════════════════════════ */
.topbar .container {
  flex-wrap: nowrap !important;
  gap: 12px !important;
  overflow: hidden;
}
.topbar-left {
  flex: 1 1 auto !important;
  min-width: 0;
  flex-wrap: nowrap !important;
  white-space: nowrap;
  overflow: hidden;
  gap: 10px !important;
}
.topbar-left > * {
  flex-shrink: 0;
}
.topbar-right {
  flex-shrink: 0 !important;
}
.topbar-since {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Progressive hide: meest-eerst verbergen wat minder kritiek is */

/* ≤1280px: version-tag verbergt */
@media (max-width: 1279px) {
  .topbar-version { display: none !important; }
}

/* ≤1100px: "sinds 1898" tagline verbergt */
@media (max-width: 1099px) {
  .topbar-since { display: none !important; }
}

/* ≤900px: "Direct bereikbaar:" label verbergt — alleen telefoonnummer blijft */
@media (max-width: 899px) {
  .topbar-left > span[data-i18n="topbar.phone"] { display: none !important; }
}

/* ≤640px: lang-switcher kleiner */
@media (max-width: 639px) {
  .topbar { font-size: 0.75rem; padding: 8px 0; }
  .topbar .container { gap: 8px !important; }
  .lang-switcher button {
    padding: 3px 6px !important;
    font-size: 0.6875rem !important;
  }
}

/* ≤480px: telefoonnummer iets kleiner zodat alle 8 talen blijven passen */
@media (max-width: 479px) {
  .topbar-left .phone { font-size: 0.75rem; }
  .lang-switcher { gap: 1px !important; }
  .lang-switcher button {
    padding: 3px 5px !important;
    font-size: 0.625rem !important;
  }
}

/* v6.62: ≤420px topbar telefoon weg — past niet meer en is dubbel
   (rode header-phone-left knop staat al naast logo). Alleen lang-switcher blijft. */
@media (max-width: 420px) {
  .topbar-left .phone { display: none !important; }
}

/* ═════════════════════════════════════════════════════════════════════════════
   HEADER OVERLAP FIX v5.55 — FINAL — geen kans meer op overlap
   Plaatst de breakpoints op punten waar in de praktijk overlap ontstaat
   ═════════════════════════════════════════════════════════════════════════════ */

/* Tagline "Elektromotoren · sinds 1898" verbergt op ALLES onder 1400px
   want anders pusht de logo-cluster te ver en glijdt main-nav onder header-actions */
@media (max-width: 1399px) {
  header.site-header .logo-tagline { display: none !important; }
}

/* Onder 1300px: telefoonnummer-tekst verbergt (alleen icoon) */
@media (max-width: 1299px) {
  header.site-header .header-phone-left .header-phone-text {
    display: none !important;
  }
  header.site-header .header-phone-left {
    padding: 10px !important;
  }
}

/* Onder 1200px: Besparingscalculator span verbergt (alleen icoon) */
@media (max-width: 1199px) {
  header.site-header .header-actions .nav-calc-highlight span {
    display: none !important;
  }
  header.site-header .header-actions .nav-calc-highlight {
    padding: 9px 11px !important;
  }
}

/* Onder 1100px: nav-dropdown-trigger compacter */
@media (max-width: 1099px) {
  header.site-header nav.main-nav .nav-dropdown-trigger {
    padding: 7px 10px !important;
    font-size: 0.875rem !important;
    gap: 2px !important;
  }
  header.site-header > .container {
    gap: 8px !important;
  }
}

/* Onder 1000px: calc-highlight pill volledig verbergen — main-nav blijft bestaan */
@media (max-width: 999px) {
  header.site-header .header-actions .nav-calc-highlight {
    display: none !important;
  }
}

/* Onder 880px: main-nav dropdowns verbergen — alleen logo + telefoon + Vraag advies */
@media (max-width: 879px) {
  header.site-header nav.main-nav {
    display: none !important;
  }
}

/* Container krijgt ALTIJD overflow:visible (zodat dropdowns kunnen openen)
   maar ALLE direct children zijn flex-shrink: 0 zodat geen enkel item kan overlappen */
header.site-header > .container {
  overflow: visible;
}
header.site-header > .container > * {
  min-width: 0;
}

/* Logo-cluster krijgt EXPLICIET geen flex-grow, krimpt niet, omhult niet */
header.site-header > .container > a.logo {
  flex: 0 0 auto !important;
  max-width: 50%;
}
header.site-header > .container > a.logo .header-logo-img {
  max-width: 280px;
  flex-shrink: 0;
}

/* Phone-left links: vast format */
header.site-header > .container > a.header-phone-left {
  flex: 0 0 auto !important;
}

/* Header-actions: krimpt niet, blijft vast formaat */
header.site-header > .container > .header-actions {
  flex: 0 0 auto !important;
  margin-left: auto;
}

/* Main-nav: krijgt ALLE overgebleven ruimte EN respecteert min-width 0 */
header.site-header > .container > nav.main-nav {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  overflow: visible;
}

/* ════════════════════════════════════════════════════════════════
   FAQ ACCORDION v5.56 — zichtbare FAQs (rich snippets)
   ════════════════════════════════════════════════════════════════ */
.faq-section {
  padding: 80px 0;
  background: #fff;
}
.faq-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.faq-grid {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 200ms ease;
}
.faq-item:hover {
  border-color: rgba(0, 32, 96, 0.2);
  box-shadow: 0 4px 16px rgba(0, 32, 96, 0.06);
}
.faq-item[open] {
  border-color: var(--accent, #E2131A);
  box-shadow: 0 4px 20px rgba(226, 19, 26, 0.08);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary, #002060);
  user-select: none;
  transition: background 160ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary:hover { background: rgba(0, 32, 96, 0.02); }
.faq-q {
  flex: 1;
  font-size: 1rem;
  line-height: 1.4;
}
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted, #5a6570);
  transition: transform 220ms ease;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent, #E2131A);
}
.faq-a {
  padding: 0 24px 24px 24px;
  color: var(--text-muted, #5a6570);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.faq-a a {
  color: var(--accent, #E2131A);
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
  font-weight: 600;
}
.faq-a a:hover { border-bottom-style: solid; }

@media (max-width: 640px) {
  .faq-section { padding: 60px 0; }
  .faq-item summary { padding: 16px 18px; }
  .faq-q { font-size: 0.9375rem; }
  .faq-a { padding: 0 18px 20px 18px; font-size: 0.875rem; }
}

/* ════════════════════════════════════════════════════════════════
   ARTICLE TOC + READING PROGRESS v5.56
   ════════════════════════════════════════════════════════════════ */

/* Reading progress bar (top of page) */
.article-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0, 32, 96, 0.06);
  z-index: 1000;
  pointer-events: none;
}
.article-reading-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent, #E2131A) 0%, #f63a40 100%);
  width: 0%;
  transition: width 80ms linear;
  box-shadow: 0 0 6px rgba(226, 19, 26, 0.4);
}

/* Table of contents */
.article-toc {
  max-width: 780px;
  margin: 0 auto 24px;
  padding: 0 20px;
}
.article-toc-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(0, 32, 96, 0.04);
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 8px;
  font-weight: 600;
  color: var(--primary, #002060);
  cursor: pointer;
  width: 100%;
  font-size: 0.875rem;
  text-align: left;
}
.article-toc-toggle svg { width: 18px; height: 18px; flex-shrink: 0; }
.article-toc-list {
  list-style: none;
  padding: 20px 24px;
  margin: 0;
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  border: 1px solid rgba(0, 32, 96, 0.08);
  border-left: 3px solid var(--accent, #E2131A);
  border-radius: 0 10px 10px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 24px;
}
.article-toc-list::before {
  content: 'In dit artikel';
  grid-column: 1 / -1;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted, #5a6570);
  margin-bottom: 4px;
}
html[lang="en"] .article-toc-list::before { content: 'In this article'; }
html[lang="de"] .article-toc-list::before { content: 'In diesem Artikel'; }
html[lang="fr"] .article-toc-list::before { content: 'Dans cet article'; }
html[lang="es"] .article-toc-list::before { content: 'En este artículo'; }
html[lang="it"] .article-toc-list::before { content: 'In questo articolo'; }
html[lang="el"] .article-toc-list::before { content: 'Σε αυτό το άρθρο'; }
html[lang="pl"] .article-toc-list::before { content: 'W tym artykule'; }
.article-toc-list li {
  font-size: 0.875rem;
  line-height: 1.5;
}
.article-toc-list a {
  color: var(--text, #1a1a1a);
  text-decoration: none;
  transition: color 160ms ease;
  display: inline-block;
  padding: 4px 0;
}
.article-toc-list a:hover {
  color: var(--accent, #E2131A);
}

@media (max-width: 760px) {
  .article-toc-list {
    grid-template-columns: 1fr;
  }
  .article-toc-list::before {
    display: none;
  }
  .article-toc-toggle {
    display: inline-flex;
  }
  .article-toc-list {
    display: none;
    margin-top: 8px;
  }
  .article-toc-open .article-toc-list {
    display: grid;
  }
  .article-toc-toggle[aria-expanded="true"] {
    border-radius: 8px 8px 0 0;
  }
}

/* Smooth scroll naar TOC links */
html { scroll-behavior: smooth; }
.article-body h2 { scroll-margin-top: 80px; }

/* ════════════════════════════════════════════════════════════════
   DORMOT PRO ATEX ACCORDION v5.57 — in lijn met marine-accordion,
   subtiele oranje accent voor ATEX-thema
   ════════════════════════════════════════════════════════════════ */
.dormot-atex-accordion {
  margin-top: 16px;
}
.dormot-atex-accordion[open] {
  border-color: rgba(246, 150, 10, 0.4);
}
.dormot-atex-accordion .dormot-marine-trigger-icon {
  color: #F6960A;
  background: rgba(246, 150, 10, 0.08);
}
.dormot-atex-accordion[open] .dormot-marine-trigger-icon {
  background: rgba(246, 150, 10, 0.15);
}
.dormot-atex-points {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dormot-atex-points li {
  position: relative;
  padding: 12px 16px 12px 40px;
  background: rgba(0, 32, 96, 0.025);
  border-left: 3px solid #F6960A;
  border-radius: 0 8px 8px 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text, #1a1a1a);
}
.dormot-atex-points li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 17px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F6960A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.dormot-atex-points li strong {
  color: var(--primary, #002060);
  font-weight: 700;
}
.dormot-atex-cta-line {
  margin: 0;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(246, 150, 10, 0.06) 0%, rgba(246, 150, 10, 0.02) 100%);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-muted, #5a6570);
  font-style: italic;
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════════
   PRIJSLIJST: LAZY LOADING + FULLSCREEN MODE v5.59
   ════════════════════════════════════════════════════════════════ */

/* Section header met fullscreen knop */
.pricelist-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.pricelist-section-header-text {
  flex: 1 1 auto;
  min-width: 0;
}

/* Fullscreen-knop — strakke, niet-opdringerige stijl in lijn met de site */
.pricelist-fullscreen-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-top: 6px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid rgba(0, 32, 96, 0.15);
  border-radius: 8px;
  color: var(--primary, #002060);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 180ms ease;
  white-space: nowrap;
}
.pricelist-fullscreen-btn:hover {
  background: rgba(0, 32, 96, 0.04);
  border-color: rgba(0, 32, 96, 0.3);
  transform: translateY(-1px);
}
.pricelist-fullscreen-btn:active {
  transform: translateY(0);
}
.pricelist-fullscreen-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* In normale modus: toon "expand" icoon + label */
.pricelist-fullscreen-btn .pricelist-fullscreen-icon-collapse,
.pricelist-fullscreen-btn .pricelist-fullscreen-label-collapse {
  display: none;
}
/* In fullscreen modus: toon "collapse" icoon + label */
.pricelist-fullscreen-active .pricelist-fullscreen-btn .pricelist-fullscreen-icon-expand,
.pricelist-fullscreen-active .pricelist-fullscreen-btn .pricelist-fullscreen-label-expand {
  display: none;
}
.pricelist-fullscreen-active .pricelist-fullscreen-btn .pricelist-fullscreen-icon-collapse,
.pricelist-fullscreen-active .pricelist-fullscreen-btn .pricelist-fullscreen-label-collapse {
  display: inline;
}

@media (max-width: 640px) {
  .pricelist-section-header { flex-direction: column; gap: 12px; }
  .pricelist-fullscreen-btn { align-self: flex-start; }
}

/* === FULLSCREEN MODUS: section over de hele viewport === */
.pricelist-section.pricelist-fullscreen-active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #fff;
  margin: 0;
  padding: 24px 0;
  overflow-y: auto;
  overflow-x: hidden;
  animation: pricelistFullscreenIn 220ms ease;
}
@keyframes pricelistFullscreenIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* In fullscreen — bredere container voor meer kolomruimte */
.pricelist-section.pricelist-fullscreen-active > .container {
  max-width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}

/* Fullscreen knop in de header krijgt accent kleur (sluit-actie) */
.pricelist-fullscreen-active .pricelist-fullscreen-btn {
  background: var(--accent, #E2131A);
  border-color: var(--accent, #E2131A);
  color: #fff;
  position: sticky;
  top: 12px;
  z-index: 10;
}
.pricelist-fullscreen-active .pricelist-fullscreen-btn:hover {
  background: #c41117;
  border-color: #c41117;
}

/* Body lock when fullscreen */
body.has-fullscreen-pricelist {
  overflow: hidden;
}

/* Tabel rijen krijgen iets meer ademruimte in fullscreen */
.pricelist-fullscreen-active .pricetable th,
.pricelist-fullscreen-active .pricetable td {
  padding: 12px 14px;
  font-size: 0.9375rem;
}

/* === LAZY LOADING SKELETON === */
.pricelist-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 64px 24px;
  text-align: center;
}
.pricelist-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 32, 96, 0.1);
  border-top-color: var(--accent, #E2131A);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.pricelist-loading p {
  color: var(--text-muted, #5a6570);
  font-size: 0.9375rem;
  margin: 0;
}


/* ════════════════════════════════════════════════════════════════
   FASE A: DELIVERY BADGES + DEALER MODUS v5.60
   ════════════════════════════════════════════════════════════════ */

/* Delivery badges per regel — vervangt oude availability-dot */
.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.2;
}
.delivery-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Uit voorraad — groen, premium gevoel */
.delivery-instock {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
}
.delivery-instock::before {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* ~1 week (ABB M3AA/M2BAX/M3BP) — blauw, betrouwbaar */
.delivery-oneweek {
  background: rgba(0, 32, 96, 0.08);
  color: #002060;
}
.delivery-oneweek::before {
  background: #2563eb;
}

/* Op aanvraag — neutraal grijs, geen urgentie */
.delivery-onrequest {
  background: rgba(90, 101, 112, 0.08);
  color: #5a6570;
}
.delivery-onrequest::before {
  background: #9ca3af;
}



/* ════════════════════════════════════════════════════════════════
   NAMEPLATE UPLOAD — fast track via foto van typeplaat
   ════════════════════════════════════════════════════════════════ */
.dimsheet-nameplate {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(0, 32, 96, 0.04) 0%, rgba(246, 150, 10, 0.04) 100%);
  border: 2px dashed rgba(0, 32, 96, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 200ms ease;
}
.dimsheet-nameplate:hover {
  border-color: var(--accent, #E2131A);
  background: linear-gradient(135deg, rgba(226, 19, 26, 0.04) 0%, rgba(246, 150, 10, 0.06) 100%);
  transform: translateY(-1px);
}
.dimsheet-nameplate.has-file {
  border-style: solid;
  border-color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(16, 185, 129, 0.02) 100%);
}
.dimsheet-nameplate-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  color: var(--primary, #002060);
  box-shadow: 0 2px 8px rgba(0, 32, 96, 0.08);
}
.dimsheet-nameplate-icon svg {
  width: 26px;
  height: 26px;
}
.dimsheet-nameplate.has-file .dimsheet-nameplate-icon {
  color: #10b981;
}
.dimsheet-nameplate-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.dimsheet-nameplate-text strong {
  color: var(--primary, #002060);
  font-size: 0.9375rem;
  font-weight: 700;
}
.dimsheet-nameplate-text span {
  color: var(--text-muted, #5a6570);
  font-size: 0.8125rem;
  line-height: 1.4;
}
.dimsheet-nameplate-filename {
  color: #047857 !important;
  font-weight: 600 !important;
  margin-top: 2px;
  word-break: break-all;
}
.dimsheet-nameplate.has-file .dimsheet-nameplate-filename {
  display: inline;
}

@media (max-width: 540px) {
  .dimsheet-nameplate { padding: 14px 16px; gap: 12px; }
  .dimsheet-nameplate-icon { width: 40px; height: 40px; }
  .dimsheet-nameplate-icon svg { width: 22px; height: 22px; }
}



/* ════════════════════════════════════════════════════════════════
   DIMSHEET VISUELE GROEPEN v5.61 — schematische SVG-tekeningen
   met labelled measurements voor B3 voet, flens, en uitsteekas
   ════════════════════════════════════════════════════════════════ */

.dim-visual-group {
  margin: 20px 0;
  padding: 20px 22px;
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  border: 1px solid rgba(0, 32, 96, 0.08);
  border-left: 3px solid #002060;
  border-radius: 0 10px 10px 0;
}

.dim-visual-title {
  margin: 0 0 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary, #002060);
  line-height: 1.3;
}

.dim-visual-help {
  margin: 0 0 16px;
  font-size: 0.8125rem;
  color: var(--text-muted, #5a6570);
  line-height: 1.5;
}

.dim-visual-content {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1.2fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 720px) {
  .dim-visual-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.dim-visual-svg {
  background: #fff;
  border: 1px solid rgba(0, 32, 96, 0.08);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dim-visual-svg svg {
  width: 100%;
  height: auto;
  max-width: 320px;
  max-height: 220px;
}

.dim-visual-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dim-visual-fields .dimsheet-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dim-letter-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text, #1a1a1a);
}

.dim-letter-label strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  background: var(--accent, #E2131A);
  color: #fff;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.875rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  flex-shrink: 0;
}

.dim-letter-label span {
  color: var(--text-muted, #5a6570);
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Extra dimensies — uitklapbaar voor power users */
.dim-extra-fields {
  margin-top: 16px;
  background: #fff;
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.dim-extra-fields-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary, #002060);
  user-select: none;
  list-style: none;
  transition: background 160ms ease;
}

.dim-extra-fields-summary::-webkit-details-marker { display: none; }
.dim-extra-fields-summary::marker { display: none; }
.dim-extra-fields-summary:hover { background: rgba(0, 32, 96, 0.03); }

.dim-extra-chevron {
  width: 18px;
  height: 18px;
  color: var(--text-muted, #5a6570);
  transition: transform 220ms ease;
  flex-shrink: 0;
}

.dim-extra-fields[open] .dim-extra-chevron {
  transform: rotate(180deg);
  color: var(--accent, #E2131A);
}

.dim-extra-fields[open] .dim-extra-fields-summary {
  border-bottom: 1px solid rgba(0, 32, 96, 0.08);
}

.dim-extra-fields .dimsheet-grid {
  padding: 14px 18px;
}


/* ════════════════════════════════════════════════════════════════
   SPECIAL PRODUCT LANDING PAGES v5.62 (rem / 2-speed / 3-speed)
   ════════════════════════════════════════════════════════════════ */
.special-product-page {
  background: #fafbfc;
}
.special-product-main {
  padding: 32px 0 64px;
}
/* v6.45: editorial eyebrow — no pill, no gradient, no SaaS badge.
   Mono caps + amber hairline. Same vocabulary as Dormot cinematic mark
   and rv-hero dossier card. Reads as a specimen label, not a UI chip. */
.special-product-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  margin: 16px 0 24px;
  background: transparent;
  border: none;
  border-radius: 0;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.special-product-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #F6960A;
  flex-shrink: 0;
}
.special-product-eyebrow svg {
  display: none;  /* drop the SaaS-y icon */
}
.special-product-title {
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  font-weight: 800;
  color: var(--primary, #002060);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 800px;
}
.special-product-lead {
  font-size: 1.0625rem;
  color: var(--text-muted, #5a6570);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 0 28px;
}
.special-product-cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.special-product-cta-bar .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.special-product-cta-bar .btn svg {
  width: 18px;
  height: 18px;
}
.special-product-body {
  background: #fff;
  border: 1px solid rgba(0, 32, 96, 0.08);
  border-radius: 14px;
  padding: 32px 36px;
  margin-bottom: 28px;
  max-width: 880px;
}
.special-product-body h2 {
  margin: 28px 0 12px;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary, #002060);
  line-height: 1.3;
}
.special-product-body h2:first-child {
  margin-top: 0;
}
.special-product-body p {
  color: var(--text, #1a1a1a);
  line-height: 1.7;
  margin: 0 0 14px;
}
.special-product-body .article-bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
  display: grid;
  gap: 8px;
}
.special-product-body .article-bullets li {
  position: relative;
  padding: 8px 14px 8px 36px;
  background: rgba(0, 32, 96, 0.03);
  border-left: 3px solid var(--accent, #E2131A);
  border-radius: 0 8px 8px 0;
  line-height: 1.5;
  color: var(--text, #1a1a1a);
}
.special-product-body .article-bullets li::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 13px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E2131A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Pricelist link card */
.special-pricelist-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  margin: 32px auto;
  background: linear-gradient(135deg, #001640 0%, #002060 100%);
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
  max-width: 880px;
  width: 100%;
  box-sizing: border-box;
}
.special-pricelist-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 32, 96, 0.2);
}
.special-pricelist-link-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.special-pricelist-link-icon svg {
  width: 22px;
  height: 22px;
}
.special-pricelist-link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.special-pricelist-link-text strong {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.special-pricelist-link-text span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 2px;
}
.special-pricelist-link-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 200ms ease;
}
.special-pricelist-link:hover .special-pricelist-link-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Related products grid */
.related-special-products {
  max-width: 880px;
  margin-top: 28px;
}
.related-special-products h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-muted, #5a6570);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.related-card {
  display: block;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 10px;
  text-decoration: none;
  color: var(--primary, #002060);
  transition: all 180ms ease;
}
.related-card:hover {
  border-color: var(--accent, #E2131A);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 32, 96, 0.06);
}
.related-card strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.related-card span {
  font-size: 0.8125rem;
  color: var(--text-muted, #5a6570);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .special-product-body { padding: 22px 18px; }
  .special-pricelist-link { padding: 14px 16px; gap: 12px; }
}

/* ════════════════════════════════════════════════════════════════
   HERO SPECIALS CHIPS — entry points voor brake/2-speed/3-speed
   ════════════════════════════════════════════════════════════════ */
.hero-specials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.hero-specials-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-right: 4px;
}
.hero-specials-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 180ms ease;
}
.hero-specials-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.hero-specials-chip svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.85;
}
@media (max-width: 640px) {
  .hero-specials-label { width: 100%; margin-bottom: 4px; }
}

/* v6.64: .hero-specials zit ÍN het witte .hero-tool card. Wit op wit was onleesbaar.
   Donkere variant zodat chips contrasteren met witte achtergrond. */
.hero-tool .hero-specials-label {
  color: var(--primary);
  opacity: 0.7;
}
.hero-tool .hero-specials-chip {
  color: var(--primary);
  background: rgba(0, 32, 96, 0.05);
  border: 1px solid rgba(0, 32, 96, 0.18);
}
.hero-tool .hero-specials-chip:hover {
  background: rgba(0, 32, 96, 0.1);
  border-color: rgba(0, 32, 96, 0.35);
  color: var(--accent);
}

/* ════════════════════════════════════════════════════════════════
   PRICELIST SPECIALS HINT — entry block boven tabel
   ════════════════════════════════════════════════════════════════ */
.pricelist-specials-hint {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  margin: 16px 0;
  background: linear-gradient(135deg, rgba(0, 32, 96, 0.04) 0%, rgba(246, 150, 10, 0.04) 100%);
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 12px;
}
.pricelist-specials-hint-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  color: var(--primary, #002060);
  box-shadow: 0 2px 6px rgba(0, 32, 96, 0.06);
}
.pricelist-specials-hint-icon svg {
  width: 20px;
  height: 20px;
}
.pricelist-specials-hint-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricelist-specials-hint-text strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary, #002060);
}
.pricelist-specials-hint-text span {
  font-size: 0.8125rem;
  color: var(--text-muted, #5a6570);
  line-height: 1.5;
}
.pricelist-specials-hint-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pricelist-specials-action {
  display: inline-flex;
  padding: 6px 11px;
  background: #fff;
  border: 1px solid rgba(0, 32, 96, 0.15);
  border-radius: 999px;
  color: var(--primary, #002060);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 160ms ease;
  white-space: nowrap;
}
.pricelist-specials-action:hover {
  border-color: var(--accent, #E2131A);
  color: var(--accent, #E2131A);
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .pricelist-specials-hint {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .pricelist-specials-hint-icon { display: none; }
  .pricelist-specials-hint-actions { width: 100%; justify-content: flex-start; }
}

/* ════════════════════════════════════════════════════════════════
   HERO FAST-REPLACE PILL v5.63 — leesbaar + premium
   Witte tekst op donkere achtergrond met rode accent — WCAG AAA contrast
   ════════════════════════════════════════════════════════════════ */
.hero-fast-replace {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.hero-fast-replace::before {
  /* Subtiele diagonal-shine animatie */
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: heroFastShine 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroFastShine {
  0% { left: -100%; }
  50% { left: 200%; }
  100% { left: 200%; }
}
.hero-fast-replace-icon {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E2131A 0%, #b80f15 100%);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(226, 19, 26, 0.25), 0 4px 10px rgba(226, 19, 26, 0.4);
}
.hero-fast-replace-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.hero-fast-replace-text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}
.hero-fast-replace-text strong {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.hero-fast-replace-text span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.005em;
}

@media (max-width: 540px) {
  .hero-fast-replace {
    gap: 10px;
    padding: 10px 16px 10px 12px;
  }
  .hero-fast-replace-icon { width: 28px; height: 28px; }
  .hero-fast-replace-icon svg { width: 14px; height: 14px; }
  .hero-fast-replace-text strong { font-size: 0.875rem; }
  .hero-fast-replace-text span { font-size: 0.75rem; }
}


/* ════════════════════════════════════════════════════════════════
   FASE C: VIEW-MODE TOGGLE + GROUPED PRICELIST v5.65
   ════════════════════════════════════════════════════════════════ */

/* View-mode toggle bar — horizontaal, segmented control stijl */
.pricelist-view-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0 12px;
  flex-wrap: wrap;
}
.pricelist-view-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted, #5a6570);
}
.pricelist-view-options {
  display: inline-flex;
  background: rgba(0, 32, 96, 0.04);
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
}
.pricelist-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted, #5a6570);
  cursor: pointer;
  transition: all 160ms ease;
}
.pricelist-view-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.pricelist-view-btn:hover {
  color: var(--primary, #002060);
  background: rgba(0, 32, 96, 0.04);
}
.pricelist-view-btn.active {
  background: #fff;
  color: var(--primary, #002060);
  box-shadow: 0 1px 3px rgba(0, 32, 96, 0.1);
}
.pricelist-view-btn.active svg {
  color: var(--accent, #E2131A);
}

@media (max-width: 540px) {
  .pricelist-view-options { width: 100%; }
  .pricelist-view-btn { flex: 1; justify-content: center; }
  .pricelist-view-btn span { display: none; }
}

/* Group-header rows — span de hele tabelbreedte */
.pricetable .group-header-row {
  background: transparent;
}
.pricetable .group-header-row:hover {
  background: transparent;
}
.pricetable .group-header-cell {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

/* Het <details> element binnen de header-cel */
.group-details {
  margin: 0;
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 8px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.group-details[open] {
  border-color: rgba(0, 32, 96, 0.2);
  box-shadow: 0 4px 12px rgba(0, 32, 96, 0.06);
}

.group-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  transition: background 160ms ease;
}
.group-summary::-webkit-details-marker { display: none; }
.group-summary::marker { display: none; }
.group-summary:hover {
  background: linear-gradient(180deg, #f4f6f8 0%, #eef0f3 100%);
}

.group-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted, #5a6570);
  transition: transform 200ms ease;
}
.group-chevron svg { width: 16px; height: 16px; }
.group-details[open] .group-chevron {
  transform: rotate(90deg);
  color: var(--accent, #E2131A);
}

.group-brand-logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.group-title {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary, #002060);
  letter-spacing: -0.005em;
  line-height: 1.3;
  min-width: 0;
}

.group-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.group-count {
  font-size: 0.8125rem;
  color: var(--text-muted, #5a6570);
}
.group-count strong {
  color: var(--primary, #002060);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.group-range {
  font-size: 0.75rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif"SFMono-Regular", monospace;
  color: var(--text-muted, #5a6570);
  background: rgba(0, 32, 96, 0.04);
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Tabel-rows binnen een groep */
.group-rows-wrap {
  background: #fff;
  border-top: 1px solid rgba(0, 32, 96, 0.06);
  overflow-x: auto;
}
.group-rows-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  table-layout: auto;
}
.group-rows-table tbody tr {
  border-top: 1px solid rgba(0, 32, 96, 0.04);
}
.group-rows-table tbody tr:first-child {
  border-top: none;
}
.group-rows-table tbody tr:hover {
  background: rgba(0, 32, 96, 0.02);
}
.group-rows-table td {
  padding: 10px 12px;
  font-size: 0.8125rem;
  vertical-align: middle;
}

/* Mobiele aanpassingen */
@media (max-width: 740px) {
  .group-summary {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 14px;
  }
  .group-meta {
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 10px;
    padding-left: 32px;
  }
  .group-title {
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .group-brand-logo { height: 18px; }
}


/* ════════════════════════════════════════════════════════════════
   FASE D: ABB SERIES LANDINGSPAGINAS v5.66
   ════════════════════════════════════════════════════════════════ */

/* ABB eyebrow met logo */
.abb-series-eyebrow {
  background: linear-gradient(135deg, rgba(0, 32, 96, 0.08) 0%, rgba(0, 64, 128, 0.04) 100%);
  border-color: rgba(0, 32, 96, 0.2);
  color: var(--primary, #002060);
}
.abb-eyebrow-logo {
  height: 14px;
  width: auto;
  flex-shrink: 0;
}

/* Subtitel onder hoofd-lead voor ABB-series */
.abb-series-eyebrow-text {
  display: inline-block;
  margin: 0 0 24px;
  padding: 6px 12px;
  background: rgba(0, 32, 96, 0.04);
  border-radius: 6px;
  font-size: 0.875rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif"SFMono-Regular", monospace;
  color: var(--text-muted, #5a6570);
}

/* Sample-varianten tabel binnen article body */
.series-samples-title {
  margin: 32px 0 4px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary, #002060);
}
.series-samples-sub {
  margin: 0 0 14px !important;
  font-size: 0.8125rem !important;
  color: var(--text-muted, #5a6570) !important;
}
.series-samples-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 10px;
  background: #fff;
}
.series-samples-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.series-samples-table thead th {
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  border-bottom: 2px solid rgba(0, 32, 96, 0.1);
  padding: 11px 14px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted, #5a6570);
}
.series-samples-table tbody td {
  padding: 11px 14px;
  border-top: 1px solid rgba(0, 32, 96, 0.04);
  vertical-align: middle;
}
.series-samples-table tbody tr:hover {
  background: rgba(0, 32, 96, 0.02);
}
.series-samples-table .mono {
  font-family: 'IBM Plex Sans', system-ui, sans-serif"SFMono-Regular", monospace;
  font-size: 0.8125rem;
  color: var(--text, #1a1a1a);
}

/* ABB index hub-page card-grid */
.abb-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.abb-hub-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 200ms ease;
  position: relative;
  overflow: hidden;
}
.abb-hub-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(226, 19, 26, 0) 0%, rgba(226, 19, 26, 0.05) 100%);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}
.abb-hub-card:hover {
  border-color: var(--accent, #E2131A);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 32, 96, 0.08);
}
.abb-hub-card:hover::before {
  opacity: 1;
}
.abb-hub-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.abb-hub-card-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background: rgba(0, 32, 96, 0.08);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  color: var(--primary, #002060);
  letter-spacing: 0.04em;
}
.abb-hub-card-count {
  font-size: 0.75rem;
  color: var(--text-muted, #5a6570);
  margin-left: auto;
}
.abb-hub-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary, #002060);
  line-height: 1.35;
}
.abb-hub-card-desc {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted, #5a6570);
  line-height: 1.5;
  flex: 1;
}
.abb-hub-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent, #E2131A);
  margin-top: 4px;
}
.abb-hub-card-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}
.abb-hub-card:hover .abb-hub-card-cta svg {
  transform: translateX(3px);
}


/* ABB series-link bar onder ABB grid op homepage */
.abb-series-link-bar {
  margin: 24px 0 32px;
}
.abb-series-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  background: linear-gradient(135deg, #002060 0%, #003088 100%);
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.abb-series-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 32, 96, 0.35);
}
.abb-series-link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.abb-series-link-text strong {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.abb-series-link-text span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}
.abb-series-link-arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.95;
  transition: transform 200ms ease, opacity 200ms ease;
}
.abb-series-link:hover .abb-series-link-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* ════════════════════════════════════════════════════════════════
   v5.67: PRIJZEN VERBERGEN — productlijst zonder bruto/netto
   ════════════════════════════════════════════════════════════════ */

/* Verberg bruto + netto kolommen in de productlijst-tabel */
.col-price-gross,
.col-price-net {
  display: none !important;
}

/* Korting-paneel verbergen — geen waarde zonder prijzen */
.discount-panel,
.disc-input-wrap,
.discount-controls,
[id^="disc-"] {
  display: none !important;
}

/* Selection-bar totals verbergen (gebruikt netto-prijs) */
.selection-total,
.selection-discount {
  display: none !important;
}


/* ════════════════════════════════════════════════════════════════
   v5.69: FAQ blocks op series-pagina's
   ════════════════════════════════════════════════════════════════ */

.series-faq {
  margin: 36px 0 24px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 14px;
}
.series-faq > h2 {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary, #002060);
}
.series-faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.series-faq .faq-item {
  border: 1px solid rgba(0, 32, 96, 0.08);
  border-radius: 10px;
  background: #fafbfc;
  transition: border-color 200ms ease;
}
.series-faq .faq-item[open] {
  border-color: rgba(0, 32, 96, 0.2);
  background: #fff;
}
.series-faq .faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary, #002060);
  font-size: 0.9375rem;
  list-style: none;
  position: relative;
  padding-right: 44px;
}
.series-faq .faq-q::-webkit-details-marker { display: none; }
.series-faq .faq-q::marker { display: none; }
.series-faq .faq-q::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent, #E2131A);
  transition: transform 200ms ease;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.series-faq .faq-item[open] .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}
.series-faq .faq-a {
  padding: 0 18px 18px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text, #1a1a1a);
}


/* ════════════════════════════════════════════════════════════════
   v5.69: STATISCHE TOP 50 voor AI/crawler discovery
   ════════════════════════════════════════════════════════════════ */

.popular-static {
  margin: 24px 0 12px;
  background: #fff;
  border: 1px solid rgba(0, 32, 96, 0.1);
  border-radius: 14px;
  overflow: hidden;
}
.popular-static[open] {
  box-shadow: 0 6px 18px rgba(0, 32, 96, 0.05);
}

.popular-static-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  user-select: none;
  transition: background 200ms ease;
}
.popular-static-summary::-webkit-details-marker { display: none; }
.popular-static-summary::marker { display: none; }
.popular-static-summary:hover {
  background: linear-gradient(180deg, #f4f6f8 0%, #eef0f3 100%);
}

.popular-static-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, #E2131A);
  transition: transform 200ms ease;
}
.popular-static-icon svg {
  width: 16px;
  height: 16px;
}
.popular-static[open] .popular-static-icon {
  transform: rotate(90deg);
}

.popular-static-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary, #002060);
  flex: none;
}
.popular-static-sub {
  font-size: 0.8125rem;
  color: var(--text-muted, #5a6570);
  flex: 1;
}

.popular-static-body {
  padding: 22px 24px 28px;
  border-top: 1px solid rgba(0, 32, 96, 0.06);
}

.popular-static-intro {
  font-size: 0.875rem;
  color: var(--text-muted, #5a6570);
  margin: 0 0 22px;
  line-height: 1.55;
}

.popular-static-block {
  margin-bottom: 24px;
}
.popular-static-block:last-child {
  margin-bottom: 0;
}

.popular-static-block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 32, 96, 0.06);
}
.popular-static-logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.popular-static-block-head h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary, #002060);
}

.popular-static-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(0, 32, 96, 0.08);
  border-radius: 10px;
  background: #fff;
}
.popular-static-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}
.popular-static-table thead th {
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  border-bottom: 2px solid rgba(0, 32, 96, 0.1);
  padding: 10px 13px;
  text-align: left;
  font-size: 0.7125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted, #5a6570);
  white-space: nowrap;
}
.popular-static-table tbody td {
  padding: 9px 13px;
  border-top: 1px solid rgba(0, 32, 96, 0.04);
  vertical-align: middle;
}
.popular-static-table tbody tr:hover {
  background: rgba(0, 32, 96, 0.02);
}
.popular-static-table .mono {
  font-family: 'IBM Plex Sans', system-ui, sans-serif"SFMono-Regular", monospace;
  font-size: 0.75rem;
}

.popular-static-cta {
  font-size: 0.875rem;
  color: var(--text-muted, #5a6570);
  background: rgba(0, 32, 96, 0.03);
  padding: 14px 18px;
  border-radius: 8px;
  margin: 22px 0 0;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .popular-static-summary {
    flex-wrap: wrap;
    gap: 8px;
  }
  .popular-static-sub {
    flex-basis: 100%;
    padding-left: 36px;
  }
  .popular-static-table thead th,
  .popular-static-table tbody td {
    padding: 8px 10px;
    font-size: 0.75rem;
  }
}


/* VFD link in homepage abb-series-link-bar — rood om visueel onderscheid */
.abb-series-link.vfd-link {
  background: linear-gradient(135deg, #B0151B 0%, #E2131A 100%);
}
.abb-series-link.vfd-link:hover {
  box-shadow: 0 12px 28px rgba(226, 19, 26, 0.25);
}

/* VFD eyebrow op de pagina zelf — rood-tint */
.vfd-eyebrow {
  background: linear-gradient(135deg, rgba(226, 19, 26, 0.08) 0%, rgba(176, 21, 27, 0.04) 100%);
  border-color: rgba(226, 19, 26, 0.2);
  color: var(--accent, #E2131A);
}

/* Stack 2 link-bars onder elkaar met spacing */
.abb-series-link-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


/* ════════════════════════════════════════════════════════════════
   v5.72: article-back-link en losse SVG-fixes
   ════════════════════════════════════════════════════════════════ */

/* Article-page header met back link — voorheen ontbrak deze styling
   waardoor de SVG-chevron op default 300×150 px renderde */
.article-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 32, 96, 0.08);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary, #002060);
  text-decoration: none;
  padding: 6px 4px;
  border-radius: 6px;
  transition: color 160ms ease, transform 160ms ease;
}
.article-back-link:hover {
  color: var(--accent, #E2131A);
  transform: translateX(-2px);
}
.article-back-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.article-back-link span {
  white-space: nowrap;
}

/* Defensive: alle losstaande SVGs binnen article/special-pages krijgen een hard maximum
   zodat geen enkele nogmaals op default 300px kan renderen */
/* Globale safety rule: ongelabelde SVGs in article-pages cappen op 24×24 zodat
   ze niet op default 300px renderen. Decoratieve mark-/illustration-SVGs met
   class *-svg, *-mark, of intentioneel verwijderen via :not()-uitbreiding.
   LET OP: nieuwe decoratieve SVGs MOETEN width/height attributen krijgen of
   class="...-svg" / "...-mark" zodat ze hier niet ingevangen worden. */
.article-page svg:not([width]):not([height]):not([class*="logo"]):not([class*="-svg"]):not([class*="-mark"]) {
  max-width: 24px;
  max-height: 24px;
}


/* v5.76: maritime-link en trident-link met onderscheidende kleur */
.abb-series-link.maritime-link {
  background: linear-gradient(135deg, #14532D 0%, #16A34A 100%);
}
.abb-series-link.maritime-link:hover {
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.25);
}
.abb-series-link.trident-link {
  background: linear-gradient(135deg, #134E4A 0%, #0F766E 100%);
}
.abb-series-link.trident-link:hover {
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.25);
}


/* ============ v5.77: Hub-pagina visuele upgrade ============ */

/* Hero met gradient achtergrond */
.hub-hero {
  border-radius: 20px;
  padding: 48px 40px 40px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hub-hero.boeg {
  background: linear-gradient(135deg, #14532D 0%, #16A34A 100%);
}
.hub-hero.trident {
  background: linear-gradient(135deg, #134E4A 0%, #0F766E 100%);
}
.hub-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hub-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hub-hero h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #fff;
}
.hub-hero-lead {
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.95;
  max-width: 720px;
  margin: 0 0 26px;
  color: rgba(255,255,255,0.95);
}
.hub-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.hub-hero-cta .btn-accent {
  background: #fff;
  color: #14532D;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.hub-hero.trident .hub-hero-cta .btn-accent {
  color: #134E4A;
}
.hub-hero-cta .btn-accent:hover {
  transform: translateY(-1px);
}
.hub-hero-cta .btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.hub-hero-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}

/* Spec-tiles onder de hero */
.hub-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}
.hub-spec {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.hub-spec:hover {
  border-color: #16A34A;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.08);
}
.hub-hero.trident ~ .hub-specs .hub-spec:hover {
  border-color: #0F766E;
  box-shadow: 0 6px 18px rgba(15, 118, 110, 0.08);
}
.hub-spec-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  background: #ECFDF5;
  color: #16A34A;
}
.hub-hero.trident ~ .hub-specs .hub-spec-icon {
  background: #F0FDFA;
  color: #0F766E;
}
.hub-spec-icon svg {
  width: 16px;
  height: 16px;
}
.hub-spec-label {
  font-size: 12px;
  color: #6B7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hub-spec-value {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

/* Stock-section met brand grid */
.hub-stock-section {
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
  border-radius: 20px;
  padding: 36px 32px;
  margin: 36px 0 28px;
  border: 1px solid #E5E7EB;
}
.hub-stock-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}
.hub-stock-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #16A34A 0%, #14532D 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-stock-badge svg {
  width: 24px;
  height: 24px;
}
.hub-stock-header h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #111827;
}
.hub-stock-header p {
  font-size: 15px;
  line-height: 1.55;
  color: #374151;
  margin: 0;
}
.hub-stock-brands-label {
  font-size: 12px;
  color: #6B7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 24px 0 12px;
}
.hub-stock-brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
}
.hub-stock-brand {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  transition: border-color 0.15s ease;
}
.hub-stock-brand:hover {
  border-color: #16A34A;
}
.hub-emergency {
  margin-top: 22px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-left: 3px solid #DC2626;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.hub-emergency-text strong {
  display: block;
  font-size: 15px;
  color: #111827;
  margin-bottom: 4px;
}
.hub-emergency-text span {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
}
.hub-emergency-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.hub-emergency-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.1s ease;
}
.hub-emergency-actions a:hover {
  transform: translateY(-1px);
}
.hub-emergency-call {
  background: #DC2626;
  color: #fff;
}
.hub-emergency-whatsapp {
  background: #25D366;
  color: #fff;
}
.hub-emergency-actions svg {
  width: 14px;
  height: 14px;
}

/* Pretty bullets in hub-pagina */
.hub-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}
.hub-bullets li {
  position: relative;
  padding: 10px 12px 10px 36px;
  background: #F9FAFB;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
}
.hub-bullets li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 14px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.hub-content-page.trident-page .hub-bullets li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F766E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.hub-content-page h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: #111827;
  letter-spacing: -0.01em;
}
.hub-content-page h2:first-of-type {
  margin-top: 0;
}
.hub-content-page > p {
  font-size: 15px;
  line-height: 1.65;
  color: #374151;
  margin: 0 0 12px;
}

@media (max-width: 720px) {
  .hub-hero { padding: 32px 24px 28px; border-radius: 16px; }
  .hub-hero h1 { font-size: 28px; }
  .hub-hero-lead { font-size: 15px; }
  .hub-stock-section { padding: 28px 22px; border-radius: 16px; }
  .hub-stock-header h2 { font-size: 20px; }
  .hub-emergency { flex-direction: column; align-items: flex-start; }
  .hub-emergency-actions { width: 100%; }
  .hub-emergency-actions a { flex: 1; justify-content: center; }
}


/* ============ v5.79: Marine-motors hub-pagina styling ============ */

.hub-hero.marine {
  background: linear-gradient(135deg, #0C4A6E 0%, #0EA5E9 100%);
}
.hub-hero.marine::before {
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
}

.marine-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 16px 0 36px;
}
.marine-group {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px 22px 18px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.marine-group:hover {
  border-color: #0EA5E9;
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.08);
}
.marine-group h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #0C4A6E;
  letter-spacing: -0.005em;
}
.marine-group .hub-bullets {
  display: block;
  margin: 0;
}
.marine-group .hub-bullets.compact li {
  background: transparent;
  padding: 6px 0 6px 24px;
  font-size: 13px;
  color: #374151;
  line-height: 1.45;
  border-bottom: 1px solid #F3F4F6;
}
.marine-group .hub-bullets.compact li:last-child {
  border-bottom: none;
}
.marine-group .hub-bullets.compact li::before {
  left: 2px;
  top: 11px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230EA5E9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* Stock-section met merken-groups */
.marine-stock-section {
  background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
  border-radius: 18px;
  padding: 32px 28px;
  margin: 24px 0 28px;
  border: 1px solid #BAE6FD;
}
.marine-stock-section > h2 {
  font-size: 22px;
  margin: 0 0 8px;
  color: #0C4A6E;
}
.marine-stock-section > p {
  font-size: 14px;
  color: #475569;
  margin: 0 0 20px;
}
.marine-brand-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.marine-brand-group h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #475569;
  margin: 0 0 10px;
  font-weight: 600;
}
.marine-brand-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.marine-brand-tile {
  background: #fff;
  border: 1px solid #BAE6FD;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  color: #0C4A6E;
  transition: border-color 0.15s ease;
}
.marine-brand-tile:hover {
  border-color: #0EA5E9;
}

@media (max-width: 720px) {
  .marine-groups { grid-template-columns: 1fr; gap: 14px; }
  .marine-stock-section { padding: 24px 20px; }
  .marine-brand-groups { grid-template-columns: 1fr; }
}


/* v5.79: marine-link op homepage (deep ocean blue) */
.abb-series-link.marine-link {
  background: linear-gradient(135deg, #0C4A6E 0%, #0EA5E9 100%);
}
.abb-series-link.marine-link:hover {
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.25);
}


/* ============ v5.80: Marine-hub bridge sectie tussen Trident en Compare ============ */
.marine-hub-bridge {
  padding: 32px 0;
}
.marine-hub-bridge .abb-series-link-bar {
  margin: 0;
}

@media (max-width: 720px) {
  .marine-hub-bridge { padding: 24px 0; }
}



/* ============================================================
   v5.83: DORMOT HUB-PAGINA — premium industrial brand design
   Color palette: Dormot Red #E30613 / Black #0a0a0a / White #fff
   ============================================================ */

:root {
  --dormot-red: #E30613;
  --dormot-red-dark: #B8050F;
  --dormot-red-bright: #FF1A2C;
  --dormot-black: #0a0a0a;
  --dormot-charcoal: #1a1a1a;
  --dormot-graphite: #2a2a2a;
  --dormot-silver: #f5f5f5;
  --dormot-stone: #e8e8e8;
}

/* === Body wrapper voor Dormot pagina === */
.dormot-page {
  background: #161618;
}
.dormot-page .article-main {
  padding: 0;
}
.dormot-page .article-main > .container {
  max-width: none;
  padding: 0;
}

/* === Logo strip — boven de hero === */
.dormot-logo-strip {
  background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
  padding: 40px 24px 32px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
}
.dormot-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 36px;
  background: #ffffff;
  border: 2px solid var(--dormot-red);
  border-radius: 12px;
  box-shadow:
    0 8px 32px rgba(226, 19, 26, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 16px;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.dormot-logo-frame:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(226, 19, 26, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.06);
}
/* Subtle corner-accents zoals op homepage */
.dormot-logo-frame::before,
.dormot-logo-frame::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 4px;
  background: var(--dormot-red);
  opacity: 0.18;
}
.dormot-logo-frame::before { top: -2px; left: 24px; }
.dormot-logo-frame::after  { bottom: -2px; right: 24px; }
.dormot-logo-strip img {
  max-width: 240px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 400ms cubic-bezier(.34,1.56,.64,1);
}
.dormot-logo-frame:hover img {
  transform: scale(1.04);
}
.dormot-logo-frame-glow {
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  background: radial-gradient(circle at 50% 50%, rgba(227, 6, 19, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* === Breadcrumb in white container === */
.dormot-page .article-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

/* === HERO — Cinematic black with red accent bar === */
.dormot-hero {
  background: 
    radial-gradient(ellipse at top right, rgba(227, 6, 19, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 96px 32px 88px;
  position: relative;
  overflow: hidden;
}
.dormot-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--dormot-red);
}
.dormot-hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.dormot-hero-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 56px;
  position: relative;
  z-index: 1;
}
/* v6.45: editorial Dormot eyebrow — same vocabulary as cinematic top-right
   but with Dormot red accent. No pill, no glowing dot, no bg fill. */
.dormot-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}
.dormot-hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #E2231A;
  border-radius: 0;
  box-shadow: none;
  flex-shrink: 0;
}
.dormot-hero h1 {
  font-family: 'IBM Plex Sans', -apple-system, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  max-width: 900px;
  color: #ffffff;
}
.dormot-hero h1 strong {
  color: var(--dormot-red-bright);
  font-weight: 700;
}
.dormot-hero-lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 780px;
  margin: 0 0 48px;
}

/* Hero stats row — key numbers */
.dormot-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.dormot-hero-stat {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.dormot-hero-stat:first-child {
  padding-left: 0;
}
.dormot-hero-stat:last-child {
  border-right: none;
}
.dormot-hero-stat-number {
  display: block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  color: var(--dormot-red-bright);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.dormot-hero-stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* Hero CTAs */
.dormot-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.dormot-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--dormot-red);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  border: 2px solid var(--dormot-red);
}
.dormot-btn-primary:hover {
  background: var(--dormot-red-dark);
  border-color: var(--dormot-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(227, 6, 19, 0.4);
}
.dormot-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.25);
  transition: all 0.2s ease;
}
.dormot-btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.05);
}
.dormot-btn-primary svg, .dormot-btn-secondary svg {
  width: 18px;
  height: 18px;
}

/* === Trust strip — under hero === */
.dormot-trust-strip {
  background: var(--dormot-charcoal);
  color: #ffffff;
  padding: 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.dormot-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.dormot-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.dormot-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--dormot-red-bright);
  flex-shrink: 0;
}

/* === Section base === */
.dormot-section {
  padding: 96px 32px;
  background: #ffffff;
  max-width: 1280px;
  margin: 0 auto;
}
.dormot-section.alt {
  background: var(--dormot-silver);
}
.dormot-section.dark {
  background: var(--dormot-black);
  color: #ffffff;
}
.dormot-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.dormot-section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dormot-red);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}
.dormot-section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: var(--dormot-red);
}
.dormot-section h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--dormot-black);
  max-width: 800px;
}
.dormot-section.dark h2 {
  color: #ffffff;
}
.dormot-section-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #555;
  max-width: 780px;
  margin: 0 0 56px;
}
.dormot-section.dark .dormot-section-lead {
  color: rgba(255,255,255,0.75);
}

/* === Product line cards — magazine style === */
.dormot-lines-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.dormot-line-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
}
.dormot-line-card:hover {
  border-color: var(--dormot-red);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.dormot-line-card-content {
  padding: 48px 48px 40px;
}
.dormot-line-card-aside {
  background: var(--dormot-silver);
  padding: 48px 36px 40px;
  border-left: 1px solid #e8e8e8;
  position: relative;
}
.dormot-line-card-aside::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: var(--dormot-red);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

/* Line badge & label */
.dormot-line-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--dormot-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  margin-bottom: 20px;
}
.dormot-line-badge.pro {
  background: var(--dormot-red);
}
.dormot-line-badge.core {
  background: var(--dormot-charcoal);
  color: #fff;
}
.dormot-line-badge.renew {
  background: #fff;
  color: var(--dormot-red);
  border: 2px solid var(--dormot-red);
  padding: 4px 10px;
}

.dormot-line-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--dormot-black);
  letter-spacing: -0.015em;
}
.dormot-line-tagline {
  display: block;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.dormot-line-lead {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 28px;
}

/* Specs grid in aside */
.dormot-line-card-aside h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dormot-red);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--dormot-red);
  display: inline-block;
}
.dormot-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dormot-specs-list li {
  padding: 10px 0;
  font-size: 13px;
  line-height: 1.5;
  color: #2a2a2a;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  padding-left: 18px;
}
.dormot-specs-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 2px;
  background: var(--dormot-red);
}
.dormot-specs-list li:last-child {
  border-bottom: none;
}

/* Use cases box */
.dormot-use-cases {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}
.dormot-use-cases-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dormot-red);
  margin-bottom: 12px;
}
.dormot-use-cases p {
  font-size: 14px;
  line-height: 1.65;
  color: #4a4a4a;
  margin: 0;
}

/* === Comparison table === */
.dormot-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
}
.dormot-comparison-table thead th {
  padding: 18px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--dormot-black);
  color: #ffffff;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.dormot-comparison-table thead th:nth-child(2) {
  background: var(--dormot-red);
}
.dormot-comparison-table thead th:nth-child(3) {
  background: var(--dormot-charcoal);
}
.dormot-comparison-table thead th:nth-child(4) {
  background: linear-gradient(135deg, var(--dormot-red) 0%, var(--dormot-red-dark) 100%);
}
.dormot-comparison-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}
.dormot-comparison-table tbody tr:last-child {
  border-bottom: none;
}
.dormot-comparison-table tbody tr:nth-child(even) {
  background: #fafafa;
}
.dormot-comparison-table tbody td {
  padding: 16px 20px;
  font-size: 14px;
  color: #333;
  border-right: 1px solid #f0f0f0;
  line-height: 1.5;
}
.dormot-comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--dormot-black);
  background: #fff;
}
.dormot-comparison-table tbody td:last-child {
  border-right: none;
}

/* === Applications grid === */
.dormot-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dormot-app-group {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.2s ease;
}
.dormot-app-group:hover {
  border-color: var(--dormot-red);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.dormot-app-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--dormot-red);
}
.dormot-app-group h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dormot-black);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
  letter-spacing: -0.005em;
}
.dormot-app-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dormot-app-group li {
  padding: 8px 0 8px 22px;
  font-size: 13px;
  line-height: 1.5;
  color: #4a4a4a;
  position: relative;
}
.dormot-app-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E30613' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* === Why own brand — editorial style === */
.dormot-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dormot-why-text p {
  font-size: 17px;
  line-height: 1.75;
  color: #2a2a2a;
  margin: 0 0 20px;
}
.dormot-why-text p:first-of-type::first-letter {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 0.85;
  float: left;
  margin: 0 16px 0 0;
  color: var(--dormot-red);
}
.dormot-why-visual {
  position: relative;
  padding: 48px;
  background: var(--dormot-black);
  color: #fff;
  border-radius: 8px;
}
.dormot-why-visual::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  background: var(--dormot-red);
  border-radius: 8px;
  z-index: -1;
}
.dormot-why-stat {
  margin-bottom: 36px;
}
.dormot-why-stat:last-child {
  margin-bottom: 0;
}
.dormot-why-stat-num {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dormot-red-bright);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 8px;
}
.dormot-why-stat-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}

/* === Stocking grid === */
.dormot-stock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.dormot-stock-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 24px 22px;
  transition: all 0.2s ease;
}
.dormot-stock-card:hover {
  border-color: var(--dormot-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.dormot-stock-card-cat {
  font-size: 13px;
  font-weight: 700;
  color: var(--dormot-black);
  margin-bottom: 12px;
  line-height: 1.4;
}
.dormot-stock-card-stock {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}
.dormot-stock-card-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(227, 6, 19, 0.08);
  color: var(--dormot-red);
  font-size: 12px;
  font-weight: 600;
  border-radius: 3px;
}

/* === CTA section === */
.dormot-cta-section {
  background: var(--dormot-black);
  color: #ffffff;
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dormot-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(227, 6, 19, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(227, 6, 19, 0.1) 0%, transparent 50%);
}
.dormot-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.dormot-cta-section h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.dormot-cta-section p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 36px;
  line-height: 1.6;
}
.dormot-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* === Mobile responsive === */
@media (max-width: 900px) {
  .dormot-hero {
    padding: 64px 24px 56px;
  }
  .dormot-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
    margin-top: 40px;
  }
  .dormot-hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 16px;
  }
  .dormot-hero-stat:nth-child(2) {
    border-right: none;
  }
  .dormot-hero-stat:last-child {
    border-bottom: none;
  }
  .dormot-section {
    padding: 64px 24px;
  }
  .dormot-line-card {
    grid-template-columns: 1fr;
  }
  .dormot-line-card-content,
  .dormot-line-card-aside {
    padding: 32px 28px;
  }
  .dormot-line-card-aside {
    border-left: none;
    border-top: 1px solid #e8e8e8;
  }
  .dormot-apps-grid {
    grid-template-columns: 1fr;
  }
  .dormot-why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .dormot-comparison-table {
    font-size: 13px;
  }
  .dormot-comparison-table thead th,
  .dormot-comparison-table tbody td {
    padding: 12px 14px;
  }
  .dormot-trust-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .dormot-comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    min-width: 100%;
  }
  .dormot-hero h1 {
    font-size: 2rem;
  }
  .dormot-hero-eyebrow {
    font-size: 11px;
  }
}

/* v5.82: Dormot homepage link (ROOD nu, niet meer blauw) — overschrijft eerdere) */
.abb-series-link.dormot-link {
  background: linear-gradient(135deg, var(--dormot-red) 0%, var(--dormot-red-dark) 100%);
}
.abb-series-link.dormot-link:hover {
  box-shadow: 0 12px 28px rgba(227, 6, 19, 0.3);
}


/* v5.83: Hero leesbaarheid fixes */
.dormot-hero-lead strong {
  color: var(--dormot-red-bright);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 65%, rgba(227, 6, 19, 0.18) 65%);
  padding: 0 2px;
}

/* Pro badge: helder en groot — primary product */
.dormot-line-badge.pro {
  background: var(--dormot-red);
  color: #fff;
  font-size: 12px;
  padding: 8px 14px;
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.25);
}

/* Hero h1 strong met rood — al goed, maar boost contrast */
.dormot-hero h1 strong {
  color: var(--dormot-red-bright);
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(227, 6, 19, 0.35);
}


/* ============================================================
   v5.85: PDF download link voor Metaalunievoorwaarden
   ============================================================ */
.terms-pdf-download {
  margin: 24px 0 32px;
}
.terms-pdf-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
  border: 1px solid #fecaca;
  border-left: 4px solid #E30613;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.2s ease;
}
.terms-pdf-link:hover {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-color: #E30613;
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.1);
  transform: translateY(-1px);
}
.terms-pdf-link > svg:first-child {
  width: 32px;
  height: 32px;
  color: #E30613;
  flex-shrink: 0;
}
.terms-pdf-link-text {
  flex: 1;
}
.terms-pdf-link-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.terms-pdf-link-text span {
  display: block;
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}
.terms-pdf-arrow {
  width: 20px;
  height: 20px;
  color: #E30613;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .terms-pdf-link {
    flex-wrap: wrap;
    padding: 16px 18px;
  }
  .terms-pdf-link-text {
    flex: 1 1 100%;
    order: 2;
  }
}


/* ============================================================
   v5.86: Logo tagline (Proud Brand Owner) + lidmaatschappen-sectie
   ============================================================ */
.dormot-logo-tagline {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.06em;
  margin-top: 12px;
  text-transform: uppercase;
}

/* Lidmaatschappen-sectie — strakke grid van badges */
.dormot-memberships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.dormot-membership-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.dormot-membership-badge:hover {
  border-color: var(--dormot-red);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.dormot-membership-badge-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 6, 19, 0.06);
  border-radius: 4px;
  color: var(--dormot-red);
}
.dormot-membership-badge-icon svg {
  width: 20px;
  height: 20px;
}
.dormot-membership-badge-text {
  flex: 1;
  min-width: 0;
}
.dormot-membership-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dormot-black);
  margin-bottom: 2px;
  line-height: 1.2;
}
.dormot-membership-badge-text span {
  display: block;
  font-size: 12px;
  color: #666;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .dormot-memberships-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   v5.87: Homepage memberships sectie + scroll progress bar
   ============================================================ */

/* Scroll progress bar — top of page */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 9999;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #002060 0%, #1E40AF 50%, #E30613 100%);
  transition: width 0.05s linear;
  box-shadow: 0 0 12px rgba(227, 6, 19, 0.4);
  border-radius: 0 2px 2px 0;
}

/* Homepage memberships sectie */
.memberships-section {
  background: #f8f9fa;
  padding: 80px 0 88px;
  border-top: 1px solid #e8e8e8;
}
.memberships-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.memberships-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E30613;
  margin-bottom: 14px;
  position: relative;
  padding-left: 32px;
}
.memberships-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: #E30613;
}
.memberships-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #0a0a0a;
}
.memberships-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: #555;
  max-width: 780px;
  margin: 0 0 48px;
}
.memberships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.membership-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.membership-card:hover {
  border-color: #E30613;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.membership-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 6, 19, 0.08);
  border-radius: 6px;
  color: #E30613;
}
.membership-card-icon svg {
  width: 22px;
  height: 22px;
}
.membership-card-text {
  flex: 1;
  min-width: 0;
}
.membership-card-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 3px;
  line-height: 1.25;
}
.membership-card-text span {
  display: block;
  font-size: 12px;
  color: #666;
  line-height: 1.35;
}
.membership-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.membership-card--link .membership-card-text strong::after {
  content: "↗";
  font-weight: 400;
  margin-left: 6px;
  color: #E30613;
  font-size: 12px;
  vertical-align: top;
}
@media (max-width: 900px) {
  .memberships-grid { grid-template-columns: repeat(2, 1fr); }
  .memberships-section { padding: 56px 0 64px; }
}
@media (max-width: 560px) {
  .memberships-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   v5.87: Dormot pagina state-of-the-art upgrade
   - Atmosferische hero met haven-foto achtergrond
   - Stock-cards evenrediger (3-kolom grid forced)
   - Werkplaats-foto split in Stock sectie
   ============================================================ */

/* Hero — atmospheric haven photo background subtle */
.dormot-hero {
  position: relative;
  background-color: #0a0a0a;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.97) 0%, rgba(26,26,26,0.98) 50%, rgba(10,10,10,0.99) 100%),
    image-set(url('assets/haven.webp') type('image/webp'), url('assets/haven.png') type('image/png')) center/cover no-repeat;
}
.dormot-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at top right, rgba(227, 6, 19, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: 0;
}
.dormot-hero-inner { z-index: 2; }
.dormot-hero-grid { z-index: 1; }

/* === Stock cards: forced 2-kolom binnen split, 1-kolom op mobile === */
.dormot-stock-split .dormot-stock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
/* Laatste card (5e, herwikkeling) span 2 kolommen voor visuele balans */
.dormot-stock-split .dormot-stock-grid > .dormot-stock-card:last-child {
  grid-column: 1 / -1;
}
.dormot-stock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .dormot-stock-grid,
  .dormot-stock-split .dormot-stock-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dormot-stock-grid,
  .dormot-stock-split .dormot-stock-grid { grid-template-columns: 1fr; }
}

.dormot-stock-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 28px 24px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 160px;
  position: relative;
  overflow: hidden;
}
.dormot-stock-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--dormot-red);
  transition: width 0.3s ease;
}
.dormot-stock-card:hover::before { width: 100%; }
.dormot-stock-card:hover {
  border-color: var(--dormot-red);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.dormot-stock-card-cat {
  font-size: 14px;
  font-weight: 700;
  color: var(--dormot-black);
  margin-bottom: 4px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.dormot-stock-card-stock {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  flex: 1;
}
.dormot-stock-card-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(227, 6, 19, 0.08);
  color: var(--dormot-red);
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  align-self: flex-start;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  letter-spacing: 0.01em;
}
.dormot-stock-card-time svg {
  width: 14px;
  height: 14px;
}

/* === Stock sectie: split met werkplaats-foto links + cards rechts === */
.dormot-stock-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 8px;
}
.dormot-stock-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  background: var(--dormot-black);
}
.dormot-stock-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(0.92);
}
.dormot-stock-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.dormot-stock-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px 22px;
  z-index: 2;
  color: #fff;
}
.dormot-stock-visual-caption strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.dormot-stock-visual-caption span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.92);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.dormot-stock-visual-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  background: var(--dormot-red);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 2;
}

@media (max-width: 900px) {
  .dormot-stock-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .dormot-stock-visual {
    min-height: 280px;
    max-height: 320px;
  }
}


/* === Parallax-style maritime divider tussen Why-Brand en Stock === */
.dormot-divider-image {
  position: relative;
  height: 320px;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.25) 50%, rgba(10,10,10,0.55) 100%),
    image-set(url('assets/haven.webp') type('image/webp'), url('assets/haven.png') type('image/png')) center/cover no-repeat;
  background-attachment: scroll;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dormot-divider-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dormot-red), transparent);
  z-index: 2;
}
.dormot-divider-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dormot-red), transparent);
  z-index: 2;
}
.dormot-divider-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 800px;
}
.dormot-divider-content blockquote {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.dormot-divider-content blockquote::before {
  content: '"';
  display: inline-block;
  font-size: 2.5em;
  line-height: 0;
  vertical-align: -0.2em;
  color: var(--dormot-red-bright);
  margin-right: 6px;
  font-family: serif;
}
.dormot-divider-content blockquote::after {
  content: '"';
  display: inline-block;
  font-size: 2.5em;
  line-height: 0;
  vertical-align: -0.4em;
  color: var(--dormot-red-bright);
  margin-left: 6px;
  font-family: serif;
}
.dormot-divider-cite {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}

@media (max-width: 700px) {
  .dormot-divider-image { height: 240px; }
}


/* ============================================================
   v5.88: FAQ accordion (Dormot pagina) + SEO upgrade
   ============================================================ */
.dormot-faq-inner {
  max-width: 880px;
}
.dormot-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.dormot-faq-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.dormot-faq-item[open] {
  border-color: var(--dormot-red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.dormot-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dormot-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.15s ease;
  position: relative;
  line-height: 1.4;
}
.dormot-faq-item summary::-webkit-details-marker {
  display: none;
}
.dormot-faq-item summary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--dormot-red);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.dormot-faq-item[open] summary::before {
  transform: scaleY(1);
}
.dormot-faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E30613' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.25s ease;
}
.dormot-faq-item[open] summary::after {
  transform: rotate(180deg);
}
.dormot-faq-item summary:hover {
  color: var(--dormot-red);
}
.dormot-faq-item p {
  margin: 0;
  padding: 0 24px 22px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a4a;
}


/* ============================================================
   v5.89: Testimonials sectie homepage (geanonimiseerd, geen schema)
   ============================================================ */
.testimonials-section {
  background: linear-gradient(160deg, #0a1929 0%, #0e377b 60%, #082158 100%);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.testimonials-section::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,136,18,.1) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.testimonials-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fbb041;
  margin-bottom: 14px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}
.testimonials-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: #f08812;
  border-radius: 2px;
  flex-shrink: 0;
}
.testimonials-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 16px;
  color: #ffffff;
}
.testimonials-lead {
  font-size: .97rem;
  line-height: 1.7;
  color: rgba(255,255,255,.58);
  max-width: 680px;
  margin: 0 0 52px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.testimonial-card {
  position: relative;
  margin: 0;
  padding: 32px 26px 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid #f08812;
  border-radius: 0 0 12px 12px;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  border-top-color: #fbb041;
}
.testimonial-card-quote-mark {
  position: absolute;
  top: 10px; right: 20px;
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(240,136,18,.2);
  font-weight: 700;
  user-select: none;
  pointer-events: none;
}
.testimonial-card blockquote {
  margin: 0 0 auto;
  padding-bottom: 24px;
  font-size: 14.5px;
  line-height: 1.72;
  color: rgba(255,255,255,.82);
  font-style: italic;
}
.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 16px;
  margin-top: 0;
}
.testimonial-card-flag {
  flex-shrink: 0;
  width: 26px; height: 17px;
  display: inline-block;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.15);
}
.testimonial-card-flag svg {
  display: block;
  width: 100%; height: 100%;
}
.testimonial-card-attribution {
  flex: 1;
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  line-height: 1.4;
}
.testimonials-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,.32);
  font-style: italic;
  margin: 8px 0 0;
  text-align: center;
}
@media (max-width: 1000px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonials-section { padding: 60px 0 72px; }
}
.testimonials-disclaimer {
  font-size: 12px;
  color: #888;
  font-style: italic;
  margin: 32px 0 0;
  text-align: center;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-section { padding: 56px 0 64px; }
}


/* ============================================================
   v5.93: Testimonial flags
   ============================================================ */
.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 14px;
}
.testimonial-card-flag {
  flex-shrink: 0;
  width: 28px;
  height: 18px;
  display: inline-block;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.06);
}
.testimonial-card-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}
.testimonial-card-attribution {
  flex: 1;
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}


/* ============================================================
   v5.94: BOEGSCHROEF + TRIDENT premium redesign
   ============================================================ */

/* === Cinematic dark hero (boeg) === */
.boeg-page .hub-hero,
.trident-page .hub-hero {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin: 0 calc(-1 * 50vw + 50%);
  padding: 80px calc(50vw - 50% + 32px) 100px;
  background: transparent;
  isolation: isolate;
}
.boeg-page .hub-hero::before,
.trident-page .hub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(227, 6, 19, 0.15), transparent 70%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(20, 80, 130, 0.4), transparent 70%),
    linear-gradient(180deg, #0a1929 0%, #0f1f3a 50%, #0a1929 100%);
  z-index: -2;
}
/* Maritime grid overlay */
.boeg-page .hub-hero::after,
.trident-page .hub-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, #000 30%, transparent 80%);
}
.boeg-page .hub-hero h1,
.trident-page .hub-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 24px 0 20px;
  max-width: 900px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.boeg-page .hub-hero-eyebrow,
.trident-page .hub-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(227, 6, 19, 0.12);
  border: 1px solid rgba(227, 6, 19, 0.4);
  color: #ff6b75;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.boeg-page .hub-hero-eyebrow svg,
.trident-page .hub-hero-eyebrow svg { width: 14px; height: 14px; }
.boeg-page .hub-hero-lead,
.trident-page .hub-hero-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 0 32px;
}
.boeg-page .hub-hero-cta,
.trident-page .hub-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.boeg-page .hub-hero .btn-accent,
.trident-page .hub-hero .btn-accent {
  background: #E30613;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(227, 6, 19, 0.35);
  transition: all 0.2s ease;
  text-decoration: none;
}
.boeg-page .hub-hero .btn-accent:hover,
.trident-page .hub-hero .btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(227, 6, 19, 0.45);
}
.boeg-page .hub-hero .btn-ghost,
.trident-page .hub-hero .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.boeg-page .hub-hero .btn-ghost:hover,
.trident-page .hub-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Vessel silhouette in hero (boeg) */
.boeg-vessel-silhouette {
  position: absolute;
  bottom: 0;
  right: -50px;
  width: 600px;
  height: 200px;
  opacity: 0.18;
  z-index: -1;
  pointer-events: none;
}
.boeg-vessel-silhouette svg {
  width: 100%;
  height: 100%;
}

/* Wave divider */
.maritime-wave-divider {
  position: relative;
  height: 60px;
  margin: -1px 0 0;
  overflow: hidden;
  background: #0a1929;
}
.maritime-wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Spec strip — premium glassmorphism */
.boeg-page .hub-specs,
.trident-page .hub-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: -50px auto 60px;
  position: relative;
  z-index: 5;
  max-width: 1200px;
  padding: 0 32px;
}
.boeg-page .hub-spec,
.trident-page .hub-spec {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 12px 40px rgba(10, 25, 41, 0.12), 0 2px 8px rgba(10, 25, 41, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.boeg-page .hub-spec::before,
.trident-page .hub-spec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #E30613, #B8050F);
}
.boeg-page .hub-spec:hover,
.trident-page .hub-spec:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(10, 25, 41, 0.18);
}
.boeg-page .hub-spec-icon,
.trident-page .hub-spec-icon {
  width: 40px;
  height: 40px;
  background: rgba(227, 6, 19, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #E30613;
}
.boeg-page .hub-spec-icon svg,
.trident-page .hub-spec-icon svg { width: 22px; height: 22px; }
.boeg-page .hub-spec-label,
.trident-page .hub-spec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}
.boeg-page .hub-spec-value,
.trident-page .hub-spec-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a1929;
  letter-spacing: -0.01em;
}

/* Brand strip (boegschroef) */
.boeg-brand-strip {
  background: linear-gradient(180deg, #f8f9fa, #fff);
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 40px 32px;
  margin: 0 auto 60px;
  max-width: 1200px;
}
.boeg-brand-strip-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}
.boeg-brand-strip-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a1929;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.boeg-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.boeg-brand-card {
  position: relative;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #0a1929;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: default;
}
.boeg-brand-card:hover {
  border-color: #E30613;
  background: linear-gradient(135deg, #fff, #fff5f6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 6, 19, 0.12);
}
.boeg-brand-card-stock {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--vb-orange,#f08812);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Urgency callout — pulsing emergency strip */
.boeg-urgency-callout,
.trident-urgency-callout {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d0e10 100%);
  border-radius: 16px;
  padding: 32px;
  margin: 0 auto 60px;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(227, 6, 19, 0.3);
}
.boeg-urgency-callout::before,
.trident-urgency-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #E30613;
  box-shadow: 0 0 24px #E30613;
}
.boeg-urgency-callout::after,
.trident-urgency-callout::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.2), transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}
.boeg-urgency-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 6, 19, 0.18);
  color: #ff6b75;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.boeg-urgency-eyebrow .pulse-dot { display: none; }

.boeg-urgency-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}
.boeg-urgency-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.boeg-urgency-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.boeg-urgency-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.boeg-urgency-action.call {
  background: #E30613;
  color: #fff;
  box-shadow: 0 8px 24px rgba(227, 6, 19, 0.4);
}
.boeg-urgency-action.call:hover {
  background: #FF1A2C;
  transform: translateY(-2px);
}
.boeg-urgency-action.whatsapp {
  background: #25D366;
  color: #fff;
}
.boeg-urgency-action.whatsapp:hover {
  background: #1cc25a;
  transform: translateY(-2px);
}
.boeg-urgency-action svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
  .boeg-urgency-callout, .trident-urgency-callout {
    grid-template-columns: 1fr;
  }
}

/* Levertijd timeline — 3 cards horizontal */
.boeg-leadtime-section,
.trident-leadtime-section {
  background: #0a1929;
  border-radius: 16px;
  padding: 60px 40px;
  margin: 0 auto 60px;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}
.boeg-leadtime-section::before,
.trident-leadtime-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(227, 6, 19, 0.12), transparent),
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(20, 80, 130, 0.18), transparent);
  pointer-events: none;
}
.boeg-leadtime-eyebrow,
.trident-leadtime-eyebrow {
  position: relative;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff6b75;
  text-align: center;
  margin-bottom: 12px;
}
.boeg-leadtime-title,
.trident-leadtime-title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.boeg-leadtime-lead,
.trident-leadtime-lead {
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 48px;
}
.boeg-leadtime-grid,
.trident-leadtime-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.boeg-leadtime-card,
.trident-leadtime-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.2s ease;
}
.boeg-leadtime-card:hover,
.trident-leadtime-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(227, 6, 19, 0.4);
  transform: translateY(-4px);
}
.boeg-leadtime-card-num,
.trident-leadtime-card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(227, 6, 19, 0.25);
  line-height: 1;
}
.boeg-leadtime-card-time,
.trident-leadtime-card-time {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff6b75;
  background: rgba(227, 6, 19, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.boeg-leadtime-card-title,
.trident-leadtime-card-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.boeg-leadtime-card-desc,
.trident-leadtime-card-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .boeg-leadtime-grid, .trident-leadtime-grid { grid-template-columns: 1fr; }
}

/* Class society logo grid */
.class-society-section {
  background: #fff;
  border-radius: 16px;
  padding: 50px 32px;
  margin: 0 auto 60px;
  max-width: 1200px;
  border: 1px solid #eaeaea;
}
.class-society-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}
.class-society-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0a1929;
  margin: 0 0 12px;
}
.class-society-lead {
  text-align: center;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 36px;
}
.class-society-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.class-society-card {
  background: #f8f9fa;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 24px 18px;
  text-align: left;
  transition: all 0.2s ease;
}
.class-society-card:hover {
  background: #fff;
  border-color: #E30613;
  box-shadow: 0 8px 24px rgba(227, 6, 19, 0.08);
  transform: translateY(-2px);
}
.class-society-card-abbr {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E30613;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.class-society-card-name {
  font-size: 13px;
  font-weight: 700;
  color: #0a1929;
  margin-bottom: 4px;
}
.class-society-card-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.4;
}

/* === Trident specifieke deep-ocean visuals === */
.trident-page .hub-hero::before {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(13, 71, 161, 0.45), transparent 70%),
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(20, 80, 130, 0.5), transparent 70%),
    linear-gradient(180deg, #020a1f 0%, #0a1f3a 50%, #051026 100%);
}
.trident-page .hub-hero h1 { color: #fff; }
.trident-page .hub-hero-eyebrow {
  background: rgba(13, 71, 161, 0.25);
  border-color: rgba(64, 130, 255, 0.4);
  color: #6ba3ff;
}

/* Depth meter visualization */
.trident-depth-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef4fa 100%);
  border-radius: 16px;
  padding: 50px 40px;
  margin: 0 auto 60px;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  border: 1px solid #d8e3f0;
}
.trident-depth-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 50px;
  align-items: stretch;
}
.trident-depth-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg,
    #87ceeb 0%,
    #5b9bcc 8%,
    #3870a0 25%,
    #1c4870 50%,
    #0d2a4a 75%,
    #050f24 100%);
  min-height: 420px;
}
.trident-depth-marker {
  position: absolute;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}
.trident-depth-marker::before {
  content: '';
  flex-shrink: 0;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.trident-depth-marker-label {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.trident-depth-motor {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(227, 6, 19, 0.95);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(227, 6, 19, 0.6);
  white-space: nowrap;
}
.trident-depth-motor::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: rgba(227, 6, 19, 0.95) transparent transparent transparent;
}
.trident-depth-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trident-depth-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1c4870;
  margin-bottom: 12px;
}
.trident-depth-title {
  font-size: 2rem;
  font-weight: 800;
  color: #051026;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.15;
}
.trident-depth-text {
  color: #3a4a5c;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 24px;
}
.trident-depth-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.trident-depth-stat {
  background: rgba(13, 71, 161, 0.06);
  border-left: 3px solid #1c4870;
  padding: 14px 16px;
  border-radius: 8px;
}
.trident-depth-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #051026;
  letter-spacing: -0.02em;
}
.trident-depth-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: #1c4870;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .trident-depth-grid { grid-template-columns: 1fr; }
}

/* Dredger application cards */
.trident-applications {
  margin: 0 auto 60px;
  max-width: 1200px;
}
.trident-app-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}
.trident-app-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #051026;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.trident-app-lead {
  text-align: center;
  color: #555;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 40px;
}
.trident-app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.trident-app-card {
  position: relative;
  background: linear-gradient(135deg, #0a1f3a 0%, #051026 100%);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(64, 130, 255, 0.15);
  transition: all 0.3s ease;
}
.trident-app-card:hover {
  border-color: rgba(64, 130, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(5, 16, 38, 0.4);
}
.trident-app-card-header {
  padding: 28px 28px 20px;
  background: linear-gradient(180deg, rgba(64, 130, 255, 0.08), transparent);
  border-bottom: 1px solid rgba(64, 130, 255, 0.12);
}
.trident-app-card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6ba3ff;
  background: rgba(64, 130, 255, 0.12);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.trident-app-card-name {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.trident-app-card-type {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}
.trident-app-card-body {
  padding: 24px 28px 28px;
}
.trident-app-card-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 20px;
}
.trident-app-card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(64, 130, 255, 0.12);
}
.trident-app-card-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trident-app-card-spec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(64, 130, 255, 0.7);
}
.trident-app-card-spec-value {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 768px) {
  .trident-app-grid { grid-template-columns: 1fr; }
}

/* Trident challenges grid (4 cards) — alleen op trident-detailpagina */
body.trident-page .trident-challenges {
  margin: 0 auto 60px;
  max-width: 1200px;
}
body.trident-page .trident-challenges-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #051026;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
}
body.trident-page .trident-challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
body.trident-page .trident-challenge-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 28px 28px 28px 80px;
  position: relative;
  transition: all 0.2s ease;
}
body.trident-page .trident-challenge-card:hover {
  border-color: #1c4870;
  box-shadow: 0 8px 24px rgba(28, 72, 112, 0.12);
}
body.trident-page .trident-challenge-icon {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1c4870, #0a1f3a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
body.trident-page .trident-challenge-icon svg { width: 20px; height: 20px; }
body.trident-page .trident-challenge-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #051026;
  margin: 0 0 8px;
}
body.trident-page .trident-challenge-desc {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  body.trident-page .trident-challenge-grid { grid-template-columns: 1fr; }
}

/* Final premium CTA */
.boeg-final-cta,
.trident-final-cta {
  background: linear-gradient(135deg, #0a1929 0%, #051026 100%);
  border-radius: 16px;
  padding: 60px 40px;
  margin: 0 auto 60px;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.boeg-final-cta::before,
.trident-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 0%, rgba(227, 6, 19, 0.18), transparent),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(20, 80, 130, 0.3), transparent);
  pointer-events: none;
}
.boeg-final-cta-eyebrow,
.trident-final-cta-eyebrow {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff6b75;
  margin-bottom: 12px;
}
.boeg-final-cta-title,
.trident-final-cta-title {
  position: relative;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 auto 16px;
  max-width: 800px;
}
.boeg-final-cta-text,
.trident-final-cta-text {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 32px;
}
.boeg-final-cta-actions,
.trident-final-cta-actions {
  position: relative;
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}


/* ================================================================
   v5.93: TRIDENT pagina visuele upgrade — submersible deep-sea theme
   ================================================================ */

/* === BODY background === */
body.trident-page {
  background: #0a1628;
  color: #e8eef5;
}

/* === Header bar — donkerblauw met diepzee accent === */
body.trident-page .article-header {
  background: linear-gradient(180deg, #0a1628 0%, #0d1f3a 100%);
  border-bottom: 1px solid rgba(58, 117, 175, 0.25);
}
body.trident-page .article-back-link {
  color: #79b8ff;
}
body.trident-page .article-back-link:hover { color: #b3d4f7; }

/* === Hero met onderwater-effect === */
body.trident-page .hub-hero.trident {
  position: relative;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(64, 144, 224, 0.35) 0%, transparent 60%),
    linear-gradient(180deg, #0d1f3a 0%, #061025 100%);
  border-radius: 16px;
  padding: 64px 56px 72px;
  margin: 24px 0 32px;
  overflow: hidden;
  box-shadow: 
    inset 0 0 80px rgba(64, 144, 224, 0.1),
    0 8px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(64, 144, 224, 0.15);
}
/* Subtiele caustic-pattern overlay (water-reflectie effect) */
body.trident-page .hub-hero.trident::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 800px 400px at 30% -20%, rgba(127, 198, 255, 0.12), transparent),
    radial-gradient(ellipse 600px 300px at 80% 110%, rgba(64, 144, 224, 0.08), transparent);
  pointer-events: none;
}
/* Diagonal grid (techno-feel) */
body.trident-page .hub-hero.trident::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 49%, rgba(127, 198, 255, 0.04) 50%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(127, 198, 255, 0.04) 50%, transparent 51%);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}
body.trident-page .hub-hero.trident > * { position: relative; z-index: 1; }

body.trident-page .hub-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(64, 144, 224, 0.12);
  border: 1px solid rgba(127, 198, 255, 0.3);
  border-radius: 100px;
  color: #79b8ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
body.trident-page .hub-hero-eyebrow svg {
  width: 14px;
  height: 14px;
  color: #79b8ff;
}
body.trident-page .hub-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 24px;
  max-width: 780px;
  text-shadow: 0 2px 20px rgba(64, 144, 224, 0.3);
}
body.trident-page .hub-hero-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #c5d3e3;
  max-width: 720px;
  margin: 0 0 36px;
}
body.trident-page .hub-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
body.trident-page .hub-hero-cta .btn-accent,
body.trident-page .hub-hero-cta .btn-accent span,
body.trident-page .hub-hero-cta .btn-ghost,
body.trident-page .hub-hero-cta .btn-ghost span { color: #fff !important; }
body.trident-page .hub-hero-cta .btn-accent {
  background: linear-gradient(135deg, #E30613 0%, #B8050F 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(227, 6, 19, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
body.trident-page .hub-hero-cta .btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(227, 6, 19, 0.4);
}
body.trident-page .hub-hero-cta .btn-accent svg {
  width: 18px; height: 18px;
}
body.trident-page .hub-hero-cta .btn-ghost {
  color: #c5d3e3;
  padding: 14px 24px;
  border: 1px solid rgba(127, 198, 255, 0.25);
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, border-color 0.2s;
}
body.trident-page .hub-hero-cta .btn-ghost:hover {
  background: rgba(127, 198, 255, 0.08);
  border-color: rgba(127, 198, 255, 0.5);
}
body.trident-page .hub-hero-cta .btn-ghost svg { width: 16px; height: 16px; }

/* === Submersible motor SVG illustration achter h1 === */
body.trident-page .hub-hero.trident .trident-motor-illustration {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  opacity: 0.18;
  z-index: 0;
  filter: drop-shadow(0 0 40px rgba(64, 144, 224, 0.4));
  pointer-events: none;
}
@media (max-width: 980px) {
  body.trident-page .hub-hero.trident .trident-motor-illustration { display: none; }
}

/* === Specs strip — donkere kaarten met glow accent === */
body.trident-page .hub-specs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 0 0 56px;
}
body.trident-page .hub-spec {
  position: relative;
  background: linear-gradient(180deg, rgba(13, 31, 58, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
  border: 1px solid rgba(64, 144, 224, 0.2);
  border-left: 3px solid #79b8ff;
  border-radius: 8px;
  padding: 24px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
body.trident-page .hub-spec:hover {
  border-color: rgba(127, 198, 255, 0.6);
  transform: translateY(-2px);
}
body.trident-page .hub-spec-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(64, 144, 224, 0.12);
  border-radius: 8px;
  margin-bottom: 12px;
}
body.trident-page .hub-spec-icon svg {
  width: 18px;
  height: 18px;
  color: #79b8ff;
}
body.trident-page .hub-spec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #79b8ff;
  margin-bottom: 6px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}
body.trident-page .hub-spec-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}
@media (max-width: 980px) {
  body.trident-page .hub-specs { grid-template-columns: repeat(2, 1fr); }
}

/* === Body content — donker editorial === */
body.trident-page .article-body {
  background: rgba(13, 31, 58, 0.4);
  border: 1px solid rgba(64, 144, 224, 0.1);
  border-radius: 12px;
  padding: 48px 56px;
  color: #d1dae5;
  line-height: 1.75;
  max-width: 880px;
  margin: 0 auto;
}
body.trident-page .article-body h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin: 48px 0 20px;
  padding-left: 16px;
  border-left: 3px solid #79b8ff;
  letter-spacing: -0.01em;
}
body.trident-page .article-body h2:first-child { margin-top: 0; }
body.trident-page .article-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 32px 0 16px;
}
body.trident-page .article-body p {
  margin: 0 0 20px;
  color: #c5d3e3;
}
body.trident-page .article-body strong { color: #ffffff; font-weight: 600; }
body.trident-page .article-body a {
  color: #79b8ff;
  border-bottom: 1px solid rgba(127, 198, 255, 0.3);
  text-decoration: none;
  transition: border-color 0.2s;
}
body.trident-page .article-body a:hover { border-bottom-color: #79b8ff; }

/* Bullet lists — custom marker */
body.trident-page .hub-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
body.trident-page .hub-bullets li {
  position: relative;
  padding: 12px 16px 12px 36px;
  margin-bottom: 4px;
  border-left: 1px solid rgba(64, 144, 224, 0.2);
  background: rgba(64, 144, 224, 0.03);
  color: #c5d3e3;
  border-radius: 0 6px 6px 0;
  transition: background 0.15s, border-color 0.15s;
}
body.trident-page .hub-bullets li:hover {
  background: rgba(64, 144, 224, 0.07);
  border-left-color: #79b8ff;
}
body.trident-page .hub-bullets li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #79b8ff;
  
}

/* === Trident testimonial-strip — Q3 quote ingebed === */
body.trident-page .trident-testimonial {
  margin: 56px 0;
  padding: 40px 48px;
  background: linear-gradient(135deg, rgba(13, 31, 58, 0.8) 0%, rgba(20, 40, 70, 0.6) 100%);
  border: 1px solid rgba(64, 144, 224, 0.25);
  border-radius: 12px;
  position: relative;
}
body.trident-page .trident-testimonial::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 24px;
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 1;
  color: rgba(127, 198, 255, 0.2);
  font-weight: 700;
}
body.trident-page .trident-testimonial blockquote {
  margin: 0 0 24px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #ffffff;
  font-style: italic;
  font-weight: 400;
  position: relative;
  padding-left: 12px;
}
body.trident-page .trident-testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: #79b8ff;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body.trident-page .trident-testimonial-flag {
  width: 32px;
  height: 20px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
body.trident-page .trident-testimonial-flag svg { width: 100%; height: 100%; display: block; }

/* === Stat-cards (number-led editorial) === */
body.trident-page .trident-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
body.trident-page .trident-stat-card {
  background: linear-gradient(180deg, rgba(64, 144, 224, 0.08) 0%, transparent 100%);
  border-top: 2px solid #79b8ff;
  padding: 32px 24px;
  border-radius: 0 0 8px 8px;
}
body.trident-page .trident-stat-number {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}
body.trident-page .trident-stat-label {
  font-size: 12px;
  color: #79b8ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
body.trident-page .trident-stat-desc {
  font-size: 14px;
  color: #c5d3e3;
  line-height: 1.5;
}
@media (max-width: 768px) {
  body.trident-page .trident-stats { grid-template-columns: 1fr; }
}

/* === Application-grid: 4 toepassingsgebieden visueel === */
body.trident-page .trident-applications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px 0;
}
body.trident-page .trident-app-card {
  position: relative;
  background: rgba(13, 31, 58, 0.5);
  border: 1px solid rgba(64, 144, 224, 0.2);
  border-radius: 10px;
  padding: 28px 28px 28px 80px;
  transition: border-color 0.2s, background 0.2s;
}
body.trident-page .trident-app-card:hover {
  border-color: #79b8ff;
  background: rgba(13, 31, 58, 0.7);
}
body.trident-page .trident-app-icon {
  position: absolute;
  left: 24px;
  top: 28px;
  width: 40px;
  height: 40px;
  background: rgba(127, 198, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.trident-page .trident-app-icon svg {
  width: 22px;
  height: 22px;
  color: #79b8ff;
}
body.trident-page .trident-app-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px;
}
body.trident-page .trident-app-desc {
  font-size: 14px;
  color: #c5d3e3;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 768px) {
  body.trident-page .trident-applications { grid-template-columns: 1fr; }
}

/* === Footer aanpassing === */
body.trident-page .article-footer {
  background: #061025;
  border-top: 1px solid rgba(64, 144, 224, 0.15);
  color: #79b8ff;
  padding: 32px 0;
}
body.trident-page .article-footer p { color: #79b8ff; }
body.trident-page .article-footer a { color: #b3d4f7; }

/* Dormot dark canvas — make footer readable on #161618 page bg */
body.dormot-page .article-footer { border-top-color: rgba(255,255,255,0.12); }
body.dormot-page .article-footer p { color: rgba(255,255,255,0.55); }
body.dormot-page .article-footer a { color: rgba(255,255,255,0.78); }
body.dormot-page .article-footer a:hover { color: var(--accent); }

/* === Special pricelist link op donkere achtergrond === */
body.trident-page .special-pricelist-link {
  background: linear-gradient(135deg, rgba(64, 144, 224, 0.12) 0%, rgba(13, 31, 58, 0.6) 100%);
  border: 1px solid rgba(127, 198, 255, 0.3);
  color: #ffffff;
  margin: 40px 0 0;
}
body.trident-page .special-pricelist-link:hover {
  border-color: #79b8ff;
  background: linear-gradient(135deg, rgba(64, 144, 224, 0.2) 0%, rgba(13, 31, 58, 0.8) 100%);
}
body.trident-page .special-pricelist-link-icon { color: #79b8ff; }
body.trident-page .special-pricelist-link-text strong { color: #ffffff; }
body.trident-page .special-pricelist-link-text span { color: #c5d3e3; }
body.trident-page .special-pricelist-link-arrow { color: #79b8ff; }

/* Breadcrumb donker */
body.trident-page .article-breadcrumb {
  color: #79b8ff;
  margin: 8px 0;
}
body.trident-page .article-breadcrumb a { color: #79b8ff; }
body.trident-page .article-breadcrumb a:hover { color: #b3d4f7; }
body.trident-page .breadcrumb-current { color: #ffffff; }
body.trident-page .breadcrumb-sep { color: rgba(127, 198, 255, 0.4); }


/* ================================================================
   v5.93: BOEGSCHROEF artikel pagina visuele upgrade
   Maritime accent — donkerblauw + cyan op wit
   ================================================================ */

/* === Hero upgrade — schip-silhouet + waterlijn === */
body.boegschroef-page .article-hero,
body.boegschroef-page article .article-hero {
  position: relative;
  background: 
    linear-gradient(180deg, #001540 0%, #000a24 100%);
  padding: 64px 56px 80px;
  border-radius: 0 0 16px 16px;
  margin: 0 0 48px;
  overflow: hidden;
  color: #fff;
}
/* Wave-gradient onderaan verwijderd in v5.94 — veroorzaakte glow bovenkant */
body.boegschroef-page .article-hero::before {
  content: none;
}
/* Subtle bow-thruster-icon (vanaf rechterkant) — uitgeschakeld op maritime hero */
body.boegschroef-page .article-hero::after {
  content: none;
}

body.boegschroef-page .article-hero > * { position: relative; z-index: 1; }
body.boegschroef-page .article-eyebrow,
body.boegschroef-page .article-hero .breadcrumb,
body.boegschroef-page .article-breadcrumb {
  color: rgba(255, 255, 255, 0.7);
}
body.boegschroef-page .article-breadcrumb a { color: rgba(255, 255, 255, 0.85); }
body.boegschroef-page .article-breadcrumb a:hover { color: #fff; }
body.boegschroef-page .article-hero h1 {
  color: #fff;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 16px 0 20px;
  max-width: 780px;
}
body.boegschroef-page .article-hero .article-lead,
body.boegschroef-page .article-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.125rem;
  max-width: 720px;
}
body.boegschroef-page .article-hero .article-meta,
body.boegschroef-page .article-hero .article-meta * {
  color: rgba(255, 255, 255, 0.7);
}

/* === Quick-stats card-row direct onder hero === */
body.boegschroef-page .boeg-quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: -40px auto 48px;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
body.boegschroef-page .boeg-quick-stat {
  background: #fff;
  border-radius: 8px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(0, 32, 96, 0.12);
  border-top: 3px solid #002060;
  position: relative;
}
body.boegschroef-page .boeg-quick-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 8px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}
body.boegschroef-page .boeg-quick-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #002060;
  line-height: 1.1;
  margin-bottom: 6px;
}
body.boegschroef-page .boeg-quick-stat-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}
@media (max-width: 768px) {
  body.boegschroef-page .boeg-quick-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -32px;
  }
}

/* === H2 met decoratieve numbering accent === */
body.boegschroef-page article h2 {
  position: relative;
  padding-left: 0;
  margin-top: 56px;
  margin-bottom: 20px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #002060;
  letter-spacing: -0.01em;
  border: none;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
body.boegschroef-page article h2::before {
  content: '';
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, #E30613 0%, #002060 100%);
  display: inline-block;
  flex-shrink: 0;
  align-self: center;
  border-radius: 2px;
}

/* === Custom callout box (info/warning) — meer grafisch === */
body.boegschroef-page .article-callout,
body.boegschroef-page .info-callout {
  display: flex;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
  border-left: 4px solid #002060;
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
  box-shadow: 0 4px 16px rgba(0, 32, 96, 0.06);
}
body.boegschroef-page .article-callout-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #002060;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.boegschroef-page .article-callout-icon svg { width: 20px; height: 20px; }
body.boegschroef-page .article-callout-title {
  font-size: 14px;
  font-weight: 700;
  color: #002060;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
body.boegschroef-page .article-callout-body {
  color: #1a1a1a;
  font-size: 15px;
  line-height: 1.65;
}

/* === Comparison table styling === */
body.boegschroef-page article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 32, 96, 0.05);
  border: 1px solid #e5e7eb;
}
body.boegschroef-page article table th {
  background: #002060;
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 14px 18px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body.boegschroef-page article table td {
  padding: 14px 18px;
  border-top: 1px solid #f3f4f6;
  font-size: 14px;
  vertical-align: top;
}
body.boegschroef-page article table tr:hover td { background: #f9fbfd; }
body.boegschroef-page article table tr:nth-child(even) td { background: #fafbfc; }

/* === Bullet-list met maritieme accent === */
body.boegschroef-page article ul:not(.article-toc):not(.boeg-quick-stats) {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
body.boegschroef-page article ul:not(.article-toc):not(.boeg-quick-stats) li {
  position: relative;
  padding: 8px 0 8px 28px;
  margin-bottom: 4px;
  line-height: 1.65;
}
body.boegschroef-page article ul:not(.article-toc):not(.boeg-quick-stats) li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 16px;
  width: 12px;
  height: 12px;
  background: #002060;
  border-radius: 50%;
  
}

/* === Embedded testimonial in article === */
body.boegschroef-page .boeg-testimonial {
  margin: 48px 0;
  padding: 36px 40px;
  background: linear-gradient(135deg, #002060 0%, #003580 100%);
  border-radius: 12px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
body.boegschroef-page .boeg-testimonial::before {
  content: '"';
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(127, 198, 255, 0.25);
  font-weight: 700;
}
body.boegschroef-page .boeg-testimonial blockquote {
  margin: 0 0 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #fff;
  font-style: italic;
  font-weight: 400;
  position: relative;
  padding-left: 12px;
}
body.boegschroef-page .boeg-testimonial-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body.boegschroef-page .boeg-testimonial-flag {
  width: 32px;
  height: 20px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
body.boegschroef-page .boeg-testimonial-flag svg { width: 100%; height: 100%; display: block; }

/* === Schip-doorsnede SVG illustration block === */
body.boegschroef-page .boeg-vessel-diagram {
  margin: 48px 0;
  padding: 32px;
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  border-radius: 12px;
  border: 1px solid #d1e0f5;
}
body.boegschroef-page .boeg-vessel-diagram-title {
  font-size: 14px;
  font-weight: 700;
  color: #002060;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}
body.boegschroef-page .boeg-vessel-diagram svg {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 320px !important;
  display: block;
  aspect-ratio: 800 / 240;
}


/* ============================================================
   v5.94 — Replacement motor assistance: uitklapbaar
   ============================================================ */
.dimsheet-collapse {
  position: relative;
  z-index: 1;
}
.dimsheet-collapse > summary {
  cursor: pointer;
  list-style: none;
  display: block;
  padding: 32px 32px 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(248,250,253,0.85) 100%);
  border: 1.5px solid rgba(0, 32, 96, 0.12);
  border-radius: 18px;
  transition: all 200ms ease;
  box-shadow: 0 4px 16px rgba(0, 32, 96, 0.04);
}
.dimsheet-collapse > summary::-webkit-details-marker { display: none; }
.dimsheet-collapse > summary::marker { content: ""; }
.dimsheet-collapse > summary:hover {
  border-color: rgba(0, 32, 96, 0.25);
  box-shadow: 0 8px 24px rgba(0, 32, 96, 0.08);
  transform: translateY(-1px);
}
.dimsheet-collapse[open] > summary {
  border-radius: 18px 18px 0 0;
  border-bottom-color: rgba(0, 32, 96, 0.08);
  margin-bottom: 0;
}
.dimsheet-collapse[open] > summary:hover {
  transform: none;
}
/* De header binnen summary heeft geen extra padding nodig */
.dimsheet-collapse > summary .dimsheet-header {
  text-align: center;
  margin-bottom: 0;
}
/* CTA balk onderaan summary die uitklap-actie aankondigt */
.dimsheet-collapse-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #002060 0%, #003580 100%);
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(0, 32, 96, 0.18);
  transition: all 200ms ease;
}
.dimsheet-collapse > summary:hover .dimsheet-collapse-cta {
  background: linear-gradient(135deg, #003580 0%, #002060 100%);
  box-shadow: 0 6px 16px rgba(0, 32, 96, 0.28);
}
.dimsheet-collapse-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  transition: transform 300ms ease;
}
.dimsheet-collapse-cta-icon svg {
  width: 100%;
  height: 100%;
}
.dimsheet-collapse[open] .dimsheet-collapse-cta-icon {
  transform: rotate(180deg);
}
/* Bij open: toon andere label via JS-vrije CSS swap is moeilijk met i18n; 
   houd dezelfde label maar laat de geroteerde chevron de status communiceren */
/* Form panel — onder de summary */
.dimsheet-collapse > form {
  padding: 32px 32px 32px;
  background: #fff;
  border: 1.5px solid rgba(0, 32, 96, 0.12);
  border-top: none;
  border-radius: 0 0 18px 18px;
  animation: dimsheet-expand 280ms ease;
}
@keyframes dimsheet-expand {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .dimsheet-collapse > summary { padding: 24px 20px; }
  .dimsheet-collapse > form { padding: 24px 20px; }
  .dimsheet-collapse-cta { padding: 12px 22px; font-size: 0.875rem; }
}

/* ============================================================
   v5.95 — BOEGSCHROEF MARITIME REDESIGN
   Diepwater gradient, vessel silhouette, compass watermark, wave divider
   ============================================================ */

body.boegschroef-page .article-hero.boeg-maritime-hero {
  position: relative;
  background: 
    radial-gradient(ellipse 1200px 700px at 50% 0%, #003a7a 0%, transparent 65%),
    linear-gradient(180deg, 
      #001a3d 0%,        /* Sky horizon dark */
      #002b5e 25%,       /* Mid water */
      #001f4d 60%,       /* Deeper */
      #000a24 100%       /* Deep ocean */
    );
  padding: 64px 0 96px;
  margin: 0 0 0;        /* divider neemt de rounded corner over */
  border-radius: 0;
  overflow: hidden;
  color: #fff;
}

/* Maritime achtergrond layers */
.boeg-maritime-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Wave-strepen onderaan */
.boeg-maritime-waves {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  width: 100% !important;
  height: 200px !important;
  max-width: none !important;
  max-height: none !important;
  opacity: 0.85;
}

/* Vessel silhouette rechts */
.boeg-maritime-vessel {
  position: absolute;
  bottom: 90px;
  right: -20px;
  width: 600px !important;
  height: 180px !important;
  max-width: none !important;
  max-height: none !important;
  opacity: 0.9;
}

/* Compass watermark links */
.boeg-maritime-compass {
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
  width: 360px !important;
  height: 360px !important;
  max-width: none !important;
  max-height: none !important;
  opacity: 0.6;
  animation: boeg-compass-rotate 120s linear infinite;
}
@keyframes boeg-compass-rotate {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Inner content boven de achtergrond */
.boeg-maritime-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Maritime persona tag */
body.boegschroef-page .article-persona-tag.boeg-maritime-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(127, 198, 255, 0.08);
  border: 1px solid rgba(127, 198, 255, 0.35);
  color: #c5d3e3;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
body.boegschroef-page .article-persona-tag.boeg-maritime-tag svg {
  width: 16px;
  height: 16px;
  color: #79b8ff;
}

/* Article title - clean serif-feel maritime */
body.boegschroef-page .boeg-maritime-inner .article-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}

body.boegschroef-page .boeg-maritime-inner .article-subtitle {
  font-size: 1.1875rem;
  line-height: 1.55;
  color: rgba(229, 235, 245, 0.92);
  margin: 0 0 32px;
  max-width: 720px;
}

/* Class society strip */
.boeg-class-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  margin: 0 0 28px;
  background: rgba(0, 18, 50, 0.6);
  border: 1px solid rgba(127, 198, 255, 0.22);
  border-radius: 12px;
  flex-wrap: wrap;
}
.boeg-class-strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(197, 211, 227, 0.72);
  margin-right: 6px;
}
.boeg-class-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(127, 198, 255, 0.12) 0%, rgba(127, 198, 255, 0.04) 100%);
  border: 1px solid rgba(127, 198, 255, 0.4);
  border-radius: 6px;
  color: #ffffff;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all 200ms ease;
}
.boeg-class-pill:hover {
  background: linear-gradient(135deg, rgba(127, 198, 255, 0.22) 0%, rgba(127, 198, 255, 0.08) 100%);
  border-color: rgba(127, 198, 255, 0.6);
}

/* Article meta - subtler op donker */
body.boegschroef-page .boeg-maritime-inner .article-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(127, 198, 255, 0.12);
  font-size: 0.875rem;
  color: rgba(197, 211, 227, 0.78);
}
body.boegschroef-page .boeg-maritime-inner .article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body.boegschroef-page .boeg-maritime-inner .article-meta-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* Wave divider naar pagina-content */
.boeg-maritime-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100% !important;
  height: 60px !important;
  max-width: none !important;
  max-height: none !important;
  display: block;
}

/* Breadcrumb in maritime hero */
body.boegschroef-page .boeg-maritime-inner .article-breadcrumb {
  margin-bottom: 24px;
  color: rgba(197, 211, 227, 0.7);
  font-size: 0.8125rem;
}
body.boegschroef-page .boeg-maritime-inner .article-breadcrumb a {
  color: rgba(197, 211, 227, 0.85);
  text-decoration: none;
  transition: color 200ms;
}
body.boegschroef-page .boeg-maritime-inner .article-breadcrumb a:hover {
  color: #79b8ff;
}
body.boegschroef-page .boeg-maritime-inner .article-breadcrumb-sep {
  color: rgba(127, 198, 255, 0.35);
  margin: 0 4px;
}

/* Quick stats sectie nu ná wave-divider zonder margin-top: container fix */
body.boegschroef-page .boeg-maritime-hero + .boeg-quick-stats,
body.boegschroef-page .boeg-quick-stats {
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

@media (max-width: 980px) {
  .boeg-maritime-vessel { right: -200px; opacity: 0.5; }
  .boeg-maritime-compass { left: -200px; width: 240px; height: 240px; opacity: 0.35; }
  body.boegschroef-page .boeg-maritime-inner .article-title { font-size: 2.25rem; }
}
@media (max-width: 640px) {
  body.boegschroef-page .article-hero.boeg-maritime-hero { padding: 40px 0 80px; }
  .boeg-maritime-inner { padding: 0 20px; }
  body.boegschroef-page .boeg-maritime-inner .article-title { font-size: 1.875rem; }
  body.boegschroef-page .boeg-maritime-inner .article-subtitle { font-size: 1rem; }
  .boeg-class-strip { padding: 12px 16px; gap: 8px; }
  .boeg-class-pill { padding: 5px 10px; font-size: 0.75rem; }
  .boeg-maritime-vessel { display: none; }
  .boeg-maritime-compass { display: none; }
}

/* ── Trident foto-sectie ?v=597 ──────────────────────────────── */
.trident-photo-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 0 40px;
  aspect-ratio: 1440 / 960;
  background: #020C1B;
}
.trident-photo-section picture,
.trident-photo-section img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.trident-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(2, 12, 27, 0.35) 0%,
    rgba(0, 18, 45, 0.55) 60%,
    rgba(0, 10, 30, 0.80) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 28px 32px;
}
.trident-photo-caption {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(121, 184, 255, 0.80);
  border-left: 2px solid rgba(121, 184, 255, 0.4);
  padding-left: 12px;
}
@media (max-width: 768px) {
  .trident-photo-section { aspect-ratio: 4/3; border-radius: 8px; }
  .trident-photo-overlay { padding: 16px 20px; }
  .trident-photo-caption { font-size: 0.65rem; }
}

/* ═══════════════════════════════════════════════════════════════
   BOEGSCHROEF — VOLLEDIGE REDESIGN v597
   ═══════════════════════════════════════════════════════════════ */

/* Hero override: full dark navy, proper proportions */
body.boeg-page .hub-hero.boeg {
  background: none;
  position: relative;
  padding: 72px 0 96px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  min-height: 460px;
}
body.boeg-page .hub-hero.boeg .boeg-hero-content { position: relative; z-index: 2; }
body.boeg-page .hub-hero.boeg .boeg-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Remove the default ::before radial gradient interference for boeg */
body.boeg-page .hub-hero::before {
  background:
    radial-gradient(ellipse 90% 70% at 30% 50%, rgba(14,165,233,0.12), transparent 70%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(10,60,130,0.4), transparent 70%),
    linear-gradient(180deg, #061520 0%, #0a1f36 50%, #061520 100%);
}

/* Eyebrow pill - ocean blue instead of red for boeg */
body.boeg-page .hub-hero-eyebrow {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.4);
  color: #38bdf8;
}
body.boeg-page .hub-hero-eyebrow svg { color: #38bdf8; }

/* H1 for boeg: slightly different weight feel */
body.boeg-page .hub-hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  
  
  color:#14387F;
  
}

/* CTA buttons - ocean blue primary for boeg */
body.boeg-page .hub-hero .btn-accent {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #fff;
  box-shadow: 0 8px 24px rgba(2,132,199,0.4);
}
body.boeg-page .hub-hero .btn-accent:hover {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  box-shadow: 0 12px 32px rgba(2,132,199,0.5);
  transform: translateY(-2px);
}

/* Spec strip override: blue accent for boeg */
body.boeg-page .hub-spec::before { background: linear-gradient(180deg, #0284c7, #0369a1); }
body.boeg-page .hub-spec-icon { background: rgba(2,132,199,0.1); color: #0284c7; }
body.boeg-page .hub-spec-value { font-size: 1.2rem; }

/* ── EMERGENCY BANNER ─────────────────────────────────────────── */
.boeg-emergency {
  position: relative;
  background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
  border-radius: 16px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin: 0 0 56px;
  overflow: hidden;
}
.boeg-emergency::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}
.boeg-emergency-eyebrow {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(254,202,202,0.9);
  margin-bottom: 8px;
}
.boeg-emergency-headline {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.boeg-emergency-body {
  font-size: 0.92rem;
  color: rgba(254,202,202,0.85);
  line-height: 1.55;
  margin: 0;
}
.boeg-emergency-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}
.boeg-emergency-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #991b1b;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.boeg-emergency-call:hover { background: #fef2f2; transform: translateY(-1px); }
.boeg-emergency-call svg { width: 16px; height: 16px; flex-shrink: 0; }
.boeg-emergency-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.boeg-emergency-whatsapp:hover { background: rgba(255,255,255,0.2); }
.boeg-emergency-whatsapp svg { width: 16px; height: 16px; }

/* ── STOCK SECTION ────────────────────────────────────────────── */
.boeg-stock-section {
  margin: 0 0 48px;
}
.boeg-stock-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}
.boeg-stock-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(2,132,199,0.25);
}
.boeg-stock-icon svg { width: 28px; height: 28px; }
.boeg-stock-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.boeg-stock-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}
.boeg-stock-brands-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 12px;
}
.boeg-brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.boeg-brand-pill {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #1e293b;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.15s ease;
}
.boeg-brand-pill:hover {
  border-color: #0284c7;
  color: #0284c7;
  box-shadow: 0 4px 12px rgba(2,132,199,0.15);
  transform: translateY(-1px);
}

/* ── DELIVERY CARDS ───────────────────────────────────────────── */
.boeg-delivery-section { margin: 0 0 56px; }
.boeg-delivery-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.boeg-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.boeg-delivery-card {
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.boeg-delivery-card:hover { transform: translateY(-4px); }
.boeg-delivery-card--urgent {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.boeg-delivery-card--revised {
  background: linear-gradient(135deg, #f7f9fc, #eef2f8);
  border: 1px solid #d0daea;
  box-shadow: 0 8px 24px rgba(245,158,11,0.12);
}
.boeg-delivery-card--new {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #93c5fd;
  box-shadow: 0 8px 24px rgba(59,130,246,0.1);
}
.boeg-delivery-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.boeg-delivery-card--urgent .boeg-delivery-badge {
  background: rgba(14,165,233,0.2);
  color: #38bdf8;
  border: 1px solid rgba(14,165,233,0.3);
}
.boeg-delivery-card--revised .boeg-delivery-badge {
  background: rgba(245,158,11,0.15);
  color: #d97706;
  border: 1px solid rgba(245,158,11,0.3);
}
.boeg-delivery-card--new .boeg-delivery-badge {
  background: rgba(59,130,246,0.12);
  color: #2563eb;
  border: 1px solid rgba(59,130,246,0.25);
}
.boeg-delivery-time {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}
.boeg-delivery-card--urgent .boeg-delivery-time { color: #fff; }
.boeg-delivery-card--revised .boeg-delivery-time { color: #5a718c; }
.boeg-delivery-card--new .boeg-delivery-time { color: #1d4ed8; }
.boeg-delivery-label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.boeg-delivery-card--urgent .boeg-delivery-label { color: #e2e8f0; }
.boeg-delivery-card--revised .boeg-delivery-label { color: #0e377b; }
.boeg-delivery-card--new .boeg-delivery-label { color: #1e3a8a; }
.boeg-delivery-desc {
  font-size: 0.875rem;
  line-height: 1.55;
}
.boeg-delivery-card--urgent .boeg-delivery-desc { color: rgba(226,232,240,0.75); }
.boeg-delivery-card--revised .boeg-delivery-desc { color: #5a718c; opacity: 0.8; }
.boeg-delivery-card--new .boeg-delivery-desc { color: #1e40af; opacity: 0.8; }

/* ── CLASS CERTIFICATIONS ─────────────────────────────────────── */
.boeg-class-section { margin: 0 0 56px; }
.boeg-class-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.boeg-class-section-sub {
  font-size: 0.92rem;
  color: #64748b;
  margin: 0 0 28px;
}
.boeg-class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.boeg-class-badge {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.boeg-class-badge:hover {
  border-color: #0284c7;
  box-shadow: 0 4px 16px rgba(2,132,199,0.12);
  transform: translateY(-2px);
}
.boeg-class-abbr {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.boeg-class-name {
  font-size: 0.73rem;
  color: #64748b;
  line-height: 1.3;
}
.boeg-class-flag {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

/* ── RESPONSIVE boeg ─────────────────────────────────────────── */
@media (max-width: 960px) {
  body.boeg-page .hub-hero.boeg {
    grid-template-columns: 1fr;
    padding: 56px 0 80px;
  }
  body.boeg-page .hub-hero.boeg .boeg-hero-visual { display: none; }
  .boeg-emergency {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .boeg-delivery-grid { grid-template-columns: 1fr; gap: 14px; }
  .boeg-stock-header { grid-template-columns: 1fr; }
  .boeg-stock-icon { display: none; }
}
@media (max-width: 640px) {
  .boeg-class-grid { grid-template-columns: repeat(2, 1fr); }
  .boeg-emergency-actions { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════
   TRIDENT — REDESIGN v597: trident-motief, betere proporties
   ═══════════════════════════════════════════════════════════════ */

/* Hero: tweekoloms layout met trident SVG rechts */
body.trident-page .hub-hero.trident {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  padding: 80px 0 100px;
  background: none;
}
.trident-hero-content { position: relative; z-index: 2; }
.trident-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Bestaande SVG motor-illustratie verbergen */
body.trident-page .hub-hero .trident-motor-illustration { display: none; }

/* Trident symbol styling */
.trident-symbol-svg {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 0 30px rgba(121,184,255,0.25));
}

/* Betere H1 proporties voor Trident */
body.trident-page .hub-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 20px 0 18px;
}

/* Trident foto-sectie: volledig donkere overlay zodat de motor beter uitkomt */
.trident-photo-section {
  aspect-ratio: 16/7;
  border-radius: 14px;
}
.trident-photo-section img {
  filter: brightness(0.45) saturate(1.8) hue-rotate(-5deg) contrast(1.15);
}
.trident-photo-overlay {
  background: linear-gradient(
    135deg,
    rgba(2,12,27,0.0) 0%,
    rgba(0,20,50,0.4) 40%,
    rgba(0,10,30,0.75) 100%
  );
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: row;
  padding: 24px 28px;
}

/* Trident watermark motief als achtergrond-decoratie */
.trident-watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 960px) {
  body.trident-page .hub-hero.trident {
    grid-template-columns: 1fr;
    padding: 60px 0 80px;
  }
  .trident-hero-visual { display: none; }
  .trident-photo-section { aspect-ratio: 16/9; }
}

/* ── Override: boeg hero was groen — forceer dark navy v597 ── */
body.boeg-page .hub-hero.boeg,
.boeg-page .hub-hero.boeg {
  background: none !important;
}
/* De ::before stelt de achtergrond in, base .hub-hero.boeg mag geen eigen bg hebben */
.hub-hero.boeg {
  background: none;
}

/* ═══════════════════════════════════════════════════════════════
   DEFINITIEVE FIX v599 — grid verwijderd van boeg hero,
   trident cards gefixed, foto vergroot
   ═══════════════════════════════════════════════════════════════ */

/* 1. Verwijder grid van hub-hero.boeg — het breekt alle 8 taalvarianten */
body.boeg-page .hub-hero.boeg,
.boeg-page .hub-hero.boeg {
  display: block !important;
  position: relative;
  overflow: hidden;
}
/* SVG-illustratie: absoluut gepositioneerd, NIET in content-flow */
.boeg-hero-visual {
  position: absolute !important;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
  display: block !important;
}
.boeg-thruster-svg { width: 100%; height: 100%; }
/* Content krijgt max-width zodat het niet onder de SVG valt */
.boeg-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
/* Eyebrow ALTIJD inline-flex, nooit uitgerekt */
body.boeg-page .hub-hero-eyebrow,
.boeg-page .hub-hero-eyebrow {
  display: inline-flex !important;
  width: auto !important;
}

/* 2. Trident toepassingskaarten — min-width:0 om overflow te voorkomen */
body.trident-page .trident-applications {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
body.trident-page .trident-app-card {
  min-width: 0 !important;
  overflow-wrap: break-word;
  word-break: break-word;
}
body.trident-page .trident-app-title {
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 640px) {
  body.trident-page .trident-applications {
    grid-template-columns: 1fr !important;
  }
}

/* 3. Trident foto-sectie groter */
.trident-photo-section {
  aspect-ratio: 16 / 6 !important;
  min-height: 260px !important;
  border-radius: 12px !important;
  overflow: hidden;
}
.trident-photo-section img {
  filter: brightness(0.48) saturate(1.6) contrast(1.12) !important;
}

/* 4. Responsive: verberg boeg SVG op smal scherm */
@media (max-width: 900px) {
  .boeg-hero-visual { display: none !important; }
  .boeg-hero-content { max-width: 100% !important; }
}

/* ── Haven: heritage link naar historiepagina ─────────────────── */
.haven-heritage-link {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201, 150, 58, 0.35);
  border-radius: 14px;
  padding: 22px 28px;
  margin-top: 40px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.haven-heritage-link:hover {
  background: rgba(201, 150, 58, 0.1);
  border-color: rgba(201, 150, 58, 0.6);
}
.haven-heritage-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(201, 150, 58, 0.15);
  border: 1px solid rgba(201, 150, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9963a;
}
.haven-heritage-icon svg { width: 22px; height: 22px; }
.haven-heritage-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.haven-heritage-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #c9963a;
  letter-spacing: 0.01em;
}
.haven-heritage-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.haven-heritage-arrow {
  width: 20px;
  height: 20px;
  color: rgba(201,150,58,0.6);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.haven-heritage-link:hover .haven-heritage-arrow {
  transform: translateX(4px);
}





/* ═══════════════════════════════════════════════════════════════════
   CALCULATOR — v6-22j  KOSTEN-CARD COMPACT NAAST METRICS
   ▸ Wrapper: 1.4fr 1fr (input wat breder, results compact)
   ▸ Results: 2 kolommen, primary NIET meer full-width
   ▸ Primary "Uw besparing": klein, naast energie-card
═══════════════════════════════════════════════════════════════════ */

/* Wrapper layout: input iets breder dan results op desktop */
.calc-wrapper { align-items: start !important; }
@media (min-width: 960px) {
  .calc-wrapper {
    grid-template-columns: 1.4fr 1fr !important;
    gap: 20px !important;
    align-items: start !important;
  }
}

/* Results card: zichtbare achtergrond + compact */
.calc-results {
  background: linear-gradient(135deg, rgba(20,30,60,.85) 0%, rgba(10,20,45,.95) 100%) !important;
  border: 1px solid rgba(246,150,10,.35) !important;
  box-shadow: 0 0 0 1px rgba(246,150,10,.15), 0 8px 32px rgba(0,0,0,.4) !important;
  border-radius: 14px !important;
  padding: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
.calc-results-header { padding-bottom: 10px !important; margin-bottom: 2px !important; }

/* 2×2 grid voor metrics: alle cards even groot */
.calc-mode-upgrade {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  flex: none !important;
}

/* PRIMARY card — NIET MEER FULL WIDTH! Net zo groot als andere cards */
.calc-result-card-primary {
  grid-column: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 6px !important;
  padding: 12px 14px !important;
  background: rgba(246,150,10,.12) !important;
  border: 1px solid rgba(246,150,10,.4) !important;
  border-radius: 9px !important;
}
.calc-result-card-primary .calc-result-icon {
  background: rgba(246,150,10,.22) !important;
  width: 26px !important; height: 26px !important; padding: 5px !important;
  margin-bottom: 2px !important;
}
.calc-result-card-primary .calc-result-label {
  font-size: .68rem !important; color: rgba(255,255,255,.75) !important;
  line-height: 1.2 !important;
}
.calc-result-card-primary .calc-result-value {
  font-size: 1.25rem !important;
  color: var(--accent) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}
.calc-result-card-primary .calc-result-value strong { color: var(--accent) !important; }

/* SECONDARY cards: zelfde maat als primary */
.calc-result-card:not(.calc-result-card-primary) {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 6px !important;
  padding: 12px 14px !important;
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  border-radius: 9px !important;
}
.calc-result-card:not(.calc-result-card-primary) .calc-result-icon {
  width: 26px !important; height: 26px !important; padding: 5px !important;
  margin-bottom: 2px !important;
}
.calc-result-card:not(.calc-result-card-primary) .calc-result-label {
  font-size: .68rem !important; color: rgba(255,255,255,.6) !important;
  line-height: 1.2 !important;
}
.calc-result-card:not(.calc-result-card-primary) .calc-result-value {
  font-size: 1.1rem !important;
  color: var(--accent) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}
.calc-result-card:not(.calc-result-card-primary) .calc-result-value strong { color: var(--accent) !important; }

/* Efficiency strip: volle breedte onderaan */
.calc-mode-upgrade .calc-efficiency-strip {
  grid-column: 1 / -1 !important;
  margin-top: 0 !important;
  padding: 8px 12px !important;
}
.calc-eff-new, .calc-eff-new strong { color: var(--accent) !important; font-weight: 700 !important; }

/* ═══════════════════════════════════════════════════════════════════
   ATEX CARD — v6-22f (behouden)
═══════════════════════════════════════════════════════════════════ */
.abb-card-atex-full { grid-column:1/-1; display:flex; flex-direction:column; gap:var(--space-4); }
.abb-card-atex-top { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media(max-width:640px){ .abb-card-atex-top{grid-template-columns:1fr} }
.atex-zone-card { background:rgba(226,35,26,.04); border:1px solid rgba(226,35,26,.15); border-top:3px solid #E2231A; border-radius:8px; padding:16px 18px; }
.atex-zone-card-title { font-size:.82rem; font-weight:700; color:#E2231A; text-transform:uppercase; letter-spacing:.06em; margin-bottom:10px; }
.atex-subs-label { font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#E2231A; margin-bottom:10px; }
.atex-subs-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
@media(max-width:640px){ .atex-subs-cards{grid-template-columns:1fr} }
.atex-sub-card { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-top:2px solid #E2231A; border-radius:6px; padding:11px 13px; }
.atex-sub-card-name { font-size:.82rem; font-weight:700; color:#E2231A; margin-bottom:4px; }
.atex-sub-card-desc { font-size:.78rem; line-height:1.5; color:rgba(255,255,255,.65); }

/* ═══════════════════════════════════════════════════════════
   DORMOT BADGES — spectaculair v6-22f
═══════════════════════════════════════════════════════════ */
.dormot-badge-glow {
  background: linear-gradient(135deg, #E2131A 0%, #b50f14 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 14px rgba(226,19,26,.45), 0 0 0 1px rgba(226,19,26,.3) !important;
  font-size: .78rem !important;
  padding: 7px 16px !important;
}
.dormot-badge-glow:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(226,19,26,.55) !important;
}
.dormot-badge-pulse {
  background: rgba(226,19,26,.08) !important;
  border: 1.5px solid rgba(226,19,26,.4) !important;
  color: #E2131A !important;
  position: relative !important;
  overflow: hidden !important;
}
.dormot-badge-pulse::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, transparent, rgba(226,19,26,.12), transparent) !important;
  animation: dormot-shimmer 2.4s ease-in-out infinite !important;
}
@keyframes dormot-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.dormot-badge-tier {
  background: linear-gradient(135deg, #002060 0%, #0a1f5c 100%) !important;
  border-color: rgba(14,165,233,.4) !important;
  color: #67e8f9 !important;
  font-size: .78rem !important;
  box-shadow: 0 2px 10px rgba(14,165,233,.2) !important;
}
.dormot-badge-class { background: rgba(240,136,18,.10) !important; border: 1.5px solid rgba(240,136,18,.4) !important; color: var(--vb-orange,#f08812) !important; font-size: .72rem !important; }

/* ═══════════════════════════════════════════════════════════════════
   iPhone / MOBILE FIT — v6-22i  (mobile-only, geen desktop leak)
   Voorkomt horizontale overflow, fixt iPhone-specifieke layout-issues
═══════════════════════════════════════════════════════════════════ */

/* iOS safe area voor notch — alleen op kleine schermen */
@media (max-width: 768px) {
  html {
    overflow-x: clip !important;       /* body verwijderd i.v.m. iOS sticky-bug */
    max-width: 100vw !important;
  }
  body { max-width: 100vw !important; }

  @supports (padding: max(0px)) {
    body {
      padding-left: env(safe-area-inset-left);
      padding-right: env(safe-area-inset-right);
    }
  }

  /* Voorkom horizontale scroll door brede elementen — alleen mobile */
  img, video, iframe {
    max-width: 100% !important;
    height: auto;
  }
}

/* iOS — voorkomt input zoom (font-size moet >= 16px op iOS).
   Alleen toepassen op smalle schermen zodat desktop forms niet beïnvloed worden. */
@media (max-width: 768px) {
  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="tel"],
  input[type="search"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* Mobile: iPhone-specifieke fixes */
@media (max-width: 768px) {
  /* Container: minder padding, geen overflow */
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100% !important;
  }

  /* Hero: kleinere typografie + geen horizontale overflow */
  .hero-v3 {
    padding: 24px 0 32px !important;
  }
  .hero-v3-title,
  .hero-headline,
  h1.hero-v3-title {
    font-size: clamp(1.75rem, 7vw, 2.4rem) !important;
    line-height: 1.15 !important;
    word-break: break-word !important;
    hyphens: auto !important;
  }
  .hero-v3-lead,
  .hero-lead {
    font-size: .95rem !important;
    line-height: 1.55 !important;
  }
  .hero-v3-cta-row,
  .hero-cta-row {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .hero-v3-cta-row .btn,
  .hero-cta-row .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Section titels: kleiner op mobile */
  .section-title {
    font-size: clamp(1.4rem, 5.5vw, 2rem) !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }
  .section-lead {
    font-size: .92rem !important;
    line-height: 1.55 !important;
  }
  .section-eyebrow {
    font-size: .7rem !important;
  }

  /* Calculator: vertical stack, comfortabel */
  .calc-wrapper {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .calc-inputs,
  .calc-results {
    padding: 16px !important;
  }
  .calc-mode-upgrade {
    grid-template-columns: 1fr !important;
  }
  .calc-result-card-primary,
  .calc-result-card:not(.calc-result-card-primary) {
    grid-column: 1 / -1 !important;
  }
  .calc-result-card-primary .calc-result-value {
    font-size: 1.6rem !important;
  }

  /* Dormot badges: stack netjes */
  .dormot-brand-badges {
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  .dormot-badge {
    font-size: .7rem !important;
    padding: 5px 11px !important;
  }
  .dormot-brand-header {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    text-align: left !important;
  }
  .dormot-brand-title {
    font-size: clamp(1.3rem, 5vw, 1.7rem) !important;
    line-height: 1.2 !important;
  }

  /* ABB section: stack */
  .abb-card,
  .abb-card-atex-full {
    width: 100% !important;
  }
  .abb-card-atex-top {
    grid-template-columns: 1fr !important;
  }
  .atex-subs-cards {
    grid-template-columns: 1fr !important;
  }

  /* Compare table: horizontaal scrollbaar */
  .compare-table-wrap,
  .compare-section .compare-table {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .compare-table {
    min-width: 640px !important;
  }

  /* Pricelist tabel: ook scrollbaar */
  .pricetable-wrap,
  .pricelist-table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Footer: stack neat */
  .footer-grid,
  .footer-cols {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Sticky topbar: kleinere padding */
  .topbar {
    padding: 6px 12px !important;
    font-size: .72rem !important;
  }

  /* Nav: hamburger / mobile menu fixes worden door bestaande CSS gehandeld */

  /* Use cases / feature cards: 1 kolom */
  .case-card,
  .vfd-card,
  .line-card {
    min-width: 0 !important;
    width: 100% !important;
  }

  /* Cases grid */
  .cases-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Lines grid */
  #lines-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* VFD grid */
  #vfd-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* ABB grid */
  #abb-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* Heritage stats / hero stats: 2 kolommen ipv 4 */
  .hero-v3-stats,
  .heritage-stats,
  .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* Margins/padding sections compacter */
  section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  /* Buttons: makkelijk te tappen */
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-accent,
  .btn-ghost {
    min-height: 44px !important;
    padding: 11px 18px !important;
    font-size: .9rem !important;
  }

  /* Tables in modals */
  .modal {
    max-width: calc(100vw - 24px) !important;
    margin: 12px auto !important;
  }

  /* Long URLs / mailto / phone — break neat */
  a[href^="mailto:"],
  a[href^="tel:"] {
    word-break: break-word !important;
  }
}

/* Extra small phones (iPhone SE etc.) */
@media (max-width: 380px) {
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .hero-v3-title { font-size: 1.6rem !important; }
  .section-title { font-size: 1.3rem !important; }
  .dormot-badge { font-size: .65rem !important; padding: 4px 9px !important; }
  .calc-result-card-primary .calc-result-value { font-size: 1.4rem !important; }
}

/* Landscape phone — extra ruimte */
@media (max-width: 900px) and (orientation: landscape) {
  .hero-v3 { padding: 18px 0 24px !important; }
  section { padding-top: 24px !important; padding-bottom: 24px !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE FIX v6-22h — alle secties onder ABB
═══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* DC sectie */
  .dc-section .container { padding-left: 16px !important; padding-right: 16px !important; }
  .dc-hero { flex-direction: column !important; gap: 16px !important; align-items: stretch !important; }
  .dc-hero-content,
  .dc-hero-visual { width: 100% !important; }
  .dc-hero-spec { width: 100px !important; height: 100px !important; }
  .dc-features-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .dc-feat,
  .dc-feature { width: 100% !important; }

  /* Calc-section: full width strips */
  .calc-section .container { padding-left: 16px !important; padding-right: 16px !important; }
  .calc-hero-strip,
  .calc-marketing { padding: 16px !important; }
  .calc-marketing-badges { grid-template-columns: 1fr !important; gap: 8px !important; }
  .calc-step { padding: 14px 0 !important; }
  .calc-step-row { grid-template-columns: 1fr !important; gap: 12px !important; }
  .calc-field-group { width: 100% !important; }

  /* VFD sectie */
  .vfd-section .container { padding-left: 16px !important; padding-right: 16px !important; }
  .vfd-grid,
  #vfd-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .vfd-card { padding: 18px !important; width: 100% !important; }
  .vfd-link { padding: 16px !important; flex-direction: column !important; align-items: flex-start !important; gap: 10px !important; }

  /* Cases sectie */
  .cases-section .container { padding-left: 16px !important; padding-right: 16px !important; }
  .cases-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .case-card { width: 100% !important; min-width: 0 !important; }
  .case-hero { padding: 20px !important; }
  .case-hero-title { font-size: 1.05rem !important; line-height: 1.3 !important; }
  .case-body { padding: 18px !important; }
  .case-metrics { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .case-metric { padding: 10px !important; }
  .case-metric-value { font-size: 1.1rem !important; }

  /* Kennisbank */
  .kennisbank-section .container { padding-left: 16px !important; padding-right: 16px !important; }
  .kb-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .kb-card { width: 100% !important; padding: 18px !important; }
  .kb-card-title { font-size: 1rem !important; line-height: 1.3 !important; }

  /* Pricelist sectie */
  .pricelist-section .container { padding-left: 12px !important; padding-right: 12px !important; }
  .pricelist-section-header { flex-direction: column !important; gap: 12px !important; align-items: flex-start !important; }
  .pricelist-fullscreen-btn { width: 100% !important; justify-content: center !important; }
  .pricelist-toolbar,
  .pricelist-filters { flex-direction: column !important; align-items: stretch !important; gap: 8px !important; }
  .pricelist-filter,
  .pricelist-search-wrap { width: 100% !important; }
  .pricelist-mount-toggle,
  .pricelist-view-toggle { flex-wrap: wrap !important; }
  .pricelist-mount-btn,
  .pricelist-view-btn { flex: 1 !important; min-height: 40px !important; }
  /* Tabel zelf scrollbaar */
  .pricetable-wrap,
  .pricelist-table-wrap,
  #pricelist-table-container { overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; }
  .pricetable,
  #pricelist-table,
  table.pricelist { min-width: 720px !important; }
  /* Static popular table */
  .popular-static-table { font-size: .8rem !important; }
  .popular-static-wrap { overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; }

  /* Specials banner in pricelist */
  .pricelist-specials-banner { flex-direction: column !important; gap: 10px !important; align-items: flex-start !important; }
  .pricelist-specials-links { flex-wrap: wrap !important; gap: 8px !important; }

  /* Partner sectie */
  .partner-section .container { padding-left: 16px !important; padding-right: 16px !important; }
  .partner-benefits { grid-template-columns: 1fr !important; gap: 14px !important; }
  .partner-benefit { padding: 18px !important; width: 100% !important; }
  .partner-cta-block { flex-direction: column !important; align-items: flex-start !important; gap: 14px !important; padding: 20px !important; }
  .partner-cta-btn { width: 100% !important; justify-content: center !important; }
  .partner-onboard { padding: 18px !important; }
  .partner-onboard-channels { flex-direction: column !important; gap: 8px !important; }
  .partner-onboard-channel { width: 100% !important; }

  /* Contact sectie */
  .contact-section .container { padding-left: 16px !important; padding-right: 16px !important; }
  .contact-channels,
  .contact-methods { grid-template-columns: 1fr !important; gap: 12px !important; }
  .contact-channel,
  .contact-method { width: 100% !important; padding: 16px !important; }
  .contact-offices,
  .offices-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .office-card { width: 100% !important; padding: 18px !important; }
  .contact-benefits { grid-template-columns: 1fr !important; }
  .contact-benefit { padding: 12px !important; }
  /* Whatsapp section */
  .contact-whatsapp { flex-direction: column !important; gap: 12px !important; align-items: flex-start !important; padding: 20px !important; }

  /* Memberships sectie */
  .memberships-section .container { padding-left: 16px !important; padding-right: 16px !important; }
  .memberships-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .membership-card { padding: 14px !important; }
  .membership-logo img { max-width: 80px !important; height: auto !important; }

  /* Testimonials sectie */
  .testimonials-section .container { padding-left: 16px !important; padding-right: 16px !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .testimonial-card { width: 100% !important; padding: 20px !important; }
  .testimonial-text { font-size: .95rem !important; }

  /* Footer */
  footer .container,
  .site-footer .container { padding-left: 16px !important; padding-right: 16px !important; }
  .footer-grid,
  .site-footer-cols { grid-template-columns: 1fr !important; gap: 24px !important; }
  .footer-col { width: 100% !important; }
  .footer-bottom { flex-direction: column !important; gap: 10px !important; text-align: center !important; }

  /* Marine hub bridge */
  .marine-hub-bridge { padding: 24px 16px !important; }
  .marine-hub-bridge-grid { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* Trident sectie op homepage */
  .trident-section { padding: 24px 0 !important; }
  .trident-section .container { padding-left: 16px !important; padding-right: 16px !important; }
  .trident-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .trident-card { width: 100% !important; padding: 18px !important; }
  .trident-feats { grid-template-columns: 1fr !important; gap: 12px !important; }
  .trident-dredge-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .trident-dredge-card { width: 100% !important; padding: 18px !important; }
  .trident-challenges-grid { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* Marine sectie homepage */
  .marine-section { padding: 24px 0 !important; }
  .marine-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .marine-source { width: 100% !important; padding: 18px !important; }
  .marine-cls-row { flex-wrap: wrap !important; gap: 8px !important; justify-content: flex-start !important; }

  /* FAQ sectie */
  .faq-section .container { padding-left: 16px !important; padding-right: 16px !important; }
  .faq-q { padding: 14px 16px !important; font-size: .95rem !important; }
  .faq-a { padding: 0 16px 14px !important; font-size: .9rem !important; }

  /* Compare sectie */
  .compare-section .container { padding-left: 12px !important; padding-right: 12px !important; }
  .compare-cards { grid-template-columns: 1fr !important; gap: 14px !important; }
  .compare-card { width: 100% !important; padding: 18px !important; }

  /* Dimsheet sectie */
  .dimsheet-section .container { padding-left: 16px !important; padding-right: 16px !important; }
  .dimsheet-form-grid,
  .dimsheet-section-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .dimsheet-field { width: 100% !important; }

  /* Engineering sectie */
  .eng-section .container { padding-left: 16px !important; padding-right: 16px !important; }
  .eng-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .eng-card { width: 100% !important; padding: 18px !important; }
  .eng-callout { flex-direction: column !important; gap: 14px !important; padding: 20px !important; }

  /* Long contact info — break neat */
  .contact-channel-value,
  .office-card-address,
  address {
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }
}

/* iPhone SE / smallest screens */
@media (max-width: 380px) {
  .memberships-grid { grid-template-columns: 1fr !important; }
  .case-metrics { grid-template-columns: 1fr !important; }
  .pricelist-mount-btn,
  .pricelist-view-btn { font-size: .78rem !important; padding: 8px 10px !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTON FIXES — v6-22k
   .btn-accent ontbrak helemaal. --navy variabele undefined.
═══════════════════════════════════════════════════════════════════ */

/* btn-accent: VBE oranje */
.btn-accent {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff !important;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  transform: translateY(-1px);
}
.btn-accent strong, .btn-accent span { color: inherit !important; }

/* Pricelist-link strong/span erven kleur van parent (anders pakt globale strong{color:var(--text)} dit)*/
.special-pricelist-link strong,
.special-pricelist-link span,
.bh-pricelist strong,
.bh-pricelist span,
.pg-pricelist strong,
.pg-pricelist span {
  color: inherit !important;
}
.special-pricelist-link-text strong { color: #fff !important; }
.special-pricelist-link-text span  { color: rgba(255,255,255,0.88) !important; }

/* --navy fallback voor alle elementen die var(--navy) gebruiken */
:root {
  --navy: #002060;
}

/* Ensure dimsheet-download-btn is visible: navy bg + white text */
.dimsheet-download-btn {
  background: var(--navy) !important;
  color: #fff !important;
  border: 1px solid var(--navy) !important;
}
.dimsheet-download-btn:hover {
  background: #001540 !important;
  color: #fff !important;
}

/* ════════════════════════════════════════════════════════
   BRAND CTA CARDS — Marine, Trident, ABB
   Same structure as Dormot CTA but per-brand color theme
   ════════════════════════════════════════════════════════ */
.brand-cta-banner {
  max-width: 1140px;
  margin: 28px auto 16px;
  padding: 0 var(--space-4);
}
/* ════════════════════════════════════════════════════════════════════
   v6.46: Brand CTA cards — EDITORIAL REDESIGN
   
   Was: rounded 16px gradient cards with radial glow + dotted grid pattern
        + colored chip pills + big shadowed CTA buttons. Classic SaaS
        template look.
   
   Now: sharp-corner editorial blocks with hairline accent rule on left,
        no glow/pattern, mono-caps spec strip with vertical hairline
        dividers between items (no pills), refined CTA with sharp arrow.
   ════════════════════════════════════════════════════════════════════ */
.brand-cta-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0;
  padding: 44px 0 40px 32px;
  text-decoration: none;
  transition: border-color .2s ease;
  box-shadow: none;
  border-left: 2px solid transparent;
  background: transparent;
}
.brand-cta-card:hover { transform: none; border-left-width: 4px; }
.brand-cta-glow,
.brand-cta-pattern { display: none !important; }

.brand-cta-inner { position: relative; z-index: 1; }

.brand-cta-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 20px;
}
.brand-cta-eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: currentColor; opacity: 1; flex-shrink: 0;
}
.brand-cta-eyebrow svg { display: none; }

.brand-cta-title {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700; letter-spacing: -.018em;
  line-height: 1.2; margin: 0 0 14px;
}
.brand-cta-desc {
  font-size: .95rem; line-height: 1.7;
  max-width: 760px; margin: 0 0 24px;
}

.brand-cta-pills {
  display: flex; flex-wrap: wrap; gap: 0;
  margin: 28px 0 32px; padding: 14px 0;
}
.brand-cta-pill {
  display: inline-flex; align-items: center;
  background: transparent; border: none; border-radius: 0;
  padding: 4px 22px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  line-height: 1.3;
}
.brand-cta-pill:first-child { padding-left: 0; }
.brand-cta-pill:last-child { border-right: none; padding-right: 0; }
.brand-cta-pill-range { background: transparent; border: none; }

.brand-cta-button {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 22px; border-radius: 3px;
  font-weight: 600; font-size: .9rem; letter-spacing: .01em;
  transition: background .15s ease, gap .2s ease;
  box-shadow: none;
}
.brand-cta-card:hover .brand-cta-button { gap: 16px; }
.brand-cta-button svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .2s ease; }
.brand-cta-card:hover .brand-cta-button svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════════
   v6.52: context-aware variants. Cards inherit their surrounding
   section's color palette rather than carrying a solid filled bg.
   ═══════════════════════════════════════════════════════════════════ */

/* MARINE — sits on NAVY-DARK section (white text + amber accent) */
.brand-cta-marine {
  background: transparent;
  border-left-color: #F6960A;
  border-top: none; border-right: none; border-bottom: none;
}
.brand-cta-marine .brand-cta-eyebrow { color: #F6960A; }
.brand-cta-marine .brand-cta-title { color: #fff; }
.brand-cta-marine .brand-cta-desc { color: rgba(255,255,255,.78); }
.brand-cta-marine .brand-cta-desc strong { color: #F6960A; font-weight: 600; }
.brand-cta-marine .brand-cta-pills {
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand-cta-marine .brand-cta-pill {
  color: rgba(255,255,255,.74);
  border-right: 1px solid rgba(255,255,255,.10);
}
.brand-cta-marine .brand-cta-pill-range { color: #F6960A; }
.brand-cta-marine .brand-cta-button { background: #F6960A; color: #001540; }
.brand-cta-marine:hover .brand-cta-button { background: #ffaa20; }

/* TRIDENT — sits on NAVY section (white text + cyan accent) */
.brand-cta-trident {
  background: transparent;
  border-left-color: #38bdf8;
  border-top: none; border-right: none; border-bottom: none;
}
.brand-cta-trident .brand-cta-eyebrow { color: #38bdf8; }
.brand-cta-trident .brand-cta-title { color: #fff; }
.brand-cta-trident .brand-cta-desc { color: rgba(255,255,255,.78); }
.brand-cta-trident .brand-cta-desc strong { color: #7dd3fc; font-weight: 600; }
.brand-cta-trident .brand-cta-pills {
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand-cta-trident .brand-cta-pill {
  color: rgba(255,255,255,.74);
  border-right: 1px solid rgba(255,255,255,.10);
}
.brand-cta-trident .brand-cta-pill-range { color: #38bdf8; }
.brand-cta-trident .brand-cta-button { background: #0ea5e9; color: #fff; }
.brand-cta-trident:hover .brand-cta-button { background: #0284c7; }

/* ABB — sits on LIGHT WHITE section (dark text + red accent) */
.brand-cta-abb {
  background: transparent;
  border-left-color: #E2231A;
  border-top: none; border-right: none; border-bottom: none;
}
.brand-cta-abb .brand-cta-eyebrow { color: #E2231A; }
.brand-cta-abb .brand-cta-title { color: #1a2744; }
.brand-cta-abb .brand-cta-desc { color: #4a5a72; }
.brand-cta-abb .brand-cta-desc strong { color: #E2231A; font-weight: 600; }
.brand-cta-abb .brand-cta-pills {
  border-top: 1px solid rgba(26,39,68,.14);
  border-bottom: 1px solid rgba(26,39,68,.14);
}
.brand-cta-abb .brand-cta-pill {
  color: #5a718c;
  border-right: 1px solid rgba(26,39,68,.10);
}
.brand-cta-abb .brand-cta-pill-range { color: #E2231A; }
.brand-cta-abb .brand-cta-button { background: #E2231A; color: #fff; }
.brand-cta-abb:hover .brand-cta-button { background: #b8050f; }

@media (max-width: 720px) {
  .brand-cta-card { padding: 32px 24px 28px 22px; }
  .brand-cta-pills {
    flex-direction: column;
    gap: 0;
    padding: 0;
    border: none;
  }
  .brand-cta-pill {
    padding: 12px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .brand-cta-pill:last-child { border-bottom: none; }
}

/* ─── VFD / FREQUENTIEREGELAAR — VBE theme (navy + oranje) ─── */
.brand-cta-vfd {
  background: linear-gradient(135deg, #002060 0%, #001640 50%, #00194d 100%);
  border: 1px solid rgba(246,150,10,.4);
}
.brand-cta-vfd:hover {
  border-color: rgba(246,150,10,.75);
  box-shadow: 0 12px 40px rgba(246,150,10,.22), inset 0 0 0 1px rgba(255,255,255,.06);
}
.brand-cta-vfd .brand-cta-glow {
  background: radial-gradient(circle, rgba(246,150,10,.28) 0%, transparent 60%);
}
.brand-cta-vfd .brand-cta-eyebrow { color: #fcd283; }
.brand-cta-vfd .brand-cta-title { color: #fff; }
.brand-cta-vfd .brand-cta-desc { color: rgba(255,255,255,.82); }
.brand-cta-vfd .brand-cta-desc strong { color: #fde0a8; font-weight: 700; }
.brand-cta-vfd .brand-cta-pills {
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand-cta-vfd .brand-cta-pill {
  background: rgba(246,150,10,.14);
  border: 1px solid rgba(246,150,10,.36);
  color: #fde0a8;
}
.brand-cta-vfd .brand-cta-pill-range { color: #fde0a8; background: transparent; border: none; }
.brand-cta-vfd .brand-cta-button {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.brand-cta-vfd:hover .brand-cta-button { background: var(--accent-hover); }

/* ================================================================
   HAMBURGER MENU — Mobile nav (< 960px)
   ================================================================ */

/* Hamburger button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(0,32,96,.15);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
}
.hamburger-btn:hover { background: rgba(0,32,96,.06); border-color: rgba(0,32,96,.3); }
.hamburger-btn[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary, #002060);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
@media (max-width: 959px) { .hamburger-btn { display: flex; } }

/* Backdrop */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 199;
  opacity: 0;
  transition: opacity .3s ease;
}
.mobile-menu-backdrop.is-open { display: block; opacity: 1; }

/* Slide-in panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 92vw);
  background: #fff;
  z-index: 200;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }
/* v7.7: gesloten menu uit de layout -> veroorzaakt geen horizontale overflow meer,
   waardoor body-clip overbodig is en position:sticky op mobiel weer werkt.
   Animatie blijft behouden op moderne browsers via @starting-style/allow-discrete. */
.mobile-menu:not(.is-open) { display: none; }
.mobile-menu { transition: transform .3s cubic-bezier(.4,0,.2,1), display .3s allow-discrete; }
@starting-style { .mobile-menu.is-open { transform: translateX(100%); } }

/* Panel header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,32,96,.1);
  flex-shrink: 0;
}
.mobile-menu-header img { height: 26px; width: auto; }
.mobile-menu-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid rgba(0,32,96,.12);
  border-radius: 8px; cursor: pointer;
  color: #002060; transition: background .15s;
}
.mobile-menu-close:hover { background: rgba(0,32,96,.06); }
.mobile-menu-close svg { width: 18px; height: 18px; }

/* Nav sections */
.mobile-menu-nav { padding: 16px 20px; flex: 1; display: flex; flex-direction: column; gap: 0; }
.mobile-menu-section { margin-bottom: 16px; }
.mobile-menu-label {
  display: block;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8da0b8;
  padding: 4px 0 6px;
  border-bottom: 1px solid rgba(0,32,96,.07);
  margin-bottom: 4px;
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 6px;
  font-size: .88rem;
  font-weight: 500;
  color: #002060;
  text-decoration: none;
  border-radius: 6px;
  transition: background .12s, color .12s;
}
.mobile-menu-link:hover { background: rgba(0,32,96,.05); color: #F08812; }
.mobile-menu-link-calc {
  color: #F08812;
  font-weight: 600;
  background: rgba(240,136,18,.06);
  border: 1px solid rgba(240,136,18,.2);
  margin-bottom: 10px;
}
.mobile-menu-link-calc svg { width: 15px; height: 15px; flex-shrink: 0; }
.mobile-menu-cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0,32,96,.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  font-size: .88rem;
  font-weight: 600;
  color: #002060;
  text-decoration: none;
  border: 1px solid rgba(0,32,96,.15);
  border-radius: 8px;
  transition: background .12s;
}
.mobile-menu-tel svg { width: 14px; height: 14px; }
.mobile-menu-tel:hover { background: rgba(0,32,96,.04); }

/* body lock when menu open */
body.mobile-menu-open { overflow: hidden; }

/* ════════════════════════════════════════════════════════════════
   v6.26 SELECTION-BAR REDESIGN — duidelijke offerte-CTA voor klanten
   ════════════════════════════════════════════════════════════════ */
.selection-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, #002060 0%, #001540 100%);
  color: #fff;
  padding: 16px 20px;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  z-index: 50;
  transform: translateY(100%);
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 4px solid var(--accent, #f6960a);
}
.selection-bar.active { transform: translateY(0); }
.selection-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.selection-bar > .container > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}
.selection-count {
  font-weight: 700 !important;
  font-size: 1.0625rem !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.selection-count::before {
  content: '';
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--accent, #f6960a);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
#sel-count {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent, #f6960a);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  margin-right: 4px;
}
.selection-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.selection-bar .btn-primary {
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 14px 28px !important;
  background: var(--accent, #f6960a) !important;
  color: #fff !important;
  border: 2px solid var(--accent, #f6960a) !important;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  white-space: nowrap;
}
.selection-bar .btn-primary:hover {
  background: #fff !important;
  color: var(--accent, #f6960a) !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.selection-bar .btn-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
}
.selection-bar .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

/* Pulse-animatie bij verandering van counter */
.selection-bar.pulse {
  animation: selBarPulse 600ms ease-out;
}
@keyframes selBarPulse {
  0%   { transform: translateY(0) scale(1); }
  30%  { transform: translateY(0) scale(1.012); box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18); }
  100% { transform: translateY(0) scale(1); }
}

/* Mobile: selection-bar wordt nog opvallender */
@media (max-width: 600px) {
  .selection-bar { padding: 12px 14px; }
  .selection-bar .container { gap: 10px; }
  .selection-bar > .container > div:first-child { width: 100%; justify-content: center; }
  .selection-actions { width: 100%; justify-content: center; }
  .selection-bar .btn-primary { flex: 1; padding: 12px 16px !important; font-size: 0.9375rem !important; }
  .selection-bar .btn-secondary { padding: 12px 14px; font-size: 0.875rem; }
  .selection-count { font-size: 0.9375rem !important; }
  .selection-count::before { width: 30px; height: 30px; background-size: 16px; }
  #sel-count { font-size: 1.25rem; }
}

/* ════════════════════════════════════════════════════════════════
   STICKY QUOTE COUNTER — meescrollt met productlijst
   Verschijnt bij eerste selectie als floating chip rechtsboven tabel
   ════════════════════════════════════════════════════════════════ */
.sticky-quote-badge {
  position: fixed;
  top: 80px;
  right: 20px;
  background: var(--accent, #f6960a);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
  cursor: pointer;
  z-index: 45;
  display: none;
  align-items: center;
  gap: 8px;
  transition: transform 250ms ease, box-shadow 250ms ease;
  border: 2px solid #fff;
}
.sticky-quote-badge.active {
  display: inline-flex;
  animation: stickyBadgePop 400ms ease-out;
}
.sticky-quote-badge:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
.sticky-quote-badge .badge-count {
  background: #fff;
  color: var(--accent, #f6960a);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9375rem;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}
.sticky-quote-badge svg {
  flex-shrink: 0;
}
@keyframes stickyBadgePop {
  0%   { transform: translateY(-20px) scale(0.5); opacity: 0; }
  60%  { transform: translateY(0) scale(1.1); opacity: 1; }
  100% { transform: translateY(0) scale(1); }
}
@media (max-width: 600px) {
  .sticky-quote-badge {
    top: auto;
    bottom: 80px;  /* boven WhatsApp button */
    right: 12px;
    padding: 8px 14px;
    font-size: 0.8125rem;
  }
  .sticky-quote-badge .badge-count { width: 22px; height: 22px; font-size: 0.8125rem; }
}

/* ════════════════════════════════════════════════════════════════
   TOAST NOTIFICATION — bij eerste selectie
   ════════════════════════════════════════════════════════════════ */
.quote-toast {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #002060;
  color: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 32, 96, 0.4);
  font-weight: 600;
  font-size: 0.9375rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: calc(100% - 40px);
  border-left: 4px solid var(--accent, #f6960a);
}
.quote-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.quote-toast .toast-icon {
  width: 32px;
  height: 32px;
  background: var(--accent, #f6960a);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.quote-toast .toast-text { line-height: 1.4; }
.quote-toast .toast-action {
  margin-left: auto;
  background: var(--accent, #f6960a);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.875rem;
  white-space: nowrap;
}
.quote-toast .toast-action:hover { background: #e08a09; }
@media (max-width: 600px) {
  .quote-toast {
    top: 70px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 14px 18px;
  }
  .quote-toast .toast-text { font-size: 0.8125rem; }
  .quote-toast .toast-action { width: 100%; padding: 10px 14px; }
  .quote-toast .toast-icon { margin: 0 auto; }
}

/* Hide WhatsApp button wanneer selection-bar actief is op mobiel om visuele clutter te verminderen */
@media (max-width: 600px) {
  .selection-bar.active ~ .wa-float {
    bottom: 90px;  /* schuif WhatsApp boven de selection-bar */
  }
}

/* Visueel onderscheid voor geselecteerde rijen — feller dan voorheen */
.pricetable tbody tr.selected {
  background: rgba(246, 150, 10, 0.12) !important;
  box-shadow: inset 4px 0 0 var(--accent, #f6960a);
}
.pricetable tbody tr.selected td:first-child {
  background: rgba(246, 150, 10, 0.25) !important;
}
.pricetable tbody tr.selected td {
  font-weight: 500;
}
.pricetable tbody tr td:first-child input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent, #f6960a);
}
.pricelist-multiselect-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  padding: 14px 18px;
  background: linear-gradient(90deg, rgba(0, 32, 96, 0.06), rgba(246, 150, 10, 0.06));
  border: 1px solid rgba(0, 32, 96, 0.15);
  border-left: 4px solid var(--accent, #f6960a);
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--text, #1a2540);
  font-weight: 500;
  line-height: 1.5;
}
.pricelist-multiselect-hint svg {
  flex-shrink: 0;
  color: var(--accent, #f6960a);
}
@media (max-width: 600px) {
  .pricelist-multiselect-hint {
    font-size: 0.875rem;
    padding: 12px 14px;
  }
  .pricelist-multiselect-hint svg { width: 18px; height: 18px; }
}

/* Visually hidden helper voor screenreaders */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Subtiele highlight voor checkbox-kolom op rijen die hover ervaren — moedigt aanvinken aan */
.pricetable tbody tr:hover td:first-child {
  background: rgba(246, 150, 10, 0.08);
}
.pricetable tbody tr.selected {
  background: rgba(246, 150, 10, 0.05);
}
.pricetable tbody tr.selected td:first-child {
  background: rgba(246, 150, 10, 0.18);
}

/* Maak selection-bar onderaan duidelijker als prominente offerte-CTA */
.selection-bar.active {
  box-shadow: 0 -4px 24px rgba(0, 32, 96, 0.18);
}
.selection-bar .selection-count {
  font-size: 1.0625rem;
}
.selection-bar .btn-primary {
  font-weight: 600;
  padding: 12px 24px;
}

/* ════════════════════════════════════════════════════════════════
   ABB CARDS V2 — schoner B2B-inkoper layout
   Series code prominent, IE badges in header, oranje CTA
   ════════════════════════════════════════════════════════════════ */
.abb-card-v2 {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px 18px;
}
.abb-card-v2 .abb-card-v2-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 24px;
  margin-bottom: 4px;
}
.abb-card-brand-logo {
  display: block;
  height: 20px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
.abb-card-v2-badges {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.abb-card-v2-series {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
  line-height: 1;
}
.abb-card-v2-series.atex-series {
  font-size: 1.25rem;
  color: var(--atex-red);
  word-break: break-word;
}
.abb-card-v2-title {
  font-size: 0.9375rem;
  color: var(--text-soft);
  font-weight: 500;
  line-height: 1.4;
}
.abb-card-v2-desc {
  font-size: 0.875rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 4px 0 6px;
}
.abb-card-v2-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.abb-card-v2-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.abb-card-v2-spec-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.abb-card-v2-spec-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  letter-spacing: -0.005em;
}
.abb-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  pointer-events: none; /* Card-level click handelt af, knop is visueel */
}
.abb-card-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.abb-card-v2:hover .abb-card-cta { background: var(--accent-hover); }
.abb-card-v2:hover .abb-card-cta svg { transform: translateX(3px); }

/* On-request krijgt iets gedempter look */
.abb-card-v2.on-request .abb-card-cta {
  background: var(--primary);
}
.abb-card-v2.on-request:hover .abb-card-cta {
  background: #001640;
}

/* ATEX kaart: behoud full-width met sub-grid, maar gebruik V2 head */
.abb-card-v2.atex .abb-card-v2-head {
  margin-bottom: 8px;
}

/* Verberg oude .abb-card-head structuur als die toch nog ergens leeft */
.abb-card-v2 .abb-card-head,
.abb-card-v2 .abb-card-head-left,
.abb-card-v2 .abb-card-icon,
.abb-card-v2 .abb-card-name,
.abb-card-v2 .abb-card-title,
.abb-card-v2 .abb-card-code,
.abb-card-v2 .abb-card-desc,
.abb-card-v2 .abb-card-specs,
.abb-card-v2 .abb-card-spec-label,
.abb-card-v2 .abb-card-spec-value { /* geen overrides nodig — V2 heeft eigen klassen */ }

/* ════════════════════════════════════════════════════════════════
   ATEX CARD V2 — compactere layout, witte achtergrond
   Header op 1 regel · 3 sub-types prominent · footer-strip met specs+CTA
   ════════════════════════════════════════════════════════════════ */
.abb-card-v2.atex.abb-card-atex-full {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 24px 20px;
}
.abb-card-v2.atex .abb-card-atex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.abb-card-v2.atex .abb-card-atex-header-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
}
.abb-card-v2.atex .abb-card-v2-series.atex-series {
  font-size: 1.5rem;
  color: var(--atex-red);
  white-space: nowrap;
}
.abb-card-v2.atex .abb-card-atex-divider {
  color: var(--border-strong);
  font-weight: 400;
}
.abb-card-v2.atex .abb-card-atex-headline {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}
.abb-card-v2.atex .abb-card-v2-desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-soft);
}

/* ATEX sub-cards — override de oude dark-theme styling voor light card */
.abb-card-v2.atex .atex-subs-grid { margin: 0; }
.abb-card-v2.atex .atex-subs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.abb-card-v2.atex .atex-sub-card {
  background: rgba(226, 35, 26, 0.035);
  border: 1px solid rgba(226, 35, 26, 0.18);
  border-top: 3px solid var(--atex-red);
  border-radius: 8px;
  padding: 12px 14px;
}
.abb-card-v2.atex .atex-sub-card-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--atex-red);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.abb-card-v2.atex .atex-sub-card-desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-soft);
}
@media (max-width: 720px) {
  .abb-card-v2.atex .atex-subs-cards { grid-template-columns: 1fr; }
}

/* Footer-strip: specs + CTA op één regel */
.abb-card-v2.atex .abb-card-atex-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.abb-card-v2.atex .abb-card-atex-specs {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 0.875rem;
  color: var(--text-soft);
  flex-wrap: wrap;
}
.abb-card-v2.atex .abb-card-atex-spec-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 600;
  margin-right: 4px;
}
.abb-card-v2.atex .abb-card-atex-specs strong {
  color: var(--text);
  font-weight: 700;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
}
.abb-card-v2.atex .abb-card-cta {
  width: auto;
  min-width: 180px;
  margin: 0;
}
@media (max-width: 540px) {
  .abb-card-v2.atex .abb-card-atex-footer { flex-direction: column; align-items: stretch; }
  .abb-card-v2.atex .abb-card-cta { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════════
   EDGE BLEED VIDEO HERO
═══════════════════════════════════════════════════════════════════════ */

/* Showcase ALTIJD zichtbaar op desktop via !important */
@media (min-width: 960px) {
  .hero-v3-showcase {
    display: block !important;
    position: relative !important;
    min-height: 460px;
    overflow: visible !important;
  }
}
@media (max-width: 959px) {
  .hero-v3-showcase { display: none !important; }
}

.hero-v3-pill { display: none !important; }

/* Bleed wrapper — breekt uit container naar rechterrand viewport */
.vbe-edge-bleed {
  position: absolute;
  left:   -40px;
  right:  calc(-1 * (32px + max(0px, (100vw - 1280px) / 2)));
  top:    -32px;
  bottom: -48px;
  overflow: hidden;
  background: #061528;    /* donkere fallback als video laadt */
  border-radius: 0;
}

/* Video — vult het hele bleed-vlak */
.vbe-eb-video {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Gradient links — video lost op in hero-achtergrond */
.vbe-eb-mask-left {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to right,
    #031840 0%,
    rgba(3,24,64,0.92) 8%,
    rgba(3,24,64,0.65) 20%,
    rgba(3,24,64,0.25) 35%,
    transparent 55%
  );
}

/* Vignette rondom */
.vbe-eb-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse at 68% 50%,
    transparent 22%,
    rgba(1,10,28,0.32) 58%,
    rgba(1,10,28,0.68) 100%
  );
}

/* Oranje accent-lijn */
.vbe-eb-accent {
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 3px;
  z-index: 5;
  border-radius: 2px;
  background: linear-gradient(to bottom,
    transparent 0%, #f6960a 22%, #ffb03a 50%, #f6960a 78%, transparent 100%);
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}

/* Data-tags */
.vbe-eb-tag {
  position: absolute;
  z-index: 6;
  padding: 10px 16px;
  background: rgba(1,12,30,0.72);
  border: 1px solid rgba(246,150,10,0.28);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  animation: vbeFloat 7s ease-in-out infinite;
}
@keyframes vbeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.vbe-eb-tag-top { top: 14%; right: 8%; animation-delay: 0s; }
.vbe-eb-tag-mid { top: 44%; right: 5%; animation-delay: -2.3s; border-color: rgba(255,255,255,0.10); }
.vbe-eb-tag-bot { bottom: 13%; right: 9%; animation-delay: -4.6s; border-color: rgba(220,55,45,0.28); }

.vbe-eb-tag-num {
  font-family: 'IBM Plex Sans', 'Courier New', monospace;
  font-size: 1rem; font-weight: 700; color: #fff;
  line-height: 1; letter-spacing: -0.01em;
}
.vbe-eb-tag-lbl {
  font-size: 0.6rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(246,150,10,0.82); white-space: nowrap;
}
.vbe-eb-tag-mid .vbe-eb-tag-lbl { color: rgba(255,255,255,0.42); }
.vbe-eb-tag-bot .vbe-eb-tag-lbl { color: rgba(230,95,85,0.82); }

/* Slogan signature — editorial mark top-left of hero video */
.vbe-eb-signature {
  position: absolute;
  top: 22px;
  left: 28px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
  pointer-events: none;
  white-space: nowrap;
}
.vbe-eb-signature::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent, #f6960a);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(10, 25, 50, 0.18);
}
@media (max-width: 960px) {
  .vbe-eb-signature { top: 14px; left: 18px; font-size: 0.56rem; letter-spacing: 0.18em; gap: 10px; }
  .vbe-eb-signature::before { width: 20px; }
}

/* Filmgrain */
.vbe-eb-noise {
  position: absolute; inset: 0; z-index: 4;
  opacity: 0.04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}


/* ── Nav overflow fix: FR en ES hebben langere menu-labels ────────────
   Kleinere font-size + minder padding houdt alles in één lijn zonder
   dat het merkbaar anders oogt dan NL/EN.
──────────────────────────────────────────────────────────────────── */
html[lang="fr"] header.site-header nav.main-nav .nav-dropdown-trigger,
html[lang="es"] header.site-header nav.main-nav .nav-dropdown-trigger {
  font-size: 0.8125rem !important;
  padding: 8px 9px !important;
}

html[lang="fr"] header.site-header nav.main-nav,
html[lang="es"] header.site-header nav.main-nav {
  gap: 0px !important;
}

html[lang="fr"] header.site-header > .container,
html[lang="es"] header.site-header > .container {
  gap: 10px !important;
}


/* ════════════════════════════════════════════════════════════════════
   v5.86: Dormot line logos (Core · Pro · Renew)
   Logo + badge in flex row at top of each dormot-line-card.
   Replaces the previous single badge layout — fully backward compatible.
   ════════════════════════════════════════════════════════════════════ */

/* New wrapper: puts logo and badge side-by-side */
.dormot-line-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Logo block — square, subtle drop shadow */
.dormot-line-logo {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* When inside the new flex header, the badge needs its own margin reset */
.dormot-line-header .dormot-line-badge {
  margin-bottom: 0;
}

/* Mobile: keep logo and badge in row but slightly smaller */
@media (max-width: 768px) {
  .dormot-line-logo {
    width: 56px;
    height: 56px;
  }
  .dormot-line-header {
    gap: 12px;
    margin-bottom: 16px;
  }
}

/* ════════════════════════════════════════════════════════════════════
   v5.91: Bow thruster — engineering schematic over video

   Dark gallery with technical annotations IN the video frame.
   Four specs on the right side, haircut amber connector lines
   pointing to motor features.

   On <960px the schematic hides and specs render as a grid below.
   ════════════════════════════════════════════════════════════════════ */

.bh-piece {
  background: var(--vb-navy-dk, #001540);
  position: relative;
  overflow: hidden;
}
.bh-piece-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 140px 56px 100px;
  position: relative;
}

/* Top-right tag */
.bh-piece-tag {
  position: absolute;
  top: 48px;
  right: 56px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vb-orange,#f08812);
}

/* Headline — large, light, narrow column */
.bh-piece-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 200;
  line-height: 0.98;
  letter-spacing: -0.038em;
  color: #fff;
  margin: 0 0 24px;
  max-width: 16ch;
}

/* Lead — italic, muted */
.bh-piece-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
  max-width: 48ch;
  margin: 0 0 76px;
}

/* The stage — video + overlay */
.bh-piece-stage {
  position: relative;
  margin: 0 -56px 32px;
  line-height: 0; /* prevent stray baseline gap below video */
}
.bh-piece-stage video { line-height: normal; }
.bh-piece-stage video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

/* Subtle right-side wash for label legibility on desktop */
.bh-piece-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,21,64,0) 55%,
    rgba(0,21,64,0.55) 100%);
  pointer-events: none;
  z-index: 2;
}

/* SVG connector layer — sits on top of the video with same dimensions */
.bh-piece-schema {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

/* Label container — positioned absolutely on desktop */
.bh-piece-labels {
  position: absolute;
  top: 0;
  right: 56px;
  bottom: 0;
  width: 280px;
  z-index: 4;
}

.bh-piece-spec {
  position: absolute;
  right: 0;
  text-align: right;
  color: #fff;
  line-height: 1;
}
.bh-piece-spec-kicker {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--vb-orange,#f08812);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.bh-piece-spec-value {
  display: block;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1;
}
.bh-piece-spec-value .unit {
  font-size: 0.5em;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 4px;
  vertical-align: 0.45em;
  font-weight: 400;
}
.bh-piece-spec-sub {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  text-transform: uppercase;
}

/* Position each spec at its anchor point */
.bh-piece-spec--power     { top: 9%; }
.bh-piece-spec--config    { top: 32%; }
.bh-piece-spec--mfr       { top: 55%; }
.bh-piece-spec--class     { top: 78%; }

/* Bottom mark — date/location stamp */
.bh-piece-mark {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}
.bh-piece-mark::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--vb-orange,#f08812);
  flex-shrink: 0;
}
.bh-piece-mark-text {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ───────── Tablet & below: switch from overlay to grid below video ───────── */
@media (max-width: 960px) {
  .bh-piece-inner { padding: 96px 36px 88px; }
  .bh-piece-tag { top: 32px; right: 36px; font-size: 9px; letter-spacing: 0.18em; }
  .bh-piece-lead { margin-bottom: 56px; }
  .bh-piece-stage { margin: 0 -36px 0; }

  /* Hide overlay components */
  .bh-piece-stage::after,
  .bh-piece-schema {
    display: none;
  }

  /* Reflow labels as a 2-column grid beneath video */
  .bh-piece-labels {
    position: static;
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
    padding: 40px 36px 0;
  }
  .bh-piece-spec {
    position: static;
    right: auto;
    text-align: left;
  }
  .bh-piece-mark { padding: 28px 36px 0; }
}

/* ───────── Mobile ───────── */
@media (max-width: 560px) {
  .bh-piece-inner { padding: 72px 24px 64px; }
  .bh-piece-tag {
    position: static;
    display: block;
    margin-bottom: 32px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .bh-piece-headline { margin-bottom: 20px; }
  .bh-piece-lead { margin-bottom: 44px; font-size: 1.025rem; }
  .bh-piece-stage { margin: 0 -24px; }
  .bh-piece-labels {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px 0;
  }
  .bh-piece-mark { padding: 24px 24px 0; }
  .bh-piece-mark::before { width: 24px; }
}

/* ════════════════════════════════════════════════════════════════════
   v6.40: Revisie — workshop dossier showcase

   Asymmetric two-column composition: video on the left (~62%),
   an editorial three-field dossier on the right separated by
   hairline rules. No overlay, no connector lines — the video stands
   on its own. The dossier reads like a service-record card.

   On <960px: stacks. Dossier becomes a horizontal 3-up grid below the
   video, then collapses to single-column on mobile.
   ════════════════════════════════════════════════════════════════════ */

.rv-piece {
  background: var(--vb-navy-dk, #001540);
  position: relative;
  overflow: hidden;
}
.rv-piece-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 140px 56px 100px;
  position: relative;
}

/* Top-right tag — matches bh-piece for family resemblance */
.rv-piece-tag {
  position: absolute;
  top: 48px;
  right: 56px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vb-orange,#f08812);
}

/* Headline — narrow column, light weight */
.rv-piece-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 200;
  line-height: 0.98;
  letter-spacing: -0.038em;
  color: #fff;
  margin: 0 0 24px;
  max-width: 16ch;
}

/* Lead — italic muted */
.rv-piece-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
  max-width: 52ch;
  margin: 0 0 76px;
}

/* The composition: asymmetric grid */
.rv-piece-comp {
  display: grid;
  grid-template-columns: minmax(0, 62fr) minmax(0, 38fr);
  gap: 56px;
  align-items: stretch;
}

/* Video container */
.rv-piece-stage {
  position: relative;
  line-height: 0;
}
.rv-piece-stage video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

/* Subtle index mark on top-left of the video frame — single hairline tick.
   This is the one design flourish: a tiny editorial anchor that says
   "this is a documented piece of work", without being a fake LIVE tag. */
.rv-piece-index {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  pointer-events: none;
}
.rv-piece-index::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--vb-orange,#f08812);
}
.rv-piece-index-text {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Dossier — three stacked fields on the right */
.rv-piece-dossier {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}
.rv-piece-field {
  position: relative;
  padding: 0 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.rv-piece-field:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.rv-piece-field + .rv-piece-field {
  padding-top: 28px;
}
.rv-piece-field-kicker {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--vb-orange,#f08812);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.rv-piece-field-value {
  display: block;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #fff;
}
.rv-piece-field-sub {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  text-transform: uppercase;
}

/* Mark line below — date stamp, mirrors bh-piece-mark */
.rv-piece-mark {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 36px;
  margin-top: 32px;
}
.rv-piece-mark::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--vb-orange,#f08812);
  flex-shrink: 0;
}
.rv-piece-mark-text {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ───────── Tablet & below: stack, dossier becomes a 3-up grid ───────── */
@media (max-width: 960px) {
  .rv-piece-inner { padding: 96px 36px 88px; }
  .rv-piece-tag { top: 32px; right: 36px; font-size: 9px; letter-spacing: 0.18em; }
  .rv-piece-lead { margin-bottom: 56px; }

  .rv-piece-comp {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Stage breaks out of the inner padding for a full-bleed feel */
  .rv-piece-stage { margin: 0 -36px; }
  .rv-piece-index { top: 12px; left: 24px; }

  .rv-piece-dossier {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
  }
  .rv-piece-field {
    padding: 0 24px 0 0;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
  .rv-piece-field:last-child {
    padding-right: 0;
    border-right: none;
  }
  .rv-piece-field + .rv-piece-field {
    padding-top: 0;
    padding-left: 24px;
  }
}

/* ───────── Mobile ───────── */
@media (max-width: 560px) {
  .rv-piece-inner { padding: 72px 24px 64px; }
  .rv-piece-tag {
    position: static;
    display: block;
    margin-bottom: 32px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .rv-piece-headline { margin-bottom: 20px; }
  .rv-piece-lead { margin-bottom: 44px; font-size: 1.025rem; }
  .rv-piece-stage { margin: 0 -24px; }
  .rv-piece-index { top: 10px; left: 14px; }
  .rv-piece-index::before { width: 14px; }

  .rv-piece-dossier {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .rv-piece-field {
    padding: 0 0 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .rv-piece-field:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .rv-piece-field + .rv-piece-field {
    padding-top: 24px;
    padding-left: 0;
  }
  .rv-piece-mark { padding-top: 28px; margin-top: 24px; }
  .rv-piece-mark::before { width: 24px; }
}

/* ════════════════════════════════════════════════════════════════════
   v6.41: Revisie hero — video op de rechterhelft

   Verwijdert het oude .rv-piece block (verderop in de pagina) en
   plaatst het workshop video direct in de hero, rechtsboven, in een
   asymmetrische compositie. Geen overlay op video; één technische
   caption onder de video frame.

   Override van .rv-hero-grid uit de inline page CSS — daarom hogere
   specificiteit nodig.
   ════════════════════════════════════════════════════════════════════ */

.rv-hero { padding: 96px 0 88px; }  /* meer ademruimte rond grotere hero */

/* Asymmetrische split: tekst links, video rechts — even balans, video krijgt
   nog steeds nét meer ruimte voor visuele impact, maar h1 ademt. */
.rv-hero .rv-hero-grid {
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  gap: 56px;
  align-items: center;
}

/* Override the older inline page CSS that styled .rv-hero-visual for the
   tiny SVG (centered, max-width 300px, opacity .75). Now the visual cell
   holds a 16:9 video that must fill its column. */
.rv-hero .rv-hero-visual {
  display: block;
  opacity: 1;
  max-width: none;
  width: 100%;
}

/* ════════════════════════════════════════════════════════════════════
   v6.42: Revisie hero video — UPGRADED design

   Adds anatomical-illustration vibe: 3-callout schematic overlay
   (amber hairlines + dots + mono-caps labels), a structured 2-line
   dossier card top-left, and a refined caption strip with 3 metadata
   fields below the video.

   Inspired by Patek Philippe technical drawings and engineering
   catalogues. Same family as the boegschroef schema, but smaller and
   tighter — this is a hero element, not a full section.
   ════════════════════════════════════════════════════════════════════ */

/* Video stage — frame treatment */
.rv-hero-video {
  position: relative;
  width: 100%;
  margin: 0;
  line-height: 0;
  /* Subtle premium frame: hairline border + soft shadow.
     Reads as "documented object", not "embedded video player". */
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}
.rv-hero-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

/* ── Top-left DOSSIER card — 2-line structured object tag ───────── */
.rv-hero-video-index {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  z-index: 3;
  pointer-events: none;
  line-height: 1;
}
.rv-hero-video-index::before {
  content: '';
  width: 22px;
  height: 1px;
  background: #F6960A;
  margin-bottom: 4px;
}
.rv-hero-video-index-text {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}
.rv-hero-video-index-sub {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

/* ── Schematic overlay — anatomical-illustration callouts ───────── */
.rv-hero-video-schema {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

/* Callout labels — 3 of them, sitting OUTSIDE the video frame on the right,
   each connected to a marker dot inside the video by a thin amber line.
   This treats the video as a specimen and the labels as the
   technical-drawing annotations alongside it. */
.rv-hero-video-callout {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}
.rv-hero-video-callout-num {
  display: inline-block;
  font-size: 8px;
  color: #F6960A;
  margin-right: 8px;
  vertical-align: 1px;
}

/* Position the 3 callouts on the LEFT-INTERIOR of the video, vertically spaced.
   But shift them to the lower half so they don't collide with the dossier card. */
.rv-hero-video-callout--1 { bottom: 50%; right: 12px; text-align: right; }
.rv-hero-video-callout--2 { bottom: 30%; right: 12px; text-align: right; }
.rv-hero-video-callout--3 { bottom: 12%; right: 12px; text-align: right; }

/* ── Caption below video — refined 3-field metadata strip ───────── */
.rv-hero-video-caption {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}
.rv-hero-video-caption-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}
.rv-hero-video-caption-field:last-child {
  border-right: none;
  padding-right: 0;
}
.rv-hero-video-caption-field + .rv-hero-video-caption-field {
  padding-left: 18px;
}
.rv-hero-video-caption-kicker {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F6960A;
  line-height: 1;
}
.rv-hero-video-caption-value {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
}

/* Hide the OLD single-line caption text wrapper if it's still in DOM */
.rv-hero-video-caption-text { display: none; }

@media (max-width: 860px) {
  /* On tablet/mobile the schematic callouts would crowd the small video.
     Hide them; the caption strip carries the technical content. */
  .rv-hero-video-schema,
  .rv-hero-video-callout {
    display: none;
  }
  .rv-hero-video-caption {
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
    padding-top: 14px;
  }
  .rv-hero-video-caption-field {
    flex: none;
    padding: 0 !important;
    border-right: none !important;
    flex-direction: row;
    align-items: baseline;
    gap: 14px;
  }
  .rv-hero-video-caption-field + .rv-hero-video-caption-field {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 14px !important;
  }
}

/* ───────── Tablet & below: stack ───────── */
@media (max-width: 860px) {
  .rv-hero { padding: 72px 0 72px; }
  .rv-hero .rv-hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  /* Override the older inline rule that hides .rv-hero-visual at this bp */
  .rv-hero-visual,
  .rv-hero-video {
    display: block;
  }
  /* WOW above the fold: when stacked, the video comes first.
     The text column is the first DOM child but on mobile we re-order so
     the visual leads — gives the same "video direct zichtbaar" feeling as
     desktop where it sits in the upper-right. */
  .rv-hero .rv-hero-grid > .rv-hero-visual { order: -1; }
  .rv-hero-video-index { top: 10px; left: 10px; }
}

@media (max-width: 560px) {
  .rv-hero { padding: 56px 0 56px; }
  .rv-hero-video-caption {
    margin-top: 14px;
    gap: 12px;
  }
  .rv-hero-video-caption::before { width: 18px; }
  .rv-hero-video-caption-text {
    font-size: 9px;
    letter-spacing: 0.16em;
  }
}


/* ════════════════════════════════════════════════════════════════════
   v6.42: Dormot cinematic — UPGRADED

   Integrates the Dormot Holland logo INTO the video frame (was sitting
   sad on a white strip below). Brand red (#E2231A) replaces the orange
   accents so the section reads as Dormot, not generic VBE.

   Layout:
     · TOP-LEFT  → Dormot Holland wordmark logo, sized to feel like an
                   editorial masthead (not a watermark), with a small
                   "Proud brand owner" tagline in mono caps red
     · TOP-RIGHT → location/date mark in mono caps + amber hairline
     · BOTTOM    → caption strip with red accent (full-width band)
   ════════════════════════════════════════════════════════════════════ */

.dormot-cinematic {
  position: relative;
  background: #001540;
  overflow: hidden;
  padding: 0 !important;
}
.dormot-cinematic-stage {
  position: relative;
  width: 100%;
  line-height: 0;
}
.dormot-cinematic-stage video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 80vh;
  object-fit: cover;
  background: #000;
}

/* Subtle vignette to ensure logo + marks read on any frame */
.dormot-cinematic-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0) 22%,
      rgba(0, 0, 0, 0) 78%,
      rgba(0, 21, 64, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.dormot-cinematic-stage::after { display: none; }

/* ── Logo overlay (top-left) — the editorial masthead ───────────── */
.dormot-cinematic-brand {
  position: absolute;
  top: 36px;
  left: 44px;
  z-index: 4;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.dormot-cinematic-brand img {
  width: clamp(180px, 18vw, 260px);
  height: auto;
  display: block;
  /* Soft drop-shadow so the red wordmark pops on bright video frames
     without looking like a corporate watermark slap-on. */
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.45));
}
.dormot-cinematic-brand-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
  padding-left: 4px;
}
.dormot-cinematic-brand-tagline::before {
  content: '';
  width: 22px;
  height: 1px;
  background: #E2231A;
}

/* ── Top-right editorial mark — location + date ─────────────────── */
.dormot-cinematic-mark {
  position: absolute;
  top: 44px;
  right: 44px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  pointer-events: none;
}
.dormot-cinematic-mark::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #F6960A;
  flex-shrink: 0;
}
.dormot-cinematic .dormot-cinematic-mark-text {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}

/* ── Bottom caption strip — Dormot RED accent (was orange) ───────── */
.dormot-cinematic-caption {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 56px 28px;
}
.dormot-cinematic .dormot-cinematic-caption-l {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E2231A;
  display: flex;
  align-items: center;
  gap: 14px;
}
.dormot-cinematic .dormot-cinematic-caption-l::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #E2231A;
  flex-shrink: 0;
}
.dormot-cinematic .dormot-cinematic-caption-r {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 960px) {
  .dormot-cinematic-stage video { max-height: 72vh; }
  .dormot-cinematic-brand { top: 22px; left: 24px; gap: 8px; }
  .dormot-cinematic-brand img { width: clamp(140px, 28vw, 180px); }
  .dormot-cinematic-brand-tagline { font-size: 9px; letter-spacing: 0.18em; }
  .dormot-cinematic-brand-tagline::before { width: 16px; }
  .dormot-cinematic-mark { top: 22px; right: 24px; }
  .dormot-cinematic-mark::before { width: 22px; }
  .dormot-cinematic .dormot-cinematic-mark-text { font-size: 9px; letter-spacing: 0.18em; }
  .dormot-cinematic-caption {
    padding: 18px 32px 22px;
  }
}

@media (max-width: 560px) {
  .dormot-cinematic-stage video { max-height: none; aspect-ratio: 4 / 3; }
  .dormot-cinematic-brand { top: 14px; left: 16px; gap: 6px; }
  .dormot-cinematic-brand img { width: 120px; }
  .dormot-cinematic-brand-tagline { display: none; }
  /* On narrow screens move the mark below the logo so neither crowds */
  .dormot-cinematic-mark {
    top: auto;
    bottom: 8px;
    right: 16px;
  }
  .dormot-cinematic-mark::before { width: 14px; }
  .dormot-cinematic-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 20px 18px;
  }
  .dormot-cinematic .dormot-cinematic-caption-l,
  .dormot-cinematic .dormot-cinematic-caption-r {
    font-size: 9px;
    letter-spacing: 0.16em;
  }
}

/* ── Hide the now-redundant logo strip below the cinematic ───────── */
.dormot-page .dormot-logo-strip { display: none; }

/* ════════════════════════════════════════════════════════════════════
   v6.46: GLOBAL EDITORIAL PILL OVERRIDE
   
   Sweeps up all remaining SaaS-pill patterns that escaped earlier passes:
   .section-eyebrow variants (marine, dormot-section, dimsheet, abb-eyebrow-red)
   and .on-request-pill. Normalises them to mono-caps + amber hairline.
   
   Loaded after all other rules → wins on cascade order even where
   variant rules use !important.
   ════════════════════════════════════════════════════════════════════ */

.section-eyebrow,
.section-eyebrow.marine-eyebrow,
.section-eyebrow.dormot-section-eyebrow,
.section-eyebrow.dimsheet-eyebrow,
.section-eyebrow.abb-eyebrow-red,
.marine-eyebrow,
.dormot-section-eyebrow,
.dimsheet-eyebrow,
.abb-eyebrow-red {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 0 0 0 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: 'IBM Plex Sans', system-ui, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--accent) !important;
  margin-bottom: 16px !important;
  position: static !important;
}
.section-eyebrow::before,
.marine-eyebrow::before,
.dormot-section-eyebrow::before,
.dimsheet-eyebrow::before,
.abb-eyebrow-red::before {
  content: '' !important;
  position: static !important;
  width: 28px !important;
  height: 1px !important;
  background: currentColor !important;
  flex-shrink: 0 !important;
  animation: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  opacity: 1 !important;
  display: block !important;
}
/* Per-variant accent colors */
.marine-eyebrow { color: #F6960A !important; }
.dormot-section-eyebrow { color: #E2231A !important; }
.dimsheet-eyebrow { color: #F6960A !important; }
.abb-eyebrow-red { color: #E2231A !important; }

/* Kill the marine eyebrow pulse animation */


/* on-request-pill → editorial inline mark */
.on-request-pill,
.marine-section .on-request-pill,
.trident-section .on-request-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 14px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-family: 'IBM Plex Sans', system-ui, sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}
.on-request-pill::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.on-request-pill svg {
  display: none !important;  /* kill the icon */
}

/* ════════════════════════════════════════════════════════════════════
   v6.47: Dormot hero — STATE-OF-THE-ART editorial layout
   
   Two-column composition that uses the full viewport width:
   · LEFT (60%): existing copy with larger, tighter typography
   · RIGHT (40%): vertical "specimen catalogue" of the 3 product lines
     (Pro / Core / Renew) as Patek-catalog-style tiles with number,
     name, brief characteristic, hairline divider, and power range.
     
   Each tier has its own accent color (Pro red, Core mid-red, Renew
   silver-grey) that bleeds through the connector hairlines.
   
   Stats row stays full-width below the two-column composition.
   ════════════════════════════════════════════════════════════════════ */

/* Use a wider container — text + specimens need real estate */
.dormot-hero {
  padding: 88px 56px 80px !important;
}
.dormot-hero-inner {
  max-width: 1480px !important;
}
.dormot-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
  margin-bottom: 64px;
}

/* Larger, tighter h1 — magazine-cover feel */
.dormot-hero h1 {
  font-size: clamp(2.5rem, 4.6vw, 4rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.028em !important;
  margin: 0 0 28px !important;
  max-width: none !important;
}

/* CTAs cluster — adjusted spacing */
.dormot-hero-cta {
  margin-top: 28px !important;
}
/* Editorial ATEX link — strip the inline pill style via class spec */
.dormot-hero .dormot-btn-atex {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.82);
  padding: 12px 0;
  border-radius: 0;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 18px;
}
.dormot-hero .dormot-btn-atex::before {
  content: '';
  width: 22px;
  height: 1px;
  background: #E2231A;
}
.dormot-hero .dormot-btn-atex svg { display: none; }
.dormot-hero .dormot-btn-atex:hover { color: #E2231A; }

/* ── RIGHT COLUMN: SPECIMEN CATALOGUE ────────────────────────────── */
.dormot-hero-specimen {
  position: relative;
  padding-top: 4px;
}
.dormot-specimen-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.dormot-specimen-head-rule {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.42);
  flex-shrink: 0;
}
.dormot-specimen-head-text {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

/* Each tier: vertical card, sharp corners, hairline borders.
   Numbered like a specimen entry in a museum catalogue. */
.dormot-tier {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto auto;
  column-gap: 22px;
  row-gap: 4px;
  padding: 22px 22px 22px 4px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  position: relative;
  transition: background-color .2s ease, padding-left .2s ease;
}
.dormot-tier:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.dormot-tier:hover {
  background: rgba(255,255,255,0.02);
  padding-left: 12px;
}

.dormot-tier-num {
  grid-column: 1;
  grid-row: 1 / span 4;
  align-self: start;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
  margin-top: 6px;
}
.dormot-tier-name {
  grid-column: 2;
  grid-row: 1;
  font-family: 'IBM Plex Sans', -apple-system, sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: #fff;
  line-height: 1.15;
}
.dormot-tier-desc {
  grid-column: 2;
  grid-row: 2;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-top: 6px;
}
.dormot-tier-rule {
  grid-column: 2;
  grid-row: 3;
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 14px 0 12px;
}
.dormot-tier-spec {
  grid-column: 2;
  grid-row: 4;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.78);
}

/* Per-tier accent colors — bleed through the rule + number */
.dormot-tier--pro:hover .dormot-tier-num { color: #E2231A; }
.dormot-tier--pro:hover .dormot-tier-rule { background: #E2231A; }
.dormot-tier--pro:hover .dormot-tier-spec { color: #fca5a5; }

.dormot-tier--core:hover .dormot-tier-num { color: #c91e15; }
.dormot-tier--core:hover .dormot-tier-rule { background: #c91e15; }
.dormot-tier--core:hover .dormot-tier-spec { color: #f3a39e; }

.dormot-tier--renew:hover .dormot-tier-num { color: #9ca3af; }
.dormot-tier--renew:hover .dormot-tier-rule { background: #9ca3af; }
.dormot-tier--renew:hover .dormot-tier-spec { color: #d1d5db; }

/* Stats row stays full-width, larger */
.dormot-hero-stats {
  margin-top: 0 !important;
}

@media (max-width: 1100px) {
  .dormot-hero-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .dormot-hero-specimen { max-width: 520px; }
}
@media (max-width: 720px) {
  .dormot-hero { padding: 56px 22px 56px !important; }
  .dormot-hero-layout { gap: 40px; margin-bottom: 40px; }
  .dormot-specimen-head { margin-bottom: 24px; }
  .dormot-tier { padding: 18px 0; column-gap: 16px; }
  .dormot-tier-num { font-size: 22px; }
  .dormot-tier-name { font-size: 19px; }
  .dormot-hero .dormot-btn-atex { margin-left: 0; }
}


/* ════════════════════════════════════════════════════════════════════
   v6.47b: Dormot.nl reference link
   
   Sits below the three specimen tiles as a discreet reference to the
   full Dormot brand site. Mono-caps + arrow, in the same vocabulary as
   the editorial eyebrows elsewhere on the site.
   ════════════════════════════════════════════════════════════════════ */
.dormot-hero-specimen-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 18px 0;
  text-decoration: none;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease, padding-left 0.2s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.dormot-hero-specimen-link:hover {
  color: #E2231A;
  padding-left: 6px;
}
.dormot-hero-specimen-link-domain {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-left: 4px;
}
.dormot-hero-specimen-link:hover .dormot-hero-specimen-link-domain {
  color: rgba(255, 255, 255, 0.92);
}
.dormot-hero-specimen-arrow {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 14px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.dormot-hero-specimen-link:hover .dormot-hero-specimen-arrow {
  transform: translateX(8px);
}

/* ════════════════════════════════════════════════════════════════════
   v6.48: Special-product PIECE section
   
   Companion to bh-piece (boegschroef) and rv-piece (revisie) so the
   rem / polenomschakelbare / drie-toerige pages get equivalent
   technical-illustration sections. SVG-based schematics rather than
   video — built as engineering drawings with hairline rules and
   numbered callouts. Patek catalogue feel.
   ════════════════════════════════════════════════════════════════════ */

.sp-piece{
  background:#001540;
  background:
    linear-gradient(135deg,#082158 0%,#001540 50%,#082158 100%);
  padding:100px 0 110px;
  position:relative;
  overflow:hidden;
}
.sp-piece::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size:60px 60px;
}
.sp-piece-inner{
  max-width:1180px;margin:0 auto;padding:0 48px;
  position:relative;z-index:1;
}

/* Header block: tag + headline + lead */
.sp-piece-tag{
  display:inline-flex;align-items:center;gap:14px;
  font-family:'IBM Plex Sans', system-ui, sans-serif;
  font-size:11px;font-weight:700;
  letter-spacing:.22em;text-transform:uppercase;
  color:#F6960A;margin-bottom:24px;
}
.sp-piece-tag::before{
  content:'';width:28px;height:1px;background:#F6960A;flex-shrink:0;
}
.sp-piece-headline{
  font-size:clamp(2rem,3.5vw,3rem);font-weight:700;
  letter-spacing:-.02em;line-height:1.05;
  color:#fff;margin:0 0 16px;max-width:760px;
}
.sp-piece-lead{
  font-size:1.05rem;line-height:1.7;
  color:rgba(255,255,255,.7);
  margin:0 0 56px;max-width:640px;
}

/* Schematic stage: solid background canvas for the SVG drawing */
.sp-piece-stage{
  position:relative;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.08);
  padding:48px 56px 56px;
  border-radius:2px;
}

/* Top-left dossier */
.sp-piece-dossier{
  position:absolute;top:18px;left:24px;
  display:flex;flex-direction:column;gap:6px;
  font-family:'IBM Plex Sans', system-ui, sans-serif;
  font-size:9px;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
  color:rgba(255,255,255,.55);
}
.sp-piece-dossier::before{
  content:'';width:22px;height:1px;background:#F6960A;margin-bottom:4px;
}
.sp-piece-dossier-main{color:rgba(255,255,255,.85);}

/* The schematic SVG itself */
.sp-piece-svg{
  display:block;
  width:100%;
  height:auto;
  max-width:880px;
  margin:48px auto 0;
}

/* Callout labels positioned over/around the SVG */
.sp-piece-callouts{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  margin-top:48px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.12);
}
.sp-piece-callout{
  padding:0 24px;
  border-right:1px solid rgba(255,255,255,.10);
}
.sp-piece-callout:first-child{padding-left:0;}
.sp-piece-callout:last-child{border-right:none;padding-right:0;}
.sp-piece-callout-num{
  font-family:'IBM Plex Sans', system-ui, sans-serif;
  font-size:11px;font-weight:700;letter-spacing:.22em;
  color:#F6960A;margin-bottom:6px;display:block;
}
.sp-piece-callout-name{
  font-size:1rem;font-weight:600;color:#fff;
  letter-spacing:-.005em;display:block;margin-bottom:6px;
}
.sp-piece-callout-desc{
  font-family:'IBM Plex Sans', system-ui, sans-serif;
  font-size:10.5px;font-weight:500;letter-spacing:.04em;
  color:rgba(255,255,255,.6);line-height:1.5;
  display:block;
}

@media (max-width:860px){
  .sp-piece{padding:60px 0 70px;}
  .sp-piece-inner{padding:0 24px;}
  .sp-piece-stage{padding:40px 24px 32px;}
  .sp-piece-callouts{grid-template-columns:1fr 1fr;row-gap:24px;}
  .sp-piece-callout{
    padding:0 16px !important;
    border-right:none !important;
  }
  .sp-piece-callout:nth-child(odd){
    border-right:1px solid rgba(255,255,255,.10) !important;
  }
}
@media (max-width:520px){
  .sp-piece-callouts{grid-template-columns:1fr;}
  .sp-piece-callout{
    border-right:none !important;
    padding:16px 0 !important;
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .sp-piece-callout:last-child{border-bottom:none;}
}

/* ============================================================
   TESTIMONIALS v6.81 — named clients, 3-koloms, bedrijfsnaam-emphasis
   ============================================================ */
.testimonials-grid.testimonials-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.testimonial-card figcaption {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.testimonial-card-logo {
  display: block;
  height: 22px;
  width: auto;
  max-width: 78%;
  margin-bottom: 2px;
  opacity: .92;
}
.testimonial-card-loc {
  display: block;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  line-height: 1.35;
}
.testimonial-card figcaption .testimonial-card-attribution {
  font-size: 12px;
  color: rgba(255,255,255,.62);
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
@media (max-width: 1000px) {
  .testimonials-grid.testimonials-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testimonials-grid.testimonials-grid-3 { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCTLIJST INKLAPBAAR (v6.81)
   Lijst standaard dicht — minder overweldigend, opent op
   interactie. Inhoud blijft in DOM voor crawlers/indexering.
   ============================================================ */
.pricelist-collapsible[hidden] { display: none; }

.pricelist-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 8px 0 4px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #d8dee8;
  border-left: 3px solid #002060;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.pricelist-toggle:hover {
  border-color: #002060;
  box-shadow: 0 6px 22px rgba(0,32,96,.08);
  transform: translateY(-1px);
}
.pricelist-toggle-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,32,96,.06);
  border-radius: 8px;
  color: #002060;
  transition: transform .25s ease, background .2s ease;
}
.pricelist-toggle-icon svg { width: 22px; height: 22px; }
.pricelist-toggle[aria-expanded="true"] .pricelist-toggle-icon { transform: rotate(180deg); }
.pricelist-toggle-label { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pricelist-toggle-label strong {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0a1424;
  line-height: 1.25;
}
.pricelist-toggle-sub {
  font-size: .8125rem;
  color: #667;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  letter-spacing: .01em;
}
.pricelist-toggle-close { display: none; }
.pricelist-toggle[aria-expanded="true"] .pricelist-toggle-open { display: none; }
.pricelist-toggle[aria-expanded="true"] .pricelist-toggle-close { display: block; }
@media (max-width: 560px) {
  .pricelist-toggle { padding: 16px; gap: 12px; }
  .pricelist-toggle-label strong { font-size: .9375rem; }
  .pricelist-toggle-sub { font-size: .75rem; }
}

/* v6.81: externe Dormot-merksite links */
.dormot-brand-sitelink {
  display: inline-flex;
  align-items: center;
  margin-left: 18px;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--accent, #f6960a);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, opacity .2s ease;
}
.dormot-brand-sitelink:hover { border-bottom-color: currentColor; opacity: .85; }
.footer-extlink { font-weight: 600; }
@media (max-width: 560px) {
  .dormot-brand-sitelink { margin-left: 0; margin-top: 12px; }
}

/* Subtiele JTF-cofinancieringsregel onder de lidmaatschappen-grid */
.memberships-jtf {
  margin: var(--space-4) 0 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: .04em;
  color: var(--text-muted);
  opacity: .85;
}

/* ============================================================
   NAV-OVERLAP FIX (multilang): bij 901-1199px botste in langere
   talen (DE/EL/PL) de calc-pill + CTA met het logo. Conform de
   bestaande intentie ("calc verdwijnt eerst") verbergen we de
   calc-pill volledig in deze band. Hoogste specificiteit + laatst
   in de cascade, zodat het de eerdere icon-only regels overschrijft.
   Calc blijft bereikbaar via het Productlijnen-menu (#calc).
   ============================================================ */
@media (min-width: 901px) and (max-width: 1279px) {
  header.site-header .header-actions .nav-calc-highlight { display: none !important; }
}

/* ============================================================
   NAV-OVERLAP FIX 2 (wijde schermen): de .container is gecapt op
   1280px, maar de logo-tagline verscheen op viewport >=1400px.
   In die 1280px-container past de tagline NIET naast de volledige
   nav in langere talen (FR/DE/EL/PL) -> tagline botste met de nav
   en "Over ons" knelde tegen de calc-pill. Heritage "sinds 1898"
   staat al in de topbar + logo-alt, dus we verbergen de decoratieve
   tagline op desktop volledig. Laatst in de cascade = wint.
   ============================================================ */
header.site-header .logo-tagline { display: none !important; }

/* ============================================================
   NAV-OVERLAP FIX 3: in de krappe band (960-1279px) past de 4e
   top-level link (Over ons / About) er in langere talen niet bij.
   Conform bestaande aanpak (#partner/#contact verbergen <1200) tonen
   we de About-link pas >=1280px; daaronder blijft hij bereikbaar via
   het Kennisbank-menu (Historie) en de footer. Zo blijft de nav in
   elke taal binnen de 1280px-container.
   ============================================================ */
@media (min-width: 960px) and (max-width: 1279px) {
  header.site-header .main-nav > a[data-i18n="nav.about"] { display: none !important; }
}

/* ===== v7.7: Energiebesparingscalculator — SEO/GEO content (rekenmethode, voorbeeld, FAQ) ===== */
.calc-seo{ max-width:1100px; margin:48px auto 0; padding-top:32px; border-top:1px solid rgba(255,255,255,.14); }
.calc-seo-eyebrow{ display:block; font-family:'IBM Plex Sans', system-ui, sans-serif; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--accent,#F6960A); margin-bottom:18px; }
.calc-seo-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.calc-seo-col h3{ font-size:1.05rem; font-weight:600; color:#fff; margin:0 0 10px; }
.calc-seo-col p{ font-size:.95rem; line-height:1.65; color:rgba(255,255,255,.80); margin:0; }
.calc-seo-faq-h{ font-size:1.05rem; font-weight:600; color:#fff; margin:40px 0 14px; }
.calc-seo-faq details{ border-top:1px solid rgba(255,255,255,.12); padding:14px 0; }
.calc-seo-faq details:last-child{ border-bottom:1px solid rgba(255,255,255,.12); }
.calc-seo-faq summary{ cursor:pointer; font-weight:500; color:#fff; font-size:.95rem; list-style:none; position:relative; padding-right:24px; }
.calc-seo-faq summary::-webkit-details-marker{ display:none; }
.calc-seo-faq summary::after{ content:'+'; position:absolute; right:0; top:-2px; font-size:1.2rem; color:rgba(255,255,255,.55); transition:transform .2s; }
.calc-seo-faq details[open] summary::after{ content:'–'; }
.calc-seo-faq details p{ margin:10px 0 0; font-size:.92rem; line-height:1.6; color:rgba(255,255,255,.72); }
@media (max-width:768px){ .calc-seo-grid{ grid-template-columns:1fr; gap:28px; } .calc-seo{ margin-top:36px; } }

/* v8.7: Kennisbank overview page */
.kennisbank-page-main { padding: 140px 0 60px; }
.kennisbank-page-header { max-width: 720px; margin-bottom: 48px; }
.kennisbank-page-header .section-eyebrow { margin-bottom: 12px; }
.kennisbank-page-header .section-title { font-size: 2.4rem; margin-bottom: 16px; }
.kennisbank-page-main .kb-card-featured { margin-bottom: 40px; }
.kennisbank-page-main .kennisbank-grid { margin-bottom: 60px; }
@media (max-width: 768px) {
  .kennisbank-page-main { padding: 110px 0 40px; }
  .kennisbank-page-header .section-title { font-size: 1.6rem; }
}

/* v8.7: CTA-kaart in kennisbank-grid (12e item, vult de grid op 4×3) */
.kb-card-cta {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary, #002060) 0%, #0a3080 100%);
  border: 1px solid rgba(255,255,255,.08); border-radius: 14px;
  text-decoration: none; color: #fff; min-height: 260px;
  transition: transform .2s, box-shadow .2s;
}
.kb-card-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,32,96,.25); }
.kb-card-cta-inner { text-align: center; padding: 32px 24px; }
.kb-card-cta-count {
  display: inline-block; font-family: 'IBM Plex Sans', system-ui, sans-serif; font-size: 2.8rem; font-weight: 700;
  color: var(--accent, #F6960A); line-height: 1; margin-bottom: 8px;
}
.kb-card-cta-title { font-size: 1.15rem; font-weight: 600; margin: 8px 0 6px; color: #fff; }
.kb-card-cta-sub { font-size: .88rem; color: rgba(255,255,255,.65); margin: 0 0 16px; }
.kb-card-cta-arrow {
  display: inline-block; font-size: 1.6rem; color: var(--accent, #F6960A);
  transition: transform .2s;
}
.kb-card-cta:hover .kb-card-cta-arrow { transform: translateX(6px); }

/* "Bekijk alle artikelen" knop onder de grid */
.kennisbank-section-cta { text-align: center; margin: 32px 0 0; }
.kennisbank-view-all-btn {
  display: inline-block; padding: 14px 36px; font-size: 1rem; font-weight: 600;
  color: var(--primary, #002060); background: transparent;
  border: 2px solid var(--primary, #002060); border-radius: 8px;
  text-decoration: none; letter-spacing: .02em;
  transition: background .2s, color .2s;
}
.kennisbank-view-all-btn:hover { background: var(--primary, #002060); color: #fff; }

/* v8.7: Kennisbank overview page — editorial hero */
.kennisbank-page-main { padding: 0; }
.kennisbank-hero {
  background: linear-gradient(160deg, var(--primary, #002060) 0%, #0a1a40 100%);
  color: #fff; padding: 140px 0 64px; position: relative; overflow: hidden;
}
.kennisbank-hero::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0;
  width: 40%; background: linear-gradient(135deg, transparent 40%, rgba(246,150,10,.06) 100%);
  pointer-events: none;
}
.kennisbank-hero .section-eyebrow {
  color: var(--accent, #F6960A); font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  display: block; margin-bottom: 16px;
}
.kennisbank-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15;
  margin: 0 0 20px; max-width: 640px; color: #fff;
}
.kennisbank-hero .section-lead { color: rgba(255,255,255,.78); }
.kennisbank-hero .section-lead {
  font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 580px;
  line-height: 1.65; margin: 0;
}
.kennisbank-hero-count {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px; padding: 10px 20px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; font-family: 'IBM Plex Sans', system-ui, sans-serif;
}
.kennisbank-hero-count strong {
  font-size: 1.6rem; color: var(--accent, #F6960A); font-weight: 700;
}
.kennisbank-hero-count span { font-size: .9rem; color: rgba(255,255,255,.7); }

.kennisbank-page-grid-section { padding: 56px 0 80px; background: var(--bg-light, #f7f8fa); }
.kennisbank-page-grid-section .kennisbank-grid { margin: 0; }
.kennisbank-page-grid-section .kb-card-featured { margin-bottom: 32px; }
@media (max-width: 768px) {
  .kennisbank-hero { padding: 110px 0 40px; }
  .kennisbank-hero h1 { font-size: 1.7rem; }
  .kennisbank-page-grid-section { padding: 32px 0 48px; }
}

/* v9.7: Uitklapbaar volledig site-menu in het knooppunt */
.shortcuts-lead { max-width: 620px; margin: 12px auto 0; color: var(--text-muted, #5a6478); font-size: 1rem; line-height: 1.55; text-align: center; }
.sitemenu { margin-top: var(--space-5, 40px); border-top: 1px solid var(--border, #e4e7ef); padding-top: var(--space-4, 28px); }
.sitemenu-toggle {
  display: flex; align-items: center; gap: 10px; margin: 0 auto;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--primary, #002060);
  padding: 10px 18px; border-radius: 8px; transition: background .15s;
}
.sitemenu-toggle:hover { background: rgba(0,32,96,.04); }
.sitemenu-chevron { width: 18px; height: 18px; transition: transform .25s ease; }
.sitemenu-toggle[aria-expanded="true"] .sitemenu-chevron { transform: rotate(180deg); }
.sitemenu-panel {
  display: grid; grid-template-columns: 1fr; gap: var(--space-4, 28px);
  margin-top: var(--space-4, 28px); animation: sitemenu-in .3s ease;
}
@media (min-width: 720px) { .sitemenu-panel { grid-template-columns: repeat(3, 1fr); } }
@keyframes sitemenu-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.sitemenu-col-title {
  font-family: 'IBM Plex Sans', system-ui, sans-serif; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent, #F6960A); margin: 0 0 12px; font-weight: 600;
}
.sitemenu-link {
  display: block; width: 100%; text-align: left; padding: 9px 0;
  color: var(--text, #1a2030); text-decoration: none; font-size: .95rem;
  border: none; background: none; cursor: pointer; font-family: inherit;
  border-bottom: 1px solid transparent; transition: color .15s, padding-left .15s;
}
.sitemenu-link:hover { color: var(--accent-dark, #d97e00); padding-left: 6px; }
.sitemenu-link-btn { line-height: 1.4; }

/* ============ v10: ROUTEKIEZER ============ */
.router-section .shortcuts-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.router-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; }
.rcard-products {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-md); display: flex; flex-direction: column;
  position: relative; overflow: hidden; transition: box-shadow var(--transition); text-decoration: none;
}
.rcard-products::before { content:""; position:absolute; left:0; top:0; height:3px; width:100%; background:var(--accent); transform:scaleX(0); transform-origin:left; transition:transform var(--transition-slow); }
.rcard-products:hover { box-shadow: var(--shadow-lg); }
.rcard-products:hover::before { transform: scaleX(1); }
.rcard-products-head { margin-bottom: 22px; }
.prodlines { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.prodline { display:flex; align-items:center; gap:14px; padding:14px 16px; border:1px solid var(--border); border-radius:var(--radius); background:var(--bg-soft); transition:border-color var(--transition),background var(--transition),transform var(--transition); cursor:pointer; }
.prodline:hover { border-color: var(--accent); background:#fff; transform: translateX(3px); }
.prodline-ico { width:40px; height:40px; border-radius:9px; background:var(--primary); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background var(--transition); }
.prodline-ico svg { width:20px; height:20px; stroke:#fff; }
.prodline:hover .prodline-ico { background: var(--accent); }
.prodline:hover .prodline-ico svg { stroke: var(--primary); }
.prodline-txt { flex:1; display:flex; flex-direction:column; gap:2px; }
.prodline-txt strong { font-size:1rem; color:var(--primary); font-weight:600; }
.prodline-txt small { font-size:.8rem; color:var(--text-muted); }
.prodline-arr { width:18px; height:18px; color:var(--text-subtle); transition:color var(--transition),transform var(--transition); flex-shrink:0; }
.prodline:hover .prodline-arr { color:var(--accent); transform:translateX(3px); }
.router-side { display:grid; grid-template-columns:1fr 1fr; gap:0; border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; background:var(--bg); box-shadow:var(--shadow-md); }
.router-side .rcard { border-right:1px solid var(--border); border-bottom:1px solid var(--border); }
.router-side .rcard:nth-child(even) { border-right:none; }
.router-side .rcard:nth-child(3), .router-side .rcard:nth-child(4) { border-bottom:none; }
.rcard { position:relative; padding:26px 24px; background:var(--bg); cursor:pointer; transition:background var(--transition); overflow:hidden; text-align:left; display:flex; flex-direction:column; border:none; font-family:inherit; width:100%; }
.rcard::before { content:""; position:absolute; left:0; top:0; height:3px; width:100%; background:var(--accent); transform:scaleX(0); transform-origin:left; transition:transform var(--transition-slow); }
.rcard:hover { background:var(--bg-soft); }
.rcard:hover::before { transform:scaleX(1); }
.rcard-num { font-family:'IBM Plex Sans', system-ui, sans-serif; font-size:.72rem; color:var(--text-subtle); letter-spacing:.1em; }
.rcard-icon { width:46px; height:46px; border-radius:11px; background:var(--primary); display:flex; align-items:center; justify-content:center; margin:14px 0 16px; transition:background var(--transition),transform var(--transition); }
.rcard-icon svg { width:23px; height:23px; stroke:#fff; }
.rcard:hover .rcard-icon, .rcard-products:hover .rcard-icon { background:var(--accent); transform:translateY(-2px); }
.rcard:hover .rcard-icon svg, .rcard-products:hover .rcard-icon svg { stroke:var(--primary); }
.rcard-title { font-size:1.18rem; font-weight:700; color:var(--primary); margin-bottom:8px; overflow-wrap:break-word; word-break:break-word; hyphens:auto; }
.rcard-desc { font-size:.88rem; color:var(--text-muted); line-height:1.5; flex:1; }
.rcard-cta { margin-top:16px; font-family:'IBM Plex Sans', system-ui, sans-serif; font-size:.78rem; font-weight:600; color:var(--accent); display:flex; align-items:center; gap:7px; transition:gap var(--transition); }
.rcard:hover .rcard-cta { gap:12px; }
@media(max-width:980px){ .router-layout{ grid-template-columns:1fr; } }
@media(max-width:560px){ .router-side{ grid-template-columns:1fr; } .router-side .rcard{ border-right:none!important; border-bottom:1px solid var(--border)!important; } .router-side .rcard:last-child{ border-bottom:none!important; } }

/* ============ v10: OVERKOEPELEND SECTIE-RITME ============ */
/* Eén consistente verticale ademing voor alle hoofdsecties, zodat de pagina als één geheel leest. */
.intro-section,
.faq-section,
.dimsheet-section,
.calc-section,
.cases-section,
.pricelist-section,
.partner-section,
.contact-section,
.memberships-section,
.testimonials-section,
.haven-section {
  padding-top: clamp(72px, 8vw, 112px) !important;
  padding-bottom: clamp(72px, 8vw, 112px) !important;
}
/* Routekiezer iets compacter want hij volgt direct op de hero */
.router-section {
  padding-top: clamp(56px, 6vw, 88px) !important;
  padding-bottom: clamp(72px, 8vw, 112px) !important;
}
/* Geharmoniseerde navy-tinten: alle donkere secties dezelfde basis i.p.v. 4 verschillende gradients */
.calc-section,
.partner-section,
.testimonials-section {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #00112e 100%) !important;
}
.contact-section {
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
}

/* ============ v10: EYEBROW-HARMONISATIE ============ */
/* Alle losse eyebrow-varianten krijgen dezelfde mono-amber stijl met streepje,
   zodat elke sectie-kop consistent is met de routekiezer. */
.workshop-eyebrow,
.workshop-eng-eyebrow,
.haven-eyebrow,
.haven-intl-eyebrow,
.calc-marketing-eyebrow,
.calc-results-eyebrow,
.calc-seo-eyebrow,
.memberships-eyebrow,
.testimonials-eyebrow {
  font-family: 'IBM Plex Sans', system-ui, sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 0.16em !important;
  font-size: 0.72rem !important;
  font-weight: 600;
  color: var(--accent) !important;
  position: relative;
  padding-left: 26px;
  display: inline-flex;
  align-items: center;
}
.workshop-eyebrow::before,
.workshop-eng-eyebrow::before,
.haven-eyebrow::before,
.haven-intl-eyebrow::before,
.calc-marketing-eyebrow::before,
.calc-results-eyebrow::before,
.calc-seo-eyebrow::before,
.memberships-eyebrow::before,
.testimonials-eyebrow::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--accent);
}
/* Op donkere (navy) secties moet de eyebrow leesbaar amber blijven — geen wijziging nodig,
   amber heeft genoeg contrast op navy. */

/* ============ v10: KAART-HARMONISATIE (alleen omhulling, niet de interne layout) ============ */
/* Consistente radius en hover-accent over alle kaarttypes, in VBE-kleuren. */
.workshop-card {
  border-radius: 12px !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease !important;
}
.workshop-card:hover {
  border-color: var(--accent) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,32,96,.10);
}
.membership-card {
  border-radius: 12px !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease !important;
}
/* membership-card gebruikte rood (#E30613) als hover — corrigeren naar VBE-amber */
.membership-card:hover {
  border-color: var(--accent) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,32,96,.10);
}
.testimonial-card {
  border-radius: 12px !important;
  border-top: 3px solid var(--accent) !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

/* ============ v10: ZACHTE SECTIE-OVERGANGEN ============ */
/* Subtiele diepte-scheiding waar lichte en navy secties elkaar raken,
   zodat de overgang vloeiend oogt i.p.v. een harde lijn. Alleen op de lichte
   secties (de navy-secties hebben eigen pseudo-decoratie + overflow:hidden). */
.faq-section,
.cases-section,
.memberships-section {
  position: relative;
}
/* Zachte inwaartse schaduw bovenaan lichte secties die net ná een navy-sectie komen */
.faq-section::before,
.cases-section::before,
.memberships-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(0,13,46,.05) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
/* Zorg dat de inhoud boven de overgangsschaduw blijft */
.faq-section > *,
.cases-section > *,
.memberships-section > * {
  position: relative;
  z-index: 1;
}

/* ============ v10.8: SUBTIELE MEMBERSHIPS-STRIP IN FOOTER ============ */
.footer-memberships {
  margin: 56px 0 8px;
  padding: 36px 0 8px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-memberships-label {
  display: block;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
}
.footer-memberships-items {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 40px;
}
.footer-mb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
}
.footer-mb-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(246,150,10,.10);
  color: var(--accent);
}
.footer-mb-ico svg { width: 18px; height: 18px; }
.footer-mb-ico-empty { background: rgba(255,255,255,.06); }
.footer-mb-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.footer-mb-item strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.footer-mb-item .footer-mb-text span {
  font-size: 0.7rem;
  color: rgba(255,255,255,.42);
}
@media (max-width: 640px) {
  .footer-memberships { margin-top: 44px; padding-top: 28px; }
  .footer-memberships-items { gap: 18px 24px; }
}

/* ============ v10.8: GEÏNTEGREERDE BEWIJS-ZONE (cases + testimonials) ============ */
.proof-section { background: var(--bg-soft); }
.proof-section .section-eyebrow,
.proof-section .section-title,
.proof-section .section-lead { text-align: center; }
.proof-section .section-eyebrow {
  display: block !important;
  padding-left: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto !important;
  margin-right: auto !important;
}
.proof-section .section-eyebrow::before {
  display: block !important;
  position: static !important;
  content: '' !important;
  width: 28px !important;
  height: 1px !important;
  background: var(--accent) !important;
  margin: 0 auto 12px !important;
}
.proof-section .section-title { max-width: 820px; margin-left: auto; margin-right: auto; }
.proof-section .section-lead { max-width: 720px; margin-left: auto; margin-right: auto; }
.proof-section .cases-grid { margin-top: 48px; }

/* Quote-rij onder de cases */
.proof-voices { margin-top: clamp(56px, 7vw, 80px); }
.proof-voices-title {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}
/* Testimonial-cards in de lichte proof-zone: omdraaien naar wit-op-licht */
.proof-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proof-section .testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.proof-section .testimonial-card blockquote { color: var(--text); }
.proof-section .testimonial-card-attribution,
.proof-section .testimonial-card-author { color: var(--primary); }
.proof-section .testimonial-card-loc { color: var(--text-muted); }
.proof-section .testimonial-card-quote-mark { color: var(--accent); opacity: .5; }
.proof-section .testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* CTA onderaan de zone */
.proof-cta { text-align: center; margin-top: clamp(40px, 5vw, 56px); }
.proof-cta-btn { display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 900px) {
  .proof-section .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============ v11.1: SCHOON FOOTER-LOGO (geen roterende badge meer) ============ */
.footer-logo-wrap-clean {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-3);
}
.footer-logo-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}
/* Footer-memberships: meer lucht boven, zodat het niet op de kolommen plakt */
.footer-memberships {
  margin: 8px 0 8px;
  padding: 32px 0 4px;
  border-top: 1px solid rgba(255,255,255,.10);
}

/* ============ v11.2: PRODUCTEN-KAART MET 6 LIJNEN (2 kolommen, overzichtelijk) ============ */
.prodlines-6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}
.prodlines-6 .prodline {
  padding: 14px 16px;
  gap: 13px;
}
.prodlines-6 .prodline-ico {
  width: 40px; height: 40px;
}
.prodlines-6 .prodline-ico svg { width: 20px; height: 20px; }
.prodlines-6 .prodline-txt strong { font-size: 1.05rem; }
.prodlines-6 .prodline-txt small { font-size: 0.8rem; }
.prodlines-6 .prodline-arr { width: 16px; height: 16px; flex-shrink: 0; opacity: .45; }
@media (max-width: 720px) {
  .prodlines-6 { grid-template-columns: 1fr; }
}

/* ============ v11.2: STIJLVOLLER SITEMENU ("Toon volledige overzicht") ============ */
.sitemenu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.sitemenu-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.sitemenu-toggle[aria-expanded="true"] { border-color: var(--accent); color: var(--accent); }
.sitemenu-chevron { width: 16px; height: 16px; transition: transform .25s ease; }
.sitemenu-toggle[aria-expanded="true"] .sitemenu-chevron { transform: rotate(180deg); }

.sitemenu-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.sitemenu-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.sitemenu-col:hover { border-color: rgba(246,150,10,.4); box-shadow: 0 10px 30px rgba(0,32,96,.06); }
.sitemenu-col-title {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sitemenu-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: color .15s, padding-left .15s;
}
.sitemenu-link::before {
  content: '';
  width: 6px; height: 6px;
  border-top: 1.5px solid var(--accent);
  border-right: 1.5px solid var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: .55;
  transition: opacity .15s, transform .15s;
}
.sitemenu-link:hover {
  color: var(--accent);
  padding-left: 5px;
}
.sitemenu-link:hover::before { opacity: 1; transform: rotate(45deg) translate(1px,-1px); }
@media (max-width: 800px) {
  .sitemenu-panel { grid-template-columns: 1fr; gap: 16px; }
}

/* ============ v11.6: HOVER-TOOLTIP op productlijnen (ABB premium / Dormot veelzijdig) ============ */
.prodline { position: relative; }
.prodline-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--vb-navy, #002060);
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(246,150,10,.45);
  box-shadow: 0 12px 32px rgba(0,32,96,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  pointer-events: none;
}
.prodline-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 28px;
  border: 7px solid transparent;
  border-top-color: var(--vb-navy, #002060);
}
.prodline:hover .prodline-tip,
.prodline:focus-visible .prodline-tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 700px) {
  /* op mobiel geen hover; tip als volledige-breedte uitleg onder de rij */
  .prodline { flex-wrap: wrap; align-items: center; row-gap: 0; }
  .prodline-txt { min-width: 0; }
  .prodline-tip {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    flex-basis: 100%;
    width: 100%;
    margin-top: 12px;
    padding: 12px 14px;
    box-shadow: none;
    background: rgba(0,32,96,.05);
    color: var(--vb-navy, #002060);
    border-color: rgba(246,150,10,.3);
    font-size: 0.82rem;
    line-height: 1.55;
  }
  .prodline-tip::after { display: none; }
}

/* ============ v11.6: leesbaarheid kleine amber section-labels op lichte achtergrond ============ */
/* alleen de losse tekst-labels (geen knoppen, geen pills met eigen achtergrond) iets donkerder
   zodat ze leesbaar zijn op de lichte secties (#F0F4FA / #F7F8FB). Amber-uitstraling blijft. */
.rv-section-label,
.bh-section-label,
.pg-section-label,
.section-eyebrow {
  color: #a85f00 !important;
}

/* ============ v11.16: partner-kopteksten gecentreerd ============ */
.partner-content > .partner-eyebrow,
.partner-content > .partner-title,
.partner-content > .partner-lead {
  text-align: center;
}
/* gecentreerde eyebrow: verberg het zij-streepje en de padding ervoor */
.partner-content > .partner-eyebrow {
  display: block !important;
  padding-left: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto !important;
  margin-right: auto !important;
}
.partner-content > .partner-eyebrow::before {
  display: block !important;
  position: static !important;
  content: '' !important;
  width: 28px !important;
  height: 1px !important;
  background: var(--accent) !important;
  margin: 0 auto 12px !important;
}

/* ============ v11.20: haven-sectie (Rotterdamse haven) gecentreerd ============ */
.haven-content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/* kop-teksten gecentreerd */
.haven-content .haven-eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.haven-content .haven-title,
.haven-content .haven-subtitle {
  margin-left: auto;
  margin-right: auto;
}
/* de 3 facts: tekst gecentreerd, links-streepje vervangen door gecentreerd streepje boven */
.haven-facts {
  margin-left: auto;
  margin-right: auto;
}
.haven-content .haven-fact {
  align-items: center;
  text-align: center;
  padding-left: 0;
  border-left: none;
  padding-top: 14px;
  border-top: 2px solid var(--accent);
}
/* internationale groei-blok ook gecentreerd */
.haven-intl {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.haven-content .haven-intl-eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.haven-intl-modes {
  justify-items: center;
}
.intl-mode {
  text-align: left;
}

/* v11.43: merk-accent op de sitebrede header (zelfde structuur, eigen stijl) */
.site-header--abb { border-bottom: 3px solid #E2001A; }
.site-header--trident { border-bottom: 3px solid #14387F; }
.site-header--historie { border-bottom: 3px solid #F59D0F; }
/* dropdown open-state voor pagina's zonder app.js */
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }

/* v11.46: footer-logo behoudt verhouding */
.sp-footer-logo img, .rv-footer-logo img { width: auto; }

/* v11.53: geen tekst over de hero-video op telefoon (signature + stat-tags) */
@media (max-width: 768px) {
  .vbe-eb-signature,
  .vbe-eb-tag,
  .vbe-eb-tag-num,
  .vbe-eb-tag-lbl { display: none !important; }
}

/* v11.56: pulse-animaties uit (elementen verwijderd; regel voorkomt terugkeer) */
.header-logo-pulse, 

/* v11.62: merk-cel alleen logo; renew-banner rustig; decoratieve pulse-animaties uit */
.brand-name { display: none; }
.renew-coming-soon-banner::before { animation: none !important; content: none !important; }
.renew-coming-soon-icon { animation: none !important; }
.renew-coming-soon-icon svg { animation: none !important; }
.dormot-badge-pulse::before { animation: none !important; content: none !important; }
.boeg-urgency-eyebrow .pulse-dot, .marine-eyebrow::before, .hero-v3-cred-dot,
.offices-worldwide-text::before, .contact-channel-wa::after { content: none; }

/* v11.63: motormerken-pagina + brede routekaart-kaart */
.pg-cards-brands { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.pg-repl-list { margin: 14px 0 0; padding-left: 20px; }
.pg-repl-list li { margin: 6px 0; }
.prodline--wide { grid-column: 1 / -1; }

/* ── v11.64 motormerken: merkenregister + navy Dormot-band ── */
/* v11.70: geneste wrap in pg-section neutraliseren (dubbele padding = uitlijnfout) */
.pg-section > .pg-wrap{max-width:none;padding:0}
.mk-kicker{font-family:var(--mono);font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;color:var(--vb-orange,#f6960a);margin:0 0 14px}
.mk-specs{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid rgba(255,255,255,.14);border-radius:var(--r-lg);overflow:hidden;margin-top:30px}
.mk-spec{background:rgba(255,255,255,.04);padding:16px 20px;border-right:1px solid rgba(255,255,255,.12)}
.mk-spec:last-child{border-right:none}
.mk-spec-label{display:block;font-family:var(--mono);font-size:.66rem;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.68);margin-bottom:5px}
.mk-spec-value{display:block;font-weight:700;font-size:.95rem;color:#fff}
@media(max-width:860px){.mk-specs{grid-template-columns:repeat(2,1fr)}.mk-spec:nth-child(2n){border-right:none}.mk-spec{border-bottom:1px solid rgba(255,255,255,.12)}.mk-spec:nth-child(n+3){border-bottom:none}}
.mk-register{border:1px solid var(--vb-border,#d0daea);border-radius:var(--r-lg);overflow:hidden;margin-top:34px;background:#fff}
.mk-row{display:grid;grid-template-columns:250px 1fr;gap:0;border-bottom:1px solid var(--vb-border,#d0daea)}
.mk-row:last-child{border-bottom:none}
.mk-row-id{padding:26px 26px;border-right:1px solid var(--vb-border,#d0daea);background:#f7f9fc}
.mk-idx{font-family:var(--mono);font-size:.7rem;letter-spacing:.14em;color:var(--vb-orange,#f6960a);display:block;margin-bottom:8px}
.mk-name{font-size:1.25rem;font-weight:800;color:var(--vb-navy,#0e377b);letter-spacing:-.01em;line-height:1.1;margin:0 0 6px}
.mk-country{font-family:var(--mono);font-size:.66rem;letter-spacing:.14em;text-transform:uppercase;color:var(--vb-muted,#5a718c)}
.mk-row-body{padding:24px 28px}
.mk-row-body>p{margin:0 0 14px;font-size:.93rem;line-height:1.75;color:#42566e}
.mk-facts{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 14px}
.mk-fact{font-family:var(--mono);font-size:.68rem;letter-spacing:.06em;color:var(--vb-navy,#0e377b);border:1px solid var(--vb-border,#d0daea);border-radius:4px;padding:5px 10px;background:#f7f9fc}
.mk-dmt{display:flex;align-items:baseline;gap:10px;border-top:2px solid var(--vb-orange,#f08812);padding-top:12px}
.mk-dmt-arrow{color:var(--vb-orange,#f08812);font-weight:800}
.mk-dmt strong{color:var(--vb-navy,#0e377b);font-size:.88rem}
.mk-dmt span.sub{font-size:.8rem;color:var(--vb-muted,#5a718c)}
@media(max-width:760px){.mk-row{grid-template-columns:1fr}.mk-row-id{border-right:none;border-bottom:1px solid var(--vb-border,#d0daea);padding:20px 22px}.mk-row-body{padding:20px 22px}}
.mk-dormot{background:linear-gradient(150deg,#0e377b 0%,#14387F 55%,#0a2a63 100%);border-radius:var(--r-lg);padding:44px 40px;margin-top:8px;color:#fff}
.mk-dormot h2{color:#fff !important}
.mk-dormot .lead{color:rgba(255,255,255,.92);max-width:760px;line-height:1.75;font-size:.95rem}
.mk-usps{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin:30px 0 4px}
.mk-usp{border-top:2px solid var(--vb-orange,#f08812);padding-top:14px}
.mk-usp-n{font-family:var(--mono);font-size:.68rem;letter-spacing:.14em;color:var(--vb-orange,#f08812);display:block;margin-bottom:6px}
.mk-usp h3{color:#fff;font-size:1rem;margin:0 0 8px}
.mk-usp p{color:rgba(255,255,255,.85);font-size:.84rem;line-height:1.65;margin:0}
@media(max-width:760px){.mk-usps{grid-template-columns:1fr}.mk-dormot{padding:30px 22px}}
.mk-dormot .btns{display:flex;gap:12px;flex-wrap:wrap;margin-top:26px}
.mk-btn-w{display:inline-flex;align-items:center;background:var(--vb-orange,#f08812);color:#08214a;font-weight:700;padding:12px 22px;border-radius:8px;text-decoration:none;font-size:.9rem}
.mk-btn-w:hover{filter:brightness(1.06)}
.mk-btn-o{display:inline-flex;align-items:center;background:transparent;color:#fff;border:1px solid rgba(255,255,255,.35);font-weight:600;padding:12px 22px;border-radius:8px;text-decoration:none;font-size:.9rem}
.mk-btn-o:hover{border-color:#fff}

/* v11.64b: telefoonknop op lichte achtergrond (CTA-sectie) */
.mk-btn-tel{display:inline-flex;align-items:center;gap:9px;background:#fff;border:1px solid var(--vb-navy,#0e377b);color:var(--vb-navy,#0e377b);padding:13px 22px;border-radius:8px;font-weight:700;font-size:.9rem;text-decoration:none;font-family:var(--mono)}
.mk-btn-tel:hover{background:var(--vb-navy,#0e377b);color:#fff}

/* v11.65: logo-verhouding vangnet: css-width wint altijd van het width-attribuut */
img[src*="vbe-logo-electric-motors-t"] { width: auto; }

/* v11.66: tabellaire cijfers voor prijs- en spec-kolommen (was mono) */
.price-table td, .pricelist-table td, .popular-specs, .mk-fact, .pg-spec-value { font-variant-numeric: tabular-nums; }

/* ── v11.71 mobiel motormerken: vol-brede tapdoelen, nette stapeling ── */
.mk-cta-btns{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px;justify-content:center}
@media(max-width:560px){
  .pg-hero .pg-btn-p,.pg-hero .pg-btn-g,.mk-cta-btns a,.mk-dormot .btns a{width:100%;justify-content:center;text-align:center}
  .mk-dormot .btns{flex-direction:column}
  .mk-dmt{flex-wrap:wrap;row-gap:4px}
  .mk-specs{margin-top:26px}
  .mk-row-body{padding:18px 18px 20px}
}

/* v11.71b ademruimte op telefoon (main-prefix wint van latere inline paginastijlen) */
@media(max-width:560px){
  main .pg-section{padding-left:20px;padding-right:20px}
  .pg-hero .pg-wrap{padding-left:20px;padding-right:20px}
  main .pg-cards{grid-template-columns:1fr}
  .mk-dormot{padding:28px 18px}
  .mk-dormot .btns a{padding:12px 14px}
}

/* ── v11.73 vb-crumb: uniforme kruimelbalk onder de header ── */
.vb-crumb{background:#f7f9fc;border-bottom:1px solid var(--vb-border,#d0daea)}
.vb-crumb-in{max-width:1180px;margin:0 auto;padding:10px 40px;display:flex;justify-content:flex-end;align-items:center;gap:8px;font-size:.78rem;flex-wrap:wrap}
.vb-crumb a{color:var(--vb-muted,#5a718c);text-decoration:none}
.vb-crumb a:hover{color:var(--vb-navy,#0e377b)}
.vb-crumb-sep{color:#b9c6d9}
.vb-crumb strong{color:var(--vb-navy,#0e377b);font-weight:600}
@media(max-width:560px){.vb-crumb-in{padding:9px 20px;font-size:.74rem}}


/* v11.81b atex-actief */
.hero-filter-atex.active { background: var(--vb-navy,#0e377b) !important; border-color: var(--vb-navy,#0e377b) !important; color: #fff !important; }

/* v11.82/83 dormot-hero: enkele kolom, volledig gecentreerd */
.dormot-hero-layout{grid-template-columns:1fr !important}
.dormot-hero-text{max-width:860px;margin:0 auto;text-align:center}
.dormot-hero-text .dormot-hero-btns,.dormot-hero-text [class*="btn-row"],.dormot-hero-text > div{justify-content:center}
.dormot-hero-text h1{margin-left:auto;margin-right:auto}

/* v11.92 a11y */
main p > a:not([class]){text-decoration:underline;text-underline-offset:2px}
.wa-float-wrap{display:contents}

/* v11.93 topbar overal + sticky */
.topbar{position:sticky;top:0;z-index:70}
header.site-header,.site-header{top:var(--topbar-h,0px) !important}
.lang-switcher a{display:inline-block;padding:2px 7px;border-radius:4px;color:inherit;text-decoration:none;font-size:.72rem;font-weight:600;letter-spacing:.04em;opacity:.75}
.lang-switcher a:hover{opacity:1;background:rgba(255,255,255,.12)}
.lang-switcher a.active{background:var(--vb-orange,#f08812);color:#001540;opacity:1}
@media(max-width:900px){.topbar-since{display:none}}
@media(max-width:560px){.topbar .container{flex-wrap:wrap;gap:4px;padding-top:4px;padding-bottom:4px}.topbar-left span[data-i18n="topbar.phone"]{display:none}.lang-switcher{gap:2px}.lang-switcher a,.lang-switcher button{padding:2px 5px;font-size:.66rem}}

/* v11.94 offerteformulier */
#offerte{scroll-margin-top:calc(var(--topbar-h,47px) + 84px)}
.of-sectie{background:#0c1f4a;background:linear-gradient(180deg,#0e2454,#0a1c40);padding:72px 24px 64px;margin-top:0;border-top:3px solid var(--vb-orange,#f08812)}
.of-wrap{max-width:880px;margin:0 auto}
.of-kop{color:#fff;font-size:1.55rem;margin:0 0 8px}
.of-lead{color:#b9c6d9;margin:0 0 26px;line-height:1.55}
.of-form label{display:flex;flex-direction:column;gap:6px;color:#dbe4f2;font-size:.82rem;font-weight:600;letter-spacing:.02em;position:relative}
.of-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;margin-bottom:16px}
.of-vol{margin-bottom:16px}
.of-form input,.of-form select,.of-form textarea{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.18);border-radius:8px;color:#fff;padding:10px 12px;font:inherit;font-weight:400}
.of-form select option{background:#0e2454;color:#fff}
.of-form input:focus,.of-form select:focus,.of-form textarea:focus{outline:2px solid var(--vb-orange,#f08812);outline-offset:1px;border-color:transparent}
.of-form input[type=file]{padding:8px}
.of-verzend{background:var(--vb-orange,#f08812);color:#001540;border:0;border-radius:10px;padding:13px 26px;font:inherit;font-weight:700;cursor:pointer;box-shadow:0 2px 6px rgba(10,25,50,.18)}
.of-verzend:hover{filter:brightness(1.06)}
.of-sec{color:#b9c6d9;font-size:.85rem;margin-top:16px}
.of-sec a{color:#fff}
.of-info{margin-left:2px}
.of-tipbox{position:absolute;z-index:5;top:calc(100% + 4px);left:0;right:0;background:#fff;color:#1f3350;font-weight:400;font-size:.8rem;line-height:1.5;padding:10px 12px;border-radius:8px;box-shadow:0 6px 18px rgba(4,12,30,.35)}
@media(max-width:560px){.of-sectie{padding:44px 16px}}

/* v12.10 case-kaarten: horizontale uitlijning over de drie kaarten */
.cases-grid{align-items:stretch}
.case-card{display:flex;flex-direction:column}
.case-hero{min-height:210px;display:flex;align-items:flex-end}
.case-hero-title{min-height:2.6em}
.case-metrics{height:104px;align-items:start}
.case-metric-label{min-height:2.3em}
.case-metric-value{display:block;min-height:2.3em}
.case-body{flex:1;display:flex;flex-direction:column}
@media(max-width:900px){.case-hero{min-height:0}.case-hero-title{min-height:0}.case-metrics{min-height:0}}

/* v12.12 stap-rijen gelijk over de kaarten */
.case-story-block{min-height:64px}
.case-story-block:nth-child(2){min-height:86px}
@media(max-width:900px){.case-story-block,.case-story-block:nth-child(2){min-height:0}}
/* v12.11 vbe-logo op case-kaarten */
.case-hero{position:relative}
.case-logo{position:absolute;top:14px;right:14px;width:56px;height:auto;z-index:2;filter:drop-shadow(0 2px 6px rgba(0,0,0,.30))}
@media(max-width:560px){.case-logo{width:44px;top:12px;right:12px}}

/* v12.17 klassenbureau-logo-chips */
.hero-v3-certstrip{align-items:center}
.hero-v3-certstrip{justify-content:center}
.hero-v3-cert-divider{background:rgba(255,255,255,.28) !important}
.hero-v3-cert-logo{background:none;border:none;box-shadow:none;padding:0;display:inline-flex;align-items:center;height:34px;opacity:.9}
.hero-v3-cert-logo:hover{opacity:1}
.hero-v3-cert-logo img{display:block;width:auto}
@media(max-width:560px){.hero-v3-cert-logo{height:26px}.hero-v3-cert-logo img{max-height:23px}}

/* v12.24 kaders-nooit-meer */
.hero-v3-cert-logo{background:transparent !important;border:0 !important;box-shadow:none !important;border-radius:0 !important}
