:root {
  --brand-primary: #1062fe;
  --brand-primary-lighter: #009AFF;
  --brand-primary-darker: #003CB2;
  --grad-start: #152a80;
  --grad-end: #1d65af;
  --brand-secondary: #083fbf;
  --brand-success: #36C055;
  --brand-warning: #ffaa00;
  --brand-danger: #d92632;
  --accent-yellow: #ffd166;
  --gray-darker: #17191C;
  --gray-base: #5E636E;
  --gray-lighter: #979ba4;
  --gray-lighter-4: #E9EAEC;
  --body-bg: #f7f8fa;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-card: 0 1px 3px rgba(23,25,28,0.04), 0 8px 24px rgba(23,25,28,0.06);
  --shadow-lift: 0 2px 8px rgba(23,25,28,0.06), 0 24px 48px rgba(23,25,28,0.12);
  --shadow-primary: 0 8px 30px rgba(16,98,254,0.25);
  --shadow-badge: 0 2px 4px rgba(10,15,30,0.08), 0 14px 28px -6px rgba(10,15,30,0.3);
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --container-max: 1288px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--gray-darker);
  background: var(--body-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-primary); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

.eyebrow { font-family: var(--font-mono); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.6px; color: var(--brand-primary); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--brand-primary); }
.eyebrow.on-dark::before { background: var(--brand-warning); }

.eyebrow.on-dark { color: var(--brand-warning); }


.h-section {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 14px;
  text-wrap: balance;
}
.sub-section {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--gray-base);
  max-width: 640px;
  margin-top: 12px;
  line-height: 1.65;
}
.section-header { text-align: center; margin-bottom: 56px; display: flex; flex-direction: column; align-items: center; }
.section-header .sub-section { text-align: center; }
.section-header.light .h-section { color: #fff; }
.section-header.light .sub-section { color: rgba(255,255,255,0.82); }

/* Knopstijlen (kleur, maat, radius) komen uit de centrale laag in site.css;
   deze sectie voegt alleen nog structuur toe (plaatsing, breedte). */

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--gray-lighter-4);
}
.site-header .container {
  padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.site-header img { height: 30px; }
.site-nav { display: flex; gap: 22px; margin-left: 18px; }
.site-nav a { color: var(--gray-darker); font-size: 13.5px; font-weight: 600; position: relative; }
.site-nav a.active { color: var(--brand-primary); }
.site-nav a.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--brand-primary); border-radius: 2px;
}
.site-header .actions { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.site-header .actions a.ghost { font-size: 13px; color: var(--gray-base); font-weight: 600; }
@media (max-width: 900px){ .site-nav { display: none; } }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 110px;
  overflow: hidden;
  background: linear-gradient(90deg, #152a80, #1d65af);
  color: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 85% 20%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(500px 500px at 10% 90%, rgba(255,255,255,0.05), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.5;
}
.hero .container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--accent-yellow);
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  border-radius: 50px;
  margin-bottom: 24px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-success);
  box-shadow: 0 0 0 0 rgba(54,192,85,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(54,192,85,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(54,192,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(54,192,85,0); }
}
.hero h1 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero h1 .accent {
  color: var(--accent-yellow);
  display: inline-block;
  position: relative;
}
.hero-tldr {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 560px;
}
.hero-tldr strong { color: #fff; }
.hero-usps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 30px;
}
.hero-usps li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.hero-usps li svg {
  width: 18px; height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(54,192,85,0.22);
  fill: #6ee58e;
  flex-shrink: 0;
}
.hero-ctas {
  display: flex; gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-trust {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  flex-wrap: wrap;
}
.hero-trust .stars { color: #6ee58e; letter-spacing: 1px; }
.hero-trust strong { color: #fff; font-weight: 700; }
.hero-trust .divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.22);
}

/* ============ HERO VISUAL — DASHBOARD 1A (Van → Naar) ============ */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 520px;
  perspective: 2200px;
}
.dash-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 40px 80px -20px rgba(10,15,30,0.55),
    0 15px 30px -10px rgba(10,15,30,0.25),
    0 2px 4px rgba(10,15,30,0.08);
  overflow: hidden;
  transform: perspective(2200px) rotateY(-14deg) rotateX(6deg) rotateZ(-1.5deg);
  transform-origin: center center;
  animation: dashFloat 7s ease-in-out infinite;
}
@keyframes dashFloat {
  0%,100% { transform: perspective(2200px) rotateY(-14deg) rotateX(6deg) rotateZ(-1.5deg) translateY(0); }
  50%     { transform: perspective(2200px) rotateY(-14deg) rotateX(6deg) rotateZ(-1.5deg) translateY(-8px); }
}
/* Migration header (from → to) */
.dash-header {
  padding: 18px 20px 16px;
  background: #f7f8fa;
  border-bottom: 1px solid var(--gray-lighter-4);
}
.dash-eyebrow {
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 1.5px;
  color: var(--gray-lighter);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.dash-migrate-row {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.dash-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px 7px 7px;
  border-radius: 10px;
  flex-shrink: 0;
}
.dash-chip.old {
  background: #f1f2f5;
  border: 1px solid var(--gray-lighter-4);
  color: var(--gray-darker);
}
.dash-chip.new {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(16,98,254,0.45);
}
.dash-favicon {
  width: 22px; height: 22px;
  border-radius: 5px;
  background: #fff;
  color: var(--gray-base);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; letter-spacing: -0.02em;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.dash-chip.new .dash-favicon { color: var(--brand-primary); }
.dash-chip-text { display: flex; flex-direction: column; line-height: 1.15; }
.dash-chip-label {
  font-size: 8.5px;
  font-family: var(--font-mono);
  letter-spacing: 1.2px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-lighter);
}
.dash-chip.new .dash-chip-label { color: rgba(255,255,255,0.7); }
.dash-chip-name { font-size: 12px; font-weight: 800; letter-spacing: -0.01em; }

/* Arrow with moving packets */
.dash-arrow {
  flex: 1; position: relative; height: 28px;
  display: flex; align-items: center;
}
.dash-arrow svg { display: block; width: 100%; height: 28px; }
@keyframes dashArrowDash { to { stroke-dashoffset: -24; } }

/* Flying packets along the arrow */
.dash-packets {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}
.dash-packet {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px 3px 5px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(16,98,254,0.25);
  box-shadow:
    0 4px 10px -2px rgba(16,98,254,0.35),
    0 1px 2px rgba(10,15,30,0.12);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--brand-primary);
  white-space: nowrap;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: dashPacketFly 6s linear infinite;
}
.dash-packet-dot {
  width: 6px; height: 6px;
  border-radius: 2px;
  background: var(--brand-primary);
  display: inline-block;
}
.dash-packet.p1 { animation-delay: 0s; }
.dash-packet.p2 { animation-delay: 1.5s; }
.dash-packet.p3 { animation-delay: 3s; }
.dash-packet.p4 { animation-delay: 4.5s; }

.dash-packet.p2 .dash-packet-dot { background: var(--brand-success); border-radius: 50%; }
.dash-packet.p2 { color: #1b7d34; border-color: rgba(54,192,85,0.35); box-shadow: 0 4px 10px -2px rgba(54,192,85,0.35), 0 1px 2px rgba(10,15,30,0.12); }
.dash-packet.p3 .dash-packet-dot { background: #ffaa00; border-radius: 1px; transform: rotate(45deg); }
.dash-packet.p3 { color: #b56b00; border-color: rgba(255,170,0,0.4); box-shadow: 0 4px 10px -2px rgba(255,170,0,0.35), 0 1px 2px rgba(10,15,30,0.12); }
.dash-packet.p4 .dash-packet-dot { background: #a855f7; }
.dash-packet.p4 { color: #7c3aed; border-color: rgba(168,85,247,0.35); box-shadow: 0 4px 10px -2px rgba(168,85,247,0.35), 0 1px 2px rgba(10,15,30,0.12); }

@keyframes dashPacketFly {
  0%   { left: 3%;  opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  10%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  90%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { left: 97%; opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
}

.dash-subtext {
  margin-top: 12px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: var(--gray-base);
  gap: 10px;
}
.dash-subtext strong { color: var(--gray-darker); font-weight: 800; }
.dash-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 800;
  color: #1b7d34;
  text-transform: uppercase; letter-spacing: 1px;
}
.dash-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-success);
  animation: dashPulse 2s infinite;
}
@keyframes dashPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(54,192,85,0.55); }
  70%     { box-shadow: 0 0 0 8px rgba(54,192,85,0); }
}

/* Process rows */
.dash-rows { padding: 4px 20px 6px; }
.dash-row {
  display: grid;
  grid-template-columns: 20px 1fr 70px 46px;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-lighter-4);
}
.dash-row:last-child { border-bottom: none; }
.dash-row.queued { opacity: 0.55; }
.dash-row-icon {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 900;
}
.dash-row.done .dash-row-icon {
  background: var(--brand-success);
}
.dash-row.active .dash-row-icon {
  background: #fff;
  border: 2px solid var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(16,98,254,0.15);
}
.dash-row.active .dash-row-icon::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-primary);
}
.dash-row.queued .dash-row-icon { background: var(--gray-lighter-4); }
.dash-row-label {
  font-size: 13px; font-weight: 700;
  color: var(--gray-darker);
  letter-spacing: -0.01em;
}
.dash-row.queued .dash-row-label { color: var(--gray-base); }
.dash-row-meta {
  font-size: 10.5px; color: var(--gray-lighter);
  font-family: var(--font-mono);
  margin-top: 1px;
}
.dash-row-bar {
  height: 6px; background: var(--gray-lighter-4);
  border-radius: 3px; overflow: hidden;
}
.dash-row-bar-fill {
  height: 100%; border-radius: 3px;
  position: relative; overflow: hidden;
  transition: width 1.2s ease-out;
}
.dash-row.done .dash-row-bar-fill {
  background: linear-gradient(90deg, var(--brand-success), #1b7d34);
}
.dash-row.active .dash-row-bar-fill {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-lighter));
}
.dash-row.active .dash-row-bar-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: dashShimmer 1.6s linear infinite;
}
@keyframes dashShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.dash-row-pct {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 800;
  text-align: right;
}
.dash-row.done .dash-row-pct  { color: #1b7d34; }
.dash-row.active .dash-row-pct { color: var(--brand-primary); }
.dash-row.queued .dash-row-pct { color: var(--gray-lighter); }

/* Dummy rules kept for backwards compat of other pages — old .migrate-diagram selectors */
.migrate-diagram {
  position: relative;
  width: 100%;
  max-width: 520px;
  transform-style: preserve-3d;
  display: none;
}
.browser-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(10,15,30,0.06),
    0 40px 80px -20px rgba(10,15,30,0.45);
}
.browser-card.old {
  transform: rotateY(9deg) rotateX(3deg) translateZ(-20px) scale(0.92);
  animation: oldFloat 7s ease-in-out infinite;
  opacity: 0.92;
}
.browser-card.new {
  transform: rotateY(-11deg) rotateX(5deg) translateZ(40px);
  animation: newFloat 6s ease-in-out infinite 0.3s;
}
@keyframes oldFloat {
  0%,100% { transform: rotateY(9deg) rotateX(3deg) translateZ(-20px) scale(0.92) translateY(0); }
  50%     { transform: rotateY(9deg) rotateX(3deg) translateZ(-20px) scale(0.92) translateY(-6px); }
}
@keyframes newFloat {
  0%,100% { transform: rotateY(-11deg) rotateX(5deg) translateZ(40px) translateY(0); }
  50%     { transform: rotateY(-11deg) rotateX(5deg) translateZ(40px) translateY(-9px); }
}
.migrate-old-wrap {
  position: absolute;
  top: 20px; left: 0;
  width: 62%;
  z-index: 1;
}
.migrate-new-wrap {
  position: absolute;
  bottom: 40px; right: 0;
  width: 65%;
  z-index: 3;
}
.browser-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  background: linear-gradient(180deg, #f7f8fa, #eceff3);
  border-bottom: 1px solid var(--gray-lighter-4);
}
.chrome-dots { display: flex; gap: 5px; flex-shrink: 0; }
.chrome-dots span { width: 9px; height: 9px; border-radius: 50%; }
.chrome-dots span:nth-child(1) { background: #ff5f57; }
.chrome-dots span:nth-child(2) { background: #febc2e; }
.chrome-dots span:nth-child(3) { background: #28c840; }
.chrome-url {
  flex: 1;
  display: flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-darker);
}
.chrome-url svg { width: 9px; height: 9px; flex-shrink: 0; }
.chrome-url .lock { fill: var(--brand-success); }
.chrome-url .lock.old-lock { fill: var(--gray-lighter); }

.browser-body {
  padding: 18px 16px 20px;
  min-height: 200px;
  background: #fff;
}
.browser-body.old {
  background: #fafbfc;
  position: relative;
  overflow: hidden;
}
.browser-body.old::after {
  content: 'HUIDIGE HOSTER';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-lighter);
  letter-spacing: 2px;
  padding: 6px 12px;
  border: 1.5px dashed var(--gray-lighter);
  border-radius: 4px;
  opacity: 0.55;
  white-space: nowrap;
}
.dummy-topbar {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.dummy-logo {
  width: 22px; height: 22px;
  border-radius: 5px;
}
.browser-body.old .dummy-logo { background: linear-gradient(135deg, #b0b4bd, #878d99); }
.browser-body.new .dummy-logo { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); box-shadow: 0 3px 8px rgba(16,98,254,0.25); }
.dummy-nav { display: flex; gap: 6px; margin-left: auto; }
.dummy-nav span { height: 7px; border-radius: 3px; background: var(--gray-lighter-4); }
.dummy-nav span:nth-child(1) { width: 26px; }
.dummy-nav span:nth-child(2) { width: 22px; }
.dummy-nav span:nth-child(3) { width: 30px; }
.dummy-hero {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.browser-body.old .dummy-hero { background: #f1f2f4; }
.browser-body.new .dummy-hero {
  background: linear-gradient(135deg, rgba(16,98,254,0.08), rgba(29,101,175,0.12));
  border: 1px solid rgba(16,98,254,0.1);
}
.dummy-title {
  height: 9px; width: 72%;
  border-radius: 3px;
  margin-bottom: 6px;
}
.browser-body.old .dummy-title { background: #b0b4bd; }
.browser-body.new .dummy-title { background: linear-gradient(90deg, var(--grad-start), var(--grad-end)); }
.dummy-sub {
  height: 5px; border-radius: 3px;
  background: rgba(23,25,28,0.1);
  margin-bottom: 5px;
}
.dummy-sub.s1 { width: 85%; }
.dummy-sub.s2 { width: 62%; }
.dummy-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.browser-body.old .dummy-cta { background: #c9ccd4; color: #7b8194; }
.browser-body.new .dummy-cta {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  box-shadow: 0 3px 8px rgba(16,98,254,0.3);
}
.dummy-body { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.dummy-line { height: 5px; border-radius: 3px; background: var(--gray-lighter-4); }
.dummy-line.l100 { width: 100%; }
.dummy-line.l80 { width: 80%; }
.dummy-line.l60 { width: 60%; }

/* arrow between cards */
.migrate-arrow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) translateZ(80px);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-yellow), #f0a835);
  box-shadow: 0 20px 40px rgba(255,170,0,0.45), 0 0 0 6px rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  animation: arrowPulse 3s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%,100% { transform: translate(-50%, -50%) translateZ(80px) scale(1); }
  50%     { transform: translate(-50%, -50%) translateZ(80px) scale(1.06); }
}
.migrate-arrow svg { width: 34px; height: 34px; fill: var(--grad-start); }

/* badges around diagram */
.hero-fb {
  position: absolute;
  background: #fff;
  border-radius: 50px;
  padding: 8px 14px 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gray-darker);
  line-height: 1.2;
  letter-spacing: 0.1px;
  white-space: nowrap;
  box-shadow: var(--shadow-badge);
  z-index: 10;
}
.hero-fb svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero-fb strong { font-weight: 800; }
.hero-fb.fb-speed {
  top: -14px; right: 10px;
  animation: fbFloat 5.2s ease-in-out infinite;
}
.hero-fb.fb-speed svg { fill: var(--brand-success); }
.hero-fb.fb-speed strong { color: var(--brand-success); }
.hero-fb.fb-ssl {
  bottom: 5px; left: -20px;
  animation: fbFloat 5.8s ease-in-out infinite 0.6s;
}
.hero-fb.fb-ssl svg { fill: var(--brand-primary); }
.hero-fb.fb-ssl strong { color: var(--brand-primary); }
.hero-fb.fb-nl {
  top: 42%; right: -30px;
  animation: fbFloat 6.2s ease-in-out infinite 1.1s;
}
.belt-flag {
  width: 18px; height: 12px;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.belt-flag span { flex: 1; }
.belt-flag .hf-r { background: #AE1C28; }
.belt-flag .hf-w { background: #ffffff; }
.belt-flag .hf-b { background: #21468B; }
.hero-fb.fb-nl strong { color: var(--brand-primary); }
@keyframes fbFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-7px); }
}

/* ============ TRUSTBAR ============ */
.trustbar {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid var(--gray-lighter-4);
}
.trustbar .container {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 180px; }
.trust-item-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--grad-start);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.trust-item-label { font-size: 12px; color: var(--gray-base); line-height: 1.3; }
.trust-divider { width: 1px; height: 36px; background: var(--gray-lighter-4); }
.trust-stars { color: #00b67a; font-size: 18px; letter-spacing: 1px; line-height: 1; margin-bottom: 2px; }

/* ============ PROCESS / 5 STEPS ============ */
.process {
  padding: 90px 0 100px;
  background: var(--body-bg);
}
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--brand-primary) 0 6px,
    transparent 6px 12px
  );
  z-index: 0;
  opacity: 0.35;
}
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(16,98,254,0.25);
}
.step-num {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-primary);
}
.step-num::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(16,98,254,0.18);
}



.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-darker);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.step-title-link {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(var(--brand-primary), var(--brand-primary));
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  transition: background-size 0.25s ease, color 0.2s;
}
.step-title-link:hover {
  color: var(--brand-primary);
  background-size: 80% 1.5px;
}
.step-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: gap 0.2s ease, color 0.2s;
}
.step-link:hover {
  color: var(--brand-primary-darker);
  gap: 8px;
}
.step-body {
  font-size: 13px;
  color: var(--gray-base);
  line-height: 1.55;
  text-align: center;
  flex: 1;
}

.process-foot {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-base);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
}
.process-foot .total {
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--gray-lighter-4);
  color: var(--gray-darker);
  font-weight: 600;
  box-shadow: var(--shadow-card);
}
.process-foot .total strong { color: var(--brand-primary); font-weight: 800; }

/* ============ PROCESS · WHAT MOVES strip ============ */
.proc-moves {
  margin-top: 56px;
  max-width: 1180px;
  margin-left: auto; margin-right: auto;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.pm-head {
  padding: 20px 28px;
  border-bottom: 1px solid var(--gray-lighter-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: #fafbfc;
}

.pm-sub {
  font-size: 13px;
  color: var(--gray-base);
  margin: 0;
}
.pm-more {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
  margin-left: 6px;
}
.pm-more:hover { text-decoration: underline; }
.pm-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}
.pm-col {
  padding: 24px 28px 26px;
}
.pm-col-yes { border-right: 1px solid var(--gray-lighter-4); background: linear-gradient(180deg, rgba(54,192,85,0.04), transparent); }
.pm-col-no { background: linear-gradient(180deg, rgba(255,170,0,0.04), transparent); }
.pm-col-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--gray-darker);
  margin-bottom: 14px;
}
.pm-col-title svg { width: 16px; height: 16px; }
.pm-col-yes .pm-col-title svg { fill: #1b7d34; }
.pm-col-no .pm-col-title svg { fill: #9c6a00; }
.pm-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
  font-size: 13.5px;
  color: var(--gray-darker);
  padding: 0;
  margin: 0;
}
.pm-col-no .pm-list {
  grid-template-columns: 1fr;
}
.pm-list li {
  padding: 5px 0 5px 14px;
  position: relative;
  line-height: 1.4;
}
.pm-col-yes .pm-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-success);
}
.pm-col-no .pm-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 2px;
  background: var(--brand-warning);
}
.pm-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  background: rgba(16,98,254,0.08);
  color: var(--brand-primary);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  vertical-align: middle;
}
@media (max-width: 820px) {
  .pm-grid { grid-template-columns: 1fr; }
  .pm-col-yes { border-right: none; border-bottom: 1px solid var(--gray-lighter-4); }
  .pm-list { grid-template-columns: 1fr; }
}

/* ============ WHAT MOVES / TABLE ============ */
.whatmoves {
  padding: 90px 0;
  background: #fff;
}
.whatmoves-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.wm-card {
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.wm-head {
  padding: 22px 28px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--gray-lighter-4);
}
.wm-head.yes { background: linear-gradient(135deg, rgba(54,192,85,0.08), rgba(54,192,85,0.02)); }
.wm-head.partial { background: linear-gradient(135deg, rgba(255,170,0,0.08), rgba(255,170,0,0.02)); }
.wm-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wm-head.yes .wm-icon { background: rgba(54,192,85,0.15); }
.wm-head.yes .wm-icon svg { fill: var(--brand-success); }
.wm-head.partial .wm-icon { background: rgba(255,170,0,0.18); }
.wm-head.partial .wm-icon svg { fill: #c07d00; }
.wm-icon svg { width: 20px; height: 20px; }
.wm-head h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--gray-darker);
  margin-bottom: 2px;
}
.wm-head p {
  font-size: 13px;
  color: var(--gray-base);
}
.wm-table {
  width: 100%;
  border-collapse: collapse;
}
.wm-table th, .wm-table td {
  padding: 14px 20px;
  font-size: 13.5px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--gray-lighter-4);
  line-height: 1.45;
}
.wm-table thead th {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-base);
  font-weight: 500;
  padding: 12px 20px;
  background: #fafbfc;
}
.wm-table tbody td:first-child {
  font-weight: 600;
  color: var(--gray-darker);
  width: 42%;
}
.wm-table tbody td:nth-child(2) {
  width: 14%;
  text-align: center;
  white-space: nowrap;
}
.wm-table tbody td:nth-child(3) {
  color: var(--gray-base);
  font-size: 12.5px;
}
.wm-table tbody tr:last-child td { border-bottom: none; }
.wm-table tbody tr:hover { background: rgba(16,98,254,0.02); }
.wm-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}
.wm-pill.ja { background: rgba(54,192,85,0.15); color: #1b7d34; }
.wm-pill.partial { background: rgba(255,170,0,0.18); color: #9c6a00; }
.wm-pill.no { background: rgba(217,38,50,0.1); color: var(--brand-danger); }











.cms-logo.orange { background: linear-gradient(135deg, rgba(255,170,0,0.12), rgba(255,138,80,0.22)); }
.cms-logo.orange svg { fill: #e07a00; }
.cms-logo.green { background: linear-gradient(135deg, rgba(54,192,85,0.12), rgba(54,192,85,0.22)); }
.cms-logo.green svg { fill: var(--brand-success); }
.cms-logo.purple { background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(236,72,153,0.2)); }
.cms-logo.purple svg { fill: #8b5cf6; }
.cms-logo.html { background: linear-gradient(135deg, rgba(241,101,41,0.12), rgba(224,54,0,0.22)); }
.cms-logo.html svg { fill: #e34f26; }















/* ============ WHEN WHICH ============ */
.whenwhich {
  padding: 90px 0;
  background: #fff;
}
.ww-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.ww-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.ww-card.self {
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
}
.ww-card.us {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.ww-card.us::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.ww-card > * { position: relative; z-index: 1; }
.ww-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
  display: inline-flex; align-items: center; gap: 8px;
}
.ww-card.self .ww-label { color: var(--brand-primary); }
.ww-card.us .ww-label { color: var(--accent-yellow); }
.ww-label::before {
  content: ''; width: 16px; height: 1px;
  background: currentColor;
}
.ww-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
}
.ww-card.self .ww-title { color: var(--gray-darker); }
.ww-card.us .ww-title { color: #fff; }
.ww-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 12px;
}
.ww-list li {
  display: flex; gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.ww-card.self .ww-list li { color: var(--gray-base); }
.ww-card.us .ww-list li { color: rgba(255,255,255,0.92); }
.ww-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  margin-top: 1px;
}
.ww-card.self .ww-list li svg {
  background: rgba(23,25,28,0.06);
  fill: var(--gray-base);
}
.ww-card.us .ww-list li svg {
  background: rgba(255,209,102,0.2);
  fill: var(--accent-yellow);
}

/* ============ DOWNTIME EXPLAINER ============ */
.downtime {
  padding: 90px 0;
  background: var(--body-bg);
}
.downtime-box {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-card);
}
.dt-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 32px 0 28px;
  position: relative;
}
.dt-step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}
.dt-step + .dt-step::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -50%;
  right: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  z-index: 0;
}
.dt-icon {
  position: relative;
  z-index: 1;
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid var(--brand-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(16,98,254,0.15);
}
.dt-icon svg { width: 26px; height: 26px; fill: var(--brand-primary); }
.dt-step h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-darker);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  line-height: 1.3;
}
.dt-step p {
  font-size: 11.5px;
  color: var(--gray-base);
  line-height: 1.5;
}
.dt-honesty {
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(255,170,0,0.06);
  border-left: 3px solid var(--brand-warning);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13.5px;
  color: var(--gray-base);
  line-height: 1.6;
}
.dt-honesty strong { color: var(--gray-darker); }

/* ============ 2026 TECH ============ */
.tech {
  padding: 90px 0;
  background: linear-gradient(90deg, #152a80, #1d65af);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tech::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.tech .container { position: relative; z-index: 2; }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
.tech-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s;
}
.tech-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,209,102,0.3);
  transform: translateY(-3px);
}
.tech-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--accent-yellow);
  margin-bottom: 12px;
  padding: 3px 9px;
  background: rgba(255,209,102,0.12);
  border-radius: 50px;
}
.tech-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.tech-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}
.tech-card p code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(255,255,255,0.1);
  color: var(--accent-yellow);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ============ PRICING TABLE ============ */
.pricing {
  padding: 90px 0;
  background: var(--body-bg);
}
.pricing-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.pr-table {
  width: 100%;
  border-collapse: collapse;
}
.pr-table thead th {
  padding: 18px 24px;
  background: #fafbfc;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-base);
  text-align: left;
  border-bottom: 2px solid var(--gray-lighter-4);
}
.pr-table thead th:last-child { text-align: right; }
.pr-table tbody td {
  padding: 18px 24px;
  font-size: 15px;
  border-bottom: 1px solid var(--gray-lighter-4);
  vertical-align: middle;
}
.pr-table tbody td:last-child { text-align: right; }
.pr-table tbody tr:last-child td { border-bottom: none; }
.pr-table tbody tr:hover { background: rgba(16,98,254,0.02); }
.pr-name { font-weight: 700; color: var(--gray-darker); font-size: 16px; }
.pr-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-lighter);
  margin-top: 2px;
}
.pr-price.free {
  display: inline-block;
  background: rgba(54,192,85,0.15);
  color: #1b7d34;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 0.3px;
}
.pr-price.paid {
  display: inline-block;
  background: rgba(23,25,28,0.05);
  color: var(--gray-darker);
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
}
.pr-foot {
  padding: 18px 24px;
  background: #fafbfc;
  border-top: 1px solid var(--gray-lighter-4);
  font-size: 13px;
  color: var(--gray-base);
  line-height: 1.55;
}
.pr-foot strong { color: var(--gray-darker); }

/* ============ OPZEG ACCORDION ============ */
.opzeg {
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #152a80, #1d65af);
  color: #fff;
}
.opzeg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 85% 20%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(500px 500px at 10% 90%, rgba(255,255,255,0.05), transparent 60%);
  pointer-events: none;
}
.opzeg > .container { position: relative; z-index: 1; }
.opzeg .section-header { margin-bottom: 40px; }

.opzeg .h-section { color: #fff; }
.opzeg .sub-section { color: rgba(255,255,255,0.82); }
.opzeg-intro {
  max-width: 820px;
  margin: 0 auto 28px;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  text-align: center;
}
.opzeg-intro strong { color: #fff; }
.opzeg-tip {
  max-width: 820px;
  margin: 0 auto 44px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  backdrop-filter: blur(4px);
}
.opzeg-tip .tip-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.opzeg-tip .tip-icon svg { width: 16px; height: 16px; fill: #fff; }
.opzeg-tip strong { color: #fff; display: block; margin-bottom: 2px; font-size: 14px; }

.opzeg-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.opzeg-item {
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.opzeg-item[open] {
  border-color: rgba(16,98,254,0.3);
  box-shadow: var(--shadow-card);
}
.opzeg-summary {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.opzeg-summary::-webkit-details-marker { display: none; }
.opzeg-logo {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--body-bg);
  border: 1px solid var(--gray-lighter-4);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-darker);
  letter-spacing: -0.5px;
}
.opzeg-name {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-darker);
  letter-spacing: -0.01em;
  flex: 1;
}
.opzeg-name strong {
  font-weight: 800;
}
.opzeg-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-base);
  letter-spacing: 0;
}
.opzeg-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-base);
  background: var(--body-bg);
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.opzeg-meta.warn { background: rgba(217,38,50,0.08); color: var(--brand-danger); }
.opzeg-meta.good { background: rgba(54,192,85,0.12); color: #1b7d34; }
.opzeg-chevron {
  width: 16px; height: 16px;
  fill: var(--gray-lighter);
  transition: transform 0.22s;
  flex-shrink: 0;
}
.opzeg-item[open] .opzeg-chevron { transform: rotate(180deg); fill: var(--brand-primary); }
.opzeg-body {
  padding: 4px 22px 20px 74px;
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.opzeg-body dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px 20px;
  margin-bottom: 14px;
  font-size: 13.5px;
  line-height: 1.6;
}
.opzeg-body dt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--gray-lighter);
  font-weight: 600;
  padding-top: 3px;
}
.opzeg-body dd {
  color: var(--gray-base);
}
.opzeg-body dd strong { color: var(--gray-darker); }
.opzeg-body dd code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(16,98,254,0.06);
  color: var(--brand-primary);
  padding: 1px 6px;
  border-radius: 4px;
}
.opzeg-body .opzeg-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary);
}
.opzeg-body .opzeg-link svg { width: 12px; height: 12px; fill: currentColor; }
.opzeg-stamp {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--gray-lighter);
  font-style: italic;
}
.opzeg-other {
  max-width: 900px;
  margin: 36px auto 0;
  padding: 24px 28px;
  background: var(--body-bg);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--gray-base);
  line-height: 1.7;
  text-align: center;
}
.opzeg-other strong { color: var(--gray-darker); }

/* ============ FAQ ============ */
.faq {
  padding: 90px 0;
  background: var(--body-bg);
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-lighter);
  padding: 22px 4px 6px;
  font-weight: 600;
}
.faq-cat:first-child { padding-top: 0; }
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item[open] { border-color: rgba(16,98,254,0.3); box-shadow: var(--shadow-card); }
.faq-summary {
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--gray-darker);
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary .faq-chevron {
  width: 14px; height: 14px;
  fill: var(--gray-lighter);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.22s;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); fill: var(--brand-primary); }
.faq-body {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--gray-base);
  line-height: 1.7;
}
.faq-body a { font-weight: 600; }
.faq-body code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  background: rgba(16,98,254,0.06);
  color: var(--brand-primary);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ============ FINAL CTA (match /webhosting + /emailpakket) ============ */
.final-cta { padding: 80px 0 100px; background: var(--body-bg); }
.final-cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.final-cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 20% 0%, rgba(255,255,255,0.1), transparent 60%),
              radial-gradient(500px 300px at 90% 100%, rgba(255,170,0,0.15), transparent 60%);
  pointer-events: none;
}
.final-cta-box > * { position: relative; z-index: 2; }
.final-cta-box h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #fff;
}
.final-cta-box p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.final-cta-actions {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta-contact {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.final-cta-contact a {
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.final-cta-contact a svg { width: 16px; height: 16px; fill: currentColor; }
.final-cta-box .crosslinks {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
}
.final-cta-box .crosslinks a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.3);
  transition: color 0.15s, text-decoration-color 0.15s;
}
.final-cta-box .crosslinks a:hover { color: #fff; text-decoration-color: var(--brand-warning); }
@media (max-width: 767px) {
  .final-cta-box { padding: 40px 24px; }
}

/* ============ FOOTER ============ */
.site-footer {
  background: #17191C;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer img { height: 30px; margin-bottom: 14px; }
.site-footer .about p {
  font-size: 13px; line-height: 1.6; max-width: 280px;
}
.site-footer .about .tag {
  display: inline-block;
  margin-top: 14px;
  background: rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px; font-weight: 600; color: #fff;
}
.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.site-footer ul a { color: rgba(255,255,255,0.75); font-size: 13px; }
.site-footer ul a:hover { color: #fff; }
.site-footer .bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 8px;
}

/* responsive */
@media (max-width: 1100px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 420px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .whatmoves-grid { grid-template-columns: 1fr; }
  
  .tech-grid { grid-template-columns: 1fr; }
  .ww-grid { grid-template-columns: 1fr; }
  .dt-flow { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .dt-step + .dt-step::before { display: none; }
  .site-footer .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .hero { padding: 60px 0 80px; }
  .hero-usps { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  
  .opzeg-body { padding-left: 22px; }
  .opzeg-body dl { grid-template-columns: 1fr; gap: 2px 0; }
  .opzeg-body dl dt { padding-top: 8px; }
  .site-footer .container { grid-template-columns: 1fr; }
  .wm-table th:nth-child(3), .wm-table td:nth-child(3) { display: none; }
}

/* === Trustpilot reviews slider (canonical from /emailpakket) === */
.trustpilot-reviews-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.trustpilot-reviews-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.trustpilot-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    gap: 15px;
}

.trustpilot-logo img {
    height: 28px;
    width: auto;
}

.trustpilot-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trustpilot-stars {
    display: flex;
    gap: 2px;
}

.trustpilot-stars .star {
    color: #00b67a;
    font-size: 22px;
    line-height: 1;
}

.trustpilot-stars .star.half {
    background: linear-gradient(90deg, #00b67a 60%, #dcdce6 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trustpilot-rating {
    font-size: 15px;
    color: #333;
}

.trustpilot-rating strong {
    font-weight: 600;
}

.trustpilot-rating a {
    color: #1d65af;
    text-decoration: none;
    transition: color 0.2s;
}

.trustpilot-rating a:hover {
    color: #152a80;
    text-decoration: underline;
}

/* Slider */
.reviews-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviews-slider {
    overflow: hidden;
    flex: 1;
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.review-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    width: 212px;
    min-width: 212px;
    flex-shrink: 0;
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    color: inherit;
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.review-stars {
    margin-bottom: 12px;
}

.review-stars .stars-img {
    height: 20px;
    width: auto;
}

.review-title {
    font-size: 15px;
    font-weight: 600;
    color: #152a80;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 16px 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-author {
    border-top: 1px solid #e8e8e8;
    padding-top: 12px;
    margin-top: auto;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    color: #555;
}

/* Slider buttons */
.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #152a80;
    transition: all 0.2s;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: #152a80;
    color: #fff;
    border-color: #152a80;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-btn:disabled:hover {
    background: #fff;
    color: #152a80;
    border-color: #e8e8e8;
}

/* Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dcdce6;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.slider-dot:hover {
    background: #1d65af;
}

.slider-dot.active {
    background: linear-gradient(135deg, #152a80, #1d65af);
    width: 24px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .trustpilot-reviews-section {
        padding: 40px 0;
    }

    .review-card {
        width: 180px;
        min-width: 180px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 540px) {
    .review-card {
        width: 260px;
        min-width: 260px;
    }

    .reviews-slider-wrapper {
        gap: 10px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
    }
}

/* ====== Opzeg quick-picker ====== */
.op-picker { max-width: 920px; margin: 32px auto 24px; }
.op-picker-label { font-family: var(--font-mono); font-size: 12.5px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; text-align: center; }
.op-picker-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.op-pick {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-family: var(--font-sans); cursor: pointer;
  transition: all 0.2s ease; text-align: left;
}
.op-pick:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.op-pick-badge {
  width: 30px; height: 30px; border-radius: 6px;
  background: rgba(255,255,255,0.15); color: #fff;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.op-pick-name { font-weight: 600; font-size: 14px; }
@media (max-width: 991px) { .op-picker-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) { .op-picker-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ CMS PLATFORMS (app-tile patroon) ============ */
.cms { padding: 90px 0; background: var(--body-bg); }
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.app-tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: 14px;
  padding: 26px 24px 58px;
  cursor: pointer;
  transition: all 0.22s;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.app-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(16,98,254,0.35);
  box-shadow: 0 12px 32px rgba(10,15,30,0.08);
  text-decoration: none;
}
.app-tile.featured {
  background: linear-gradient(135deg, #fff 0%, rgba(33,117,155,0.04) 100%);
  border-color: rgba(33,117,155,0.3);
  box-shadow: 0 6px 20px rgba(33,117,155,0.1);
}
.app-logo {
  width: 56px; height: 56px;
  margin: 0 0 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16,98,254,0.08), rgba(16,98,254,0.18));
  font-size: 26px; line-height: 1;
}
.app-logo img { width: 34px; height: 34px; display: block; }
.app-name {
  font-size: 17px; font-weight: 800;
  color: var(--gray-darker);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.app-desc {
  font-size: 13.5px;
  color: var(--gray-base);
  line-height: 1.55;
}
.app-desc code {
  background: var(--body-bg);
  padding: 1px 6px; border-radius: 4px;
  font-size: 12px; font-family: var(--font-mono);
  color: var(--brand-primary);
  border: 1px solid var(--gray-lighter-4);
}
.app-install {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  font-size: 11px; font-weight: 700;
  text-align: center;
  text-transform: uppercase; letter-spacing: 1px;
  transform: translateY(100%);
  transition: transform 0.22s;
}
.app-tile:hover .app-install { transform: translateY(0); }
.apps-footer {
  text-align: center;
  margin: 40px auto 0;
  max-width: 760px;
  font-size: 14.5px;
  color: var(--gray-base);
  line-height: 1.65;
}
.apps-footer a { font-weight: 600; color: var(--brand-primary); text-decoration: underline; text-underline-offset: 3px; }
.apps-footer strong { color: var(--gray-darker); font-weight: 700; }
.apps-caveat {
  max-width: 760px; margin: 18px auto 0;
  text-align: center;
  font-size: 13.5px; color: var(--gray-base);
  padding: 12px 18px;
  background: rgba(255,170,0,0.06);
  border: 1px solid rgba(255,170,0,0.15);
  border-radius: 10px;
  line-height: 1.55;
}
.apps-caveat strong { color: var(--gray-darker); }
@media (max-width: 991px) {
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .cms { padding: 56px 0; }
  .apps-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* Mobile safety-net (<768px) */
@media (max-width: 767px) {
  .wok-verhuisservice { overflow-x: hidden; max-width: 100vw; }
  .wok-verhuisservice * { max-width: 100%; }
  .wok-verhuisservice p,
  .wok-verhuisservice li,
  .wok-verhuisservice td,
  .wok-verhuisservice span,
  .wok-verhuisservice code,
  .wok-verhuisservice pre {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .wok-verhuisservice .compare-wrap,
  .wok-verhuisservice .wm-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .wok-verhuisservice .hero .container { grid-template-columns: 1fr !important; }
  .wok-verhuisservice .hero-visual { display: none !important; }
  .wok-verhuisservice .trustbar .container { flex-wrap: wrap; gap: 16px; }
  .wok-verhuisservice .steps { grid-template-columns: 1fr !important; }
  .wok-verhuisservice .apps-grid { grid-template-columns: 1fr !important; }
  .wok-verhuisservice .ww-grid { grid-template-columns: 1fr !important; }
  .wok-verhuisservice .pm-grid { grid-template-columns: 1fr !important; }
  .wok-verhuisservice .pm-list { grid-template-columns: 1fr !important; }
  .wok-verhuisservice .op-picker-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .wok-verhuisservice .final-cta-actions { flex-direction: column; align-items: stretch; }
  .wok-verhuisservice .final-cta-actions .btn { width: 100%; }
}

/* ============ Verplaatste inline styles (statisch, uit template) ============ */

/* Animatie op de SVG-pijllijn in de migratie-header */
.dash-arrow-line { animation: dashArrowDash 1.2s linear infinite; }

/* Voortgangsbalk-breedte volgt de rij-status (done=100% · active=72% · queued=0%) */
.dash-row.done .dash-row-bar-fill   { width: 100%; }
.dash-row.active .dash-row-bar-fill { width: 72%; }
.dash-row.queued .dash-row-bar-fill { width: 0%; }

/* Cijfer in de trustbar-rating */
.trust-rating { color: var(--gray-darker); }

/* Merk-achtergronden per CMS-tegel (modifier op .app-logo) */
.app-logo.wordpress   { background: rgba(33,117,155,0.12); }
.app-logo.woocommerce { background: rgba(127,84,179,0.12); }
.app-logo.joomla      { background: rgba(80,145,205,0.12); }
.app-logo.drupal      { background: rgba(6,120,190,0.12); }
.app-logo.php         { background: rgba(119,123,180,0.12); }
.app-logo.html5       { background: rgba(227,79,38,0.12); }
