/* ============ WEBOKE BRAND TOKENS ============ */
: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;
  --gray-darker: #17191C;
  --gray-base: #5E636E;
  --gray-lighter: #979ba4;
  --gray-lighter-4: #E9EAEC;
  --body-bg: #f7f8fa;
  --ui-block-bg: #ffffff;
  --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);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ============ RESET ============ */
*, *::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: 1288px; margin: 0 auto; padding: 0 24px; }

/* Common eyebrow */
.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;
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--brand-primary); }
.eyebrow.on-dark { color: var(--brand-warning); }
.eyebrow.on-dark::before { background: 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;
}
.sub-section {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--gray-base);
  max-width: 620px;
  margin-top: 12px;
  line-height: 1.6;
}
.section-header { text-align: center; margin-bottom: 56px; display: flex; flex-direction: column; align-items: center; }
.section-header .sub-section { text-align: center; }

/* Knoppen komen uit de centrale laag in site.css (maten, varianten, pill);
   deze sectie voegt alleen nog structuur toe waar nodig. */

/* ============ SCOPED WRAPPER ============ */
.wok-webhosting { position: relative; }

/* ============ 1. HERO ============ */
.wok-webhosting .hero {
  position: relative;
  padding: 90px 0 120px;
  overflow: hidden;
  background: linear-gradient(90deg, #152a80, #1d65af) !important;
  color: #fff;
}
.wok-webhosting .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;
}
.wok-webhosting .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;
}
.wok-webhosting .hero .container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.wok-webhosting .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: #ffd166;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  border-radius: 50px;
  margin-bottom: 24px;
}
.wok-webhosting .hero-tag .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-warning);
  box-shadow: 0 0 0 0 rgba(255,170,0,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,170,0,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,170,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,170,0,0); }
}
.wok-webhosting .hero h1 {
  font-size: clamp(36px, 5.2vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.wok-webhosting .hero h1 .accent {
  color: #ffd166;
  display: inline-block;
  line-height: 1.15;
  padding-bottom: 4px;
}
.wok-webhosting .hero-tldr {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 560px;
}
.wok-webhosting .hero-tldr strong { color: #fff; }
.wok-webhosting .hero-usps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 32px;
}
.wok-webhosting .hero-usps li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.wok-webhosting .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;
}
.wok-webhosting .hero-ctas {
  display: flex; gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.wok-webhosting .hero-pricenote {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.wok-webhosting .hero-pricenote strong { color: #fff; font-weight: 600; }

/* Hero visual / mascot placeholder */
.wok-webhosting .hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 520px;
}

/* ============ HERO WIDGET: BROWSER MOCKUP MET ZWEVENDE BADGES ============ */
.wok-webhosting .hero-showcase-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  padding: 55px 50px 115px 55px;
  perspective: 1800px;
}

/* Floating browser window */
.wok-webhosting .hero-browser {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transform: rotateX(6deg) rotateY(-12deg);
  transform-style: preserve-3d;
  box-shadow:
    0 2px 4px rgba(10,15,30,0.06),
    0 40px 80px -20px rgba(10,15,30,0.45),
    0 15px 30px -10px rgba(10,15,30,0.2);
  animation: browserFloat 6s ease-in-out infinite;
}
@keyframes browserFloat {
  0%, 100% { transform: rotateX(6deg) rotateY(-12deg) translateY(0); }
  50%      { transform: rotateX(6deg) rotateY(-12deg) translateY(-8px); }
}

/* Browser top bar (chrome) */
.wok-webhosting .browser-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: linear-gradient(180deg, #f7f8fa, #eceff3);
  border-bottom: 1px solid var(--gray-lighter-4);
}
.wok-webhosting .browser-dots {
  display: flex; gap: 6px; flex-shrink: 0;
}
.wok-webhosting .browser-dots span {
  width: 11px; height: 11px; border-radius: 50%;
}
.wok-webhosting .browser-dots span:nth-child(1) { background: #ff5f57; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.1); }
.wok-webhosting .browser-dots span:nth-child(2) { background: #febc2e; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.1); }
.wok-webhosting .browser-dots span:nth-child(3) { background: #28c840; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.1); }

/* URL bar */
.wok-webhosting .browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-darker);
  box-shadow: inset 0 1px 1.5px rgba(0,0,0,0.03);
}
.wok-webhosting .browser-url svg {
  width: 11px; height: 11px;
  flex-shrink: 0;
}
.wok-webhosting .browser-url .lock { fill: #3ba862; }
.wok-webhosting .browser-url .lock-glow {
  filter: drop-shadow(0 0 2px rgba(59,168,98,0.5));
  animation: lockPulse 3s ease-in-out infinite;
}
@keyframes lockPulse {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(59,168,98,0.3)); }
  50%      { filter: drop-shadow(0 0 4px rgba(59,168,98,0.7)); }
}
.wok-webhosting .browser-url .domain {
  color: var(--gray-darker);
  font-weight: 600;
  letter-spacing: 0.1px;
}

/* Fresh-loaded pulse bar across top of content */
.wok-webhosting .browser-loaded {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #3ba862 50%, transparent 100%);
  transform-origin: left;
  animation: loadedPulse 7s ease-out infinite;
}
@keyframes loadedPulse {
  0%       { transform: scaleX(0); opacity: 0; }
  5%       { opacity: 1; }
  35%      { transform: scaleX(1); opacity: 1; }
  50%      { transform: scaleX(1); opacity: 0; }
  51%, 100% { transform: scaleX(0); opacity: 0; }
}

/* Page content body */
.wok-webhosting .browser-body {
  padding: 20px 20px 24px;
  min-height: 240px;
  background: #fff;
}

/* Top bar of the hosted website */
.wok-webhosting .page-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.wok-webhosting .page-logo {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  box-shadow: 0 4px 10px rgba(16,98,254,0.25);
}
.wok-webhosting .page-nav {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.wok-webhosting .page-nav span {
  height: 8px;
  border-radius: 4px;
  background: var(--gray-lighter-4);
}
.wok-webhosting .page-nav span:nth-child(1) { width: 32px; }
.wok-webhosting .page-nav span:nth-child(2) { width: 28px; }
.wok-webhosting .page-nav span:nth-child(3) { width: 36px; }

/* Hero-blok binnen de site */
.wok-webhosting .page-hero {
  padding: 16px 16px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(16,98,254,0.07) 0%, rgba(29,101,175,0.1) 100%);
  border: 1px solid rgba(16,98,254,0.1);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.wok-webhosting .page-hero::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(16,98,254,0.15), transparent 70%);
}
.wok-webhosting .page-hero-title {
  height: 10px;
  width: 75%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  margin-bottom: 7px;
}
.wok-webhosting .page-hero-title.short {
  width: 50%;
  margin-bottom: 12px;
}
.wok-webhosting .page-hero-sub {
  height: 6px;
  border-radius: 3px;
  background: rgba(23,25,28,0.12);
  margin-bottom: 6px;
}
.wok-webhosting .page-hero-sub.w1 { width: 85%; }
.wok-webhosting .page-hero-sub.w2 { width: 65%; }
.wok-webhosting .page-hero-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 16px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  box-shadow: 0 3px 8px rgba(16,98,254,0.3);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Body content skeleton lines */
.wok-webhosting .page-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wok-webhosting .page-line {
  height: 7px;
  border-radius: 3px;
  background: var(--gray-lighter-4);
}
.wok-webhosting .page-line.w100 { width: 100%; }
.wok-webhosting .page-line.w85  { width: 85%; }
.wok-webhosting .page-line.w70  { width: 70%; }
.wok-webhosting .page-line.w55  { width: 55%; }

/* "Gehost in Nederland" badge */
.wok-webhosting .hosted-badge {
  position: absolute;
  bottom: 18px;
  right: 10px;
  background: #fff;
  border-radius: 50px;
  padding: 9px 16px 9px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow:
    0 2px 4px rgba(10,15,30,0.08),
    0 14px 28px -6px rgba(10,15,30,0.3);
  animation: badgeFloat 5s ease-in-out infinite 0.5s;
  z-index: 3;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.wok-webhosting .hosted-flag {
  width: 22px; height: 15px;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.wok-webhosting .hosted-flag span {
  flex: 1;
  display: block;
  /* Reset voor als iemand .fb/etc generic class heeft op een stripe - forceer vlag-gedrag */
  position: static;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  width: auto;
  height: auto;
}
.wok-webhosting .hosted-flag .hf-r { background: #AE1C28; }
.wok-webhosting .hosted-flag .hf-w { background: #ffffff; }
.wok-webhosting .hosted-flag .hf-b { background: #21468B; }
.wok-webhosting .hosted-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-darker);
  line-height: 1.2;
  letter-spacing: 0.1px;
}
.wok-webhosting .hosted-text strong {
  color: var(--brand-primary);
  font-weight: 700;
}

/* Generieke floating badges rond de browser */
.wok-webhosting .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:
    0 2px 4px rgba(10,15,30,0.08),
    0 12px 26px -6px rgba(10,15,30,0.3);
  z-index: 3;
}
.wok-webhosting .fb svg { width: 14px; height: 14px; flex-shrink: 0; }
.wok-webhosting .fb strong { font-weight: 800; }

.wok-webhosting .fb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3ba862;
  box-shadow: 0 0 0 0 rgba(59,168,98,0.6);
  animation: fbDotPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes fbDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,168,98,0.6); }
  70%      { box-shadow: 0 0 0 6px rgba(59,168,98,0); }
}

/* Individuele floating badge-posities en kleuren */
/* WordPress badge — groter logo, minder witruimte eromheen */
.wok-webhosting .fb-wp {
  top: -20px; left: -28px;
  width: 58px; height: 58px;
  padding: 5px;
  border-radius: 50%;
  justify-content: center;
  background: #fff;
  animation: fbFloatA 5.4s ease-in-out infinite;
}
.wok-webhosting .fb-wp svg { width: 46px; height: 46px; }

/* Hero-belt: 3 badges in één rij onder het browservenster */
.wok-webhosting .hero-belt {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  flex-wrap: nowrap;
  z-index: 3;
}
.wok-webhosting .belt-item {
  background: #fff;
  border-radius: 50px;
  padding: 7px 13px 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gray-darker);
  line-height: 1.2;
  letter-spacing: 0.1px;
  white-space: nowrap;
  box-shadow:
    0 2px 4px rgba(10,15,30,0.08),
    0 14px 28px -6px rgba(10,15,30,0.3);
}
.wok-webhosting .belt-item strong { font-weight: 800; }
.wok-webhosting .belt-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Item 1: 100% groene stroom */
.wok-webhosting .belt-green svg { fill: #3ba862; }
.wok-webhosting .belt-green strong { color: #3ba862; }

/* Item 2: Gehost in Nederland */
.wok-webhosting .belt-flag {
  width: 20px; height: 14px;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.wok-webhosting .belt-flag span {
  flex: 1; display: block;
  position: static; padding: 0; margin: 0;
  border-radius: 0; box-shadow: none;
  width: auto; height: auto;
}
.wok-webhosting .belt-flag .hf-r { background: #AE1C28; }
.wok-webhosting .belt-flag .hf-w { background: #ffffff; }
.wok-webhosting .belt-flag .hf-b { background: #21468B; }
.wok-webhosting .belt-nl strong { color: var(--brand-primary); }

/* Item 3: 99,9% uptime */
.wok-webhosting .belt-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3ba862;
  box-shadow: 0 0 0 0 rgba(59,168,98,0.6);
  animation: beltDotPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes beltDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,168,98,0.6); }
  70%      { box-shadow: 0 0 0 6px rgba(59,168,98,0); }
}

.wok-webhosting .fb-code {
  top: 46%; left: -62px;
  animation: fbFloatB 5.8s ease-in-out infinite 0.9s;
}
.wok-webhosting .fb-code svg { fill: var(--brand-primary); }

/* AI-ready — premium gradient look (paars → roze) */
.wok-webhosting .fb-ai {
  top: 18px; right: -32px;
  animation: fbFloatA 5.3s ease-in-out infinite 1.2s;
  box-shadow:
    0 2px 4px rgba(139,92,246,0.14),
    0 14px 30px -6px rgba(236,72,153,0.32);
}
.wok-webhosting .fb-ai strong {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
}


@keyframes fbFloatA {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes fbFloatB {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-7px); }
}
/* De .fb-tld gebruikt translateX voor centering - aparte keyframes om dat te respecteren */
.wok-webhosting .fb-wp,
.wok-webhosting .fb-uptime,
.wok-webhosting .fb-code,
.wok-webhosting .fb-ai,
.wok-webhosting .fb-green {
  /* deze gebruiken fbFloatA (zonder translateX) - override */
}
@keyframes fbFloatC {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.wok-webhosting .fb-code { animation-name: fbFloatC; animation-delay: 0.9s; }
.wok-webhosting .fb-ai { animation-name: fbFloatC; animation-delay: 1.2s; }

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

/* ============ 3. PRICING ============ */
.wok-webhosting .pricing { padding: 80px 0; background: #fff; }
.wok-webhosting .pricing-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-lighter);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}
.wok-webhosting .pricing-promo {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 auto 26px;
  padding: 8px 14px;
  background: rgba(255,170,0,0.12);
  border: 1px solid rgba(255,170,0,0.3);
  color: #9c6a00;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  border-radius: 50px;
}
.wok-webhosting .pricing-promo-wrap { text-align: center; }

/* BTW toggle */
.wok-webhosting .btw-toggle-row {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 40px;
  font-size: 14px; color: var(--gray-base); font-weight: 600;
}
.wok-webhosting .btw-toggle-row .btw-label { transition: color 0.2s; cursor: pointer; }
.wok-webhosting .btw-toggle-row .btw-label.active { color: var(--brand-primary); }
.wok-webhosting .btw-switch {
  position: relative; width: 52px; height: 28px;
  background: var(--gray-lighter-4);
  border: none; border-radius: 50px;
  cursor: pointer; transition: background 0.25s;
  padding: 0; flex-shrink: 0;
}
.wok-webhosting .btw-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: #fff; border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.wok-webhosting .btw-switch.active { background: linear-gradient(135deg, var(--grad-start), var(--grad-end)); }
.wok-webhosting .btw-switch.active::after { transform: translateX(24px); }

.wok-webhosting .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.wok-webhosting .pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex; flex-direction: column;
  transition: all 0.25s;
}
.wok-webhosting .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(16,98,254,0.25);
}
.wok-webhosting .pricing-card.featured {
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
  border-color: var(--brand-primary);
  border-width: 2px;
  box-shadow: var(--shadow-primary);
  transform: scale(1.03);
  z-index: 2;
}
.wok-webhosting .pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.wok-webhosting .pricing-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.8px; text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-primary);
}
.wok-webhosting .pricing-name {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--brand-primary);
  margin-bottom: 8px;
}



/* Opslag-rij met extra hint-regel */
.wok-webhosting .pricing-features li.f-opslag { align-items: flex-start; }
.wok-webhosting .pricing-features li.f-opslag .f-opslag-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wok-webhosting .pricing-features li.f-opslag .f-opslag-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.wok-webhosting .pricing-features li.f-opslag .f-opslag-hint {
  font-size: 11px;
  color: var(--gray-base);
  font-style: italic;
  line-height: 1.4;
}
.wok-webhosting .pricing-desc {
  font-size: 13px;
  color: var(--gray-base);
  min-height: 42px;
  line-height: 1.45;
  margin-bottom: 18px;
}
.wok-webhosting .pricing-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 2px; }
.wok-webhosting .pricing-price {
  font-size: 32px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-darker);
  line-height: 1.1; white-space: nowrap;
}
.wok-webhosting .pricing-card.featured .pricing-price {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wok-webhosting .pricing-period { font-size: 14px; color: var(--gray-base); }
.wok-webhosting .pricing-strike {
  font-size: 16px;
  color: var(--gray-base);
  font-weight: 600;
  opacity: 0.9;
  margin-left: 4px;
  position: relative;
  display: inline-block;
}
.wok-webhosting .pricing-strike::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  top: 50%;
  height: 1.5px;
  background: var(--brand-danger);
  opacity: 0.75;
  border-radius: 1px;
  transform: rotate(-14deg);
  transform-origin: center;
  pointer-events: none;
}

/* Pricing speed meter */
.wok-webhosting .pricing-speed {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 9px 12px;
  background: linear-gradient(135deg, rgba(16,98,254,0.04), rgba(255,170,0,0.04));
  border-radius: 10px;
  border: 1px solid rgba(16,98,254,0.08);
}
.wok-webhosting .ps-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  fill: var(--brand-primary);
}
.wok-webhosting .ps-bar {
  display: flex;
  gap: 3px;
  flex: 1;
}
.wok-webhosting .ps-seg {
  flex: 1;
  height: 6px;
  border-radius: 2px;
  background: var(--gray-lighter-4);
  transition: all 0.3s;
}
.wok-webhosting .ps-seg.on {
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
}
.wok-webhosting .speed-3 .ps-seg.on:nth-child(3) { background: linear-gradient(90deg, var(--grad-end), #00a2ff); }
.wok-webhosting .speed-4 .ps-seg.on:nth-child(3) { background: linear-gradient(90deg, var(--grad-end), #ff9800); }
.wok-webhosting .speed-4 .ps-seg.on:nth-child(4) { background: linear-gradient(90deg, #ff9800, var(--brand-warning)); box-shadow: 0 0 8px rgba(255,170,0,0.45); }
.wok-webhosting .ps-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-darker);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.wok-webhosting .speed-4 .ps-tag { color: var(--brand-warning); }

/* Check / cross in pricing features */
.wok-webhosting .pricing-features li.no {
  color: var(--gray-base);
}
.wok-webhosting .pricing-features li svg.f-no { fill: var(--brand-danger); opacity: 0.6; }

/* Expandable features comparison */
.wok-webhosting .pricing-expand-wrap {
  max-width: 1100px;
  margin: 34px auto 0;
  text-align: center;
}
.wok-webhosting .pricing-expand-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-primary);
  cursor: pointer;
  transition: all 0.2s;
}
.wok-webhosting .pricing-expand-btn:hover {
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.wok-webhosting .pe-chevron {
  width: 12px; height: 12px;
  transition: transform 0.3s;
  fill: currentColor;
}
.wok-webhosting .pricing-expand-btn[aria-expanded="true"] .pe-chevron {
  transform: rotate(180deg);
}
.wok-webhosting .pricing-expand {
  display: none;
  margin-top: 24px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.wok-webhosting .pricing-expand.open { display: block; animation: fadein 0.35s; }
.wok-webhosting .pricing-expand-header {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-primary);
  background: var(--body-bg);
  border-bottom: 1px solid var(--gray-lighter-4);
}
.wok-webhosting .pricing-expand-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.wok-webhosting .pricing-expand-table-wrap { overflow-x: auto; }
.wok-webhosting .pricing-expand-table th,
.wok-webhosting .pricing-expand-table td {
  padding: 14px 18px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid var(--gray-lighter-4);
  color: var(--gray-base);
  vertical-align: middle;
}
.wok-webhosting .pricing-expand-table th:first-child,
.wok-webhosting .pricing-expand-table td:first-child {
  text-align: left;
  color: var(--gray-darker);
  font-weight: 600;
  min-width: 220px;
}
.wok-webhosting .pricing-expand-table thead th {
  background: var(--body-bg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-base);
  border-bottom: 2px solid var(--gray-lighter-4);
}
.wok-webhosting .pricing-expand-table thead th.col-featured {
  color: var(--brand-primary);
  background: rgba(16,98,254,0.04);
}
.wok-webhosting .pricing-expand-table tbody td.col-featured {
  background: rgba(16,98,254,0.03);
}
.wok-webhosting .pricing-expand-table tbody tr:last-child td { border-bottom: none; }
.wok-webhosting .pe-yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(54,192,85,0.15); color: var(--brand-success);
  font-weight: 700; font-size: 13px;
}
.wok-webhosting .pe-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(217,38,50,0.1); color: var(--brand-danger);
  font-weight: 700; font-size: 13px;
}
.wok-webhosting .pe-row-cat td {
  background: var(--body-bg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-lighter);
  padding: 10px 18px;
  border-top: 1px solid var(--gray-lighter-4);
}
.wok-webhosting .pricing-exBtw {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-base);
  margin-bottom: 18px;
}
.wok-webhosting .pricing-features { list-style: none; flex: 1; margin-bottom: 20px; }
.wok-webhosting .pricing-features li {
  display: flex; gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--gray-base);
  border-bottom: 1px dashed var(--gray-lighter-4);
  align-items: center;
}
.wok-webhosting .pricing-features li:last-child { border-bottom: none; }
.wok-webhosting .pricing-features li .f-val { margin-left: auto; color: var(--gray-darker); font-weight: 600; }
.wok-webhosting .pricing-features li svg { width: 14px; height: 14px; fill: var(--brand-success); flex-shrink: 0; }
/* Bestelknop in de prijskaart: alleen plaatsing, opmaak via centrale laag */
.wok-webhosting .pricing-btn { width: 100%; }
.wok-webhosting .pricing-minifoot {
  display: flex; justify-content: center; align-items: center;
  gap: 14px; flex-wrap: wrap;
  margin-top: 32px;
  font-size: 13px;
  color: var(--gray-lighter);
  font-weight: 500;
}
.wok-webhosting .pricing-minifoot .mf-item { display: inline-flex; align-items: center; gap: 6px; }
.wok-webhosting .pricing-minifoot svg { width: 14px; height: 14px; fill: var(--brand-success); opacity: 0.8; }
.wok-webhosting .pricing-minifoot .mf-sep { color: var(--gray-lighter-4); }
.wok-webhosting .pricing-disclaimer {
  margin-top: 22px;
  text-align: center;
  font-size: 12px;
  color: var(--gray-lighter);
  max-width: 640px;
  margin-left: auto; margin-right: auto;
  line-height: 1.5;
}

/* ============ TRUSTPILOT REVIEWS (canonical /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;
    }
}

/* ============ 4. QUIZ ============ */
.wok-webhosting .quiz {
  padding: 80px 0;
  background: linear-gradient(90deg, #152a80, #1d65af);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.wok-webhosting .quiz::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;
}
.wok-webhosting .quiz .container { position: relative; z-index: 2; }
.wok-webhosting .quiz .h-section { color: #fff; }
.wok-webhosting .quiz .sub-section { color: rgba(255,255,255,0.8); }
.wok-webhosting .quiz-box {
  max-width: 820px; margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.wok-webhosting .quiz-box::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  border-radius: 50%;
}
.wok-webhosting .quiz-header { text-align: center; margin-bottom: 36px; position: relative; }
.wok-webhosting .quiz-progress { display: flex; gap: 6px; justify-content: center; margin-bottom: 28px; }
.wok-webhosting .quiz-progress-dot {
  width: 40px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: background 0.3s;
}
.wok-webhosting .quiz-progress-dot.done { background: var(--brand-warning); }
.wok-webhosting .quiz-progress-dot.current { background: linear-gradient(90deg, var(--brand-warning) 50%, rgba(255,255,255,0.2) 50%); }
.wok-webhosting .quiz-step { display: none; position: relative; }
.wok-webhosting .quiz-step.active { display: block; animation: fadein 0.3s; }
@keyframes fadein { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.wok-webhosting .quiz-question {
  font-size: 22px; font-weight: 700;
  color: #fff; text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.wok-webhosting .quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.wok-webhosting .quiz-option {
  padding: 18px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600;
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.wok-webhosting .quiz-option:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.13);
  transform: translateY(-2px);
}
.wok-webhosting .quiz-option.selected {
  border-color: var(--brand-warning);
  background: rgba(255,170,0,0.14);
}
.wok-webhosting .quiz-option-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.wok-webhosting .quiz-option-icon svg { width: 18px; height: 18px; fill: #fff; }
.wok-webhosting .quiz-option.selected .quiz-option-icon { background: var(--brand-warning); }
.wok-webhosting .quiz-option.selected .quiz-option-icon svg { fill: var(--grad-start); }
.wok-webhosting .quiz-nav { display: flex; justify-content: space-between; align-items: center; }
.wok-webhosting .quiz-back {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.wok-webhosting .quiz-back:hover:not(:disabled) { color: #fff; }
.wok-webhosting .quiz-back:disabled { opacity: 0.3; cursor: not-allowed; }
.wok-webhosting .quiz-stepcount {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.wok-webhosting .quiz-result { display: none; text-align: center; padding: 20px 0; }
.wok-webhosting .quiz-result.active { display: block; animation: fadein 0.4s; }
.wok-webhosting .quiz-result-label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-warning);
  margin-bottom: 12px;
}
.wok-webhosting .quiz-result-name {
  font-size: 32px; font-weight: 800;
  color: #fff; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.wok-webhosting .quiz-result-price {
  font-size: 18px; color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
}
.wok-webhosting .quiz-result-price strong { color: var(--brand-warning); font-weight: 700; }
.wok-webhosting .quiz-result-feats {
  display: inline-flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
}
.wok-webhosting .quiz-result-feats span { font-size: 13px; color: rgba(255,255,255,0.82); }
.wok-webhosting .quiz-result-feats strong { color: #fff; }
.wok-webhosting .quiz-result-domain {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 0 auto 22px;
  max-width: 480px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.wok-webhosting .quiz-result-domain svg {
  width: 18px; height: 18px;
  fill: var(--brand-warning);
  flex-shrink: 0;
}
.wok-webhosting .quiz-result-domain strong { color: #fff; font-weight: 700; }
.wok-webhosting .quiz-result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.wok-webhosting .quiz-restart {
  background: none; border: none;
  color: rgba(255,255,255,0.65);
  font-size: 13px; margin-top: 20px;
  text-decoration: underline;
}
.wok-webhosting .quiz-restart:hover { color: #fff; }

/* ============ 5. FEATURES BENTO ============ */
.wok-webhosting .features { padding: 80px 0; background: var(--body-bg); }
.wok-webhosting .bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.wok-webhosting .bento-tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  overflow: hidden;
  transition: all 0.25s;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.wok-webhosting .bento-tile::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(300px 200px at var(--mx, 50%) var(--my, 50%), rgba(16,98,254,0.08), transparent 70%);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.wok-webhosting .bento-tile:hover { border-color: rgba(16,98,254,0.3); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.wok-webhosting .bento-tile:hover::before { opacity: 1; }
.wok-webhosting .bento-tile.wide-2 { grid-column: span 2; }
.wok-webhosting .bento-tile.tall-2 { grid-row: span 2; }
.wok-webhosting .bento-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(16,98,254,0.1), rgba(16,98,254,0.18));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.wok-webhosting .bento-icon svg { width: 22px; height: 22px; fill: var(--brand-primary); }
.wok-webhosting .bento-tile h3 {
  font-size: 17px; font-weight: 700;
  color: var(--gray-darker);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.wok-webhosting .bento-tile p { font-size: 13px; color: var(--gray-base); line-height: 1.55; }
.wok-webhosting .bento-tile.dark {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  border-color: transparent;
  color: #fff;
}
.wok-webhosting .bento-tile.dark h3 { color: #fff; }
.wok-webhosting .bento-tile.dark p { color: rgba(255,255,255,0.78); }
.wok-webhosting .bento-tile.dark .bento-icon { background: rgba(255,255,255,0.15); }
.wok-webhosting .bento-tile.dark .bento-icon svg { fill: #fff; }
.wok-webhosting .bento-tile.dark::before {
  background: radial-gradient(300px 200px at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.12), transparent 70%);
}
.wok-webhosting .bento-stat {
  font-size: 52px; font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.wok-webhosting .bento-tile.dark .bento-stat {
  background: linear-gradient(135deg, #fff, #a8d4ff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wok-webhosting .bento-list { list-style: none; margin-top: 12px; }
.wok-webhosting .bento-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--gray-base);
  padding: 4px 0;
}
.wok-webhosting .bento-list li svg { width: 14px; height: 14px; fill: var(--brand-success); flex-shrink: 0; }
.wok-webhosting .bento-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  color: #fff; font-size: 14px; font-weight: 700;
  border-bottom: 2px solid #6ee58e;
  padding-bottom: 3px;
  width: fit-content;
}
.wok-webhosting .bento-arrow svg { fill: #6ee58e; }

/* ============ 6. APPS GALLERY ============ */
.wok-webhosting .apps { padding: 90px 0; background: var(--body-bg); border-top: 1px solid var(--gray-lighter-4); }
.wok-webhosting .apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.wok-webhosting .app-tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-md);
  padding: 26px 24px 58px;
  cursor: pointer;
  transition: all 0.22s;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.wok-webhosting .app-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(16,98,254,0.35);
  box-shadow: var(--shadow-card);
}
.wok-webhosting .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;
}
.wok-webhosting .app-logo img { width: 34px; height: 34px; display: block; }
.wok-webhosting .app-name {
  font-size: 16px; font-weight: 700;
  color: var(--gray-darker);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.wok-webhosting .app-desc {
  font-size: 13px;
  color: var(--gray-base);
  line-height: 1.55;
}
.wok-webhosting .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;
}
.wok-webhosting .app-tile:hover .app-install { transform: translateY(0); }
.wok-webhosting .apps-footer {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--gray-base);
}
.wok-webhosting .apps-footer a { font-weight: 600; color: var(--brand-primary); }

/* ============ 7. COMPARE + CONSOLIDATION ============ */
.wok-webhosting .compare {
  padding: 90px 0;
  background: linear-gradient(90deg, #152a80, #1d65af);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.wok-webhosting .compare::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.09 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;
}
.wok-webhosting .compare .container { position: relative; z-index: 2; }
.wok-webhosting .compare .h-section { color: #fff; }
.wok-webhosting .compare .sub-section { color: rgba(255,255,255,0.82); text-align: center; }
.wok-webhosting .compare-intro {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.7;
}
.wok-webhosting .compare-intro strong { color: #fff; }
.wok-webhosting .compare-table-wrap {
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}
.wok-webhosting .compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}
.wok-webhosting .compare-table thead th {
  padding: 22px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-darker);
  border-bottom: 2px solid var(--gray-lighter-4);
  text-align: center;
  background: #fafbfc;
  vertical-align: middle;
}
.wok-webhosting .compare-table thead th:first-child {
  text-align: left;
  width: 200px;
  font-size: 12px;
  color: var(--gray-lighter);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: var(--font-mono);
}
.wok-webhosting .compare-table thead th.us {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  border-bottom-color: var(--grad-end);
}
.wok-webhosting .compare-table tbody td {
  padding: 14px;
  font-size: 13px;
  text-align: center;
  border-bottom: 1px solid var(--gray-lighter-4);
  color: var(--gray-base);
  vertical-align: middle;
}
.wok-webhosting .compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--gray-darker);
  font-size: 13px;
}
.wok-webhosting .compare-table tbody td.us {
  background: rgba(16,98,254,0.04);
  border-left: 1px solid rgba(16,98,254,0.15);
  border-right: 1px solid rgba(16,98,254,0.15);
  font-weight: 600;
  color: var(--gray-darker);
}
.wok-webhosting .compare-table tbody tr:last-child td { border-bottom: none; }
.wok-webhosting .compare-table tbody tr.hl-row td {
  background: rgba(255,170,0,0.06);
}
.wok-webhosting .compare-table tbody tr.hl-row td.us {
  background: rgba(16,98,254,0.08);
  color: var(--grad-start);
}
.wok-webhosting .check-yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(54,192,85,0.15); color: var(--brand-success);
  font-weight: 700;
}
.wok-webhosting .check-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(217,38,50,0.1); color: var(--brand-danger);
  font-weight: 700;
}
.wok-webhosting .provider-head { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.wok-webhosting .provider-sub {
  font-size: 10px;
  color: var(--gray-lighter);
  font-weight: 400;
  font-family: var(--font-mono);
}
.wok-webhosting .compare-table thead th.us .provider-sub { color: rgba(255,255,255,0.7); }
.wok-webhosting .compare-price-big { font-size: 14px; color: var(--gray-darker); font-weight: 700; }
.wok-webhosting .compare-price-big.warn { color: var(--brand-danger); }
.wok-webhosting .compare-price-sub { font-size: 11px; color: var(--gray-lighter); font-family: var(--font-mono); }
.wok-webhosting .compare-disclaimer {
  max-width: 900px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ============ 8. RACE (Speed demo) ============ */
.wok-webhosting .race { padding: 90px 0; background: var(--body-bg); }
.wok-webhosting .race-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.wok-webhosting .race-card {
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}
.wok-webhosting .race-card.winner {
  border-color: var(--brand-primary);
  box-shadow: 0 20px 40px rgba(16,98,254,0.18);
}
.wok-webhosting .race-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #f3f4f6;
  border-bottom: 1px solid var(--gray-lighter-4);
}
.wok-webhosting .race-dot { width: 10px; height: 10px; border-radius: 50%; }
.wok-webhosting .race-dot.r { background: #ff5f57; }
.wok-webhosting .race-dot.y { background: #febc2e; }
.wok-webhosting .race-dot.g { background: #28c840; }
.wok-webhosting .race-url {
  flex: 1; margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-base);
  background: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--gray-lighter-4);
}
.wok-webhosting .race-body {
  min-height: 260px;
  padding: 28px 24px;
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative;
  background: #fff;
}
.wok-webhosting .race-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-lighter);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.wok-webhosting .race-label.on-weboke { color: var(--brand-primary); }
.wok-webhosting .race-label strong { color: var(--gray-darker); font-weight: 700; }
.wok-webhosting .race-card.winner .race-label strong { color: var(--grad-start); }
.wok-webhosting .race-progress {
  height: 10px;
  background: var(--gray-lighter-4);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 22px;
}
.wok-webhosting .race-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand-primary), var(--grad-end));
  border-radius: 5px;
}
.wok-webhosting .race-fill.slow {
  background: linear-gradient(90deg, #ffaa00, var(--brand-danger));
}
.wok-webhosting .race-time-row {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 6px;
}
.wok-webhosting .race-time {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-darker);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.wok-webhosting .race-card.winner .race-time {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wok-webhosting .race-time-unit {
  font-size: 16px;
  color: var(--gray-lighter);
  font-weight: 600;
}
.wok-webhosting .race-status {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-lighter);
  display: inline-flex; align-items: center; gap: 6px;
}
.wok-webhosting .race-status.done { color: var(--brand-success); }
.wok-webhosting .race-meta { text-align: center; margin-top: 32px; }
.wok-webhosting .race-start-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff; font-weight: 700; font-size: 14px;
  border: 0; cursor: pointer;
  box-shadow: var(--shadow-primary);
  transition: all 0.2s;
}
.wok-webhosting .race-start-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(16,98,254,0.38);
}
.wok-webhosting .race-start-btn:disabled { opacity: 0.6; cursor: default; }
.wok-webhosting .race-tip {
  margin-top: 22px;
  font-size: 13px;
  color: var(--gray-base);
  text-align: center;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
}
.wok-webhosting .race-tip strong { color: var(--gray-darker); }

/* ============ 9. AUDIENCE TABS ============ */
.wok-webhosting .audience { padding: 80px 0; background: #fff; }
.wok-webhosting .audience-tabs {
  display: flex; gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.wok-webhosting .audience-tab {
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  color: var(--gray-base);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.wok-webhosting .audience-tab:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.wok-webhosting .audience-tab.active {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff; border-color: transparent;
  box-shadow: var(--shadow-primary);
}
.wok-webhosting .audience-panel {
  display: none;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--body-bg);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--gray-lighter-4);
}
.wok-webhosting .audience-panel.active {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
  animation: fadein 0.35s;
}
.wok-webhosting .audience-panel h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-darker);
  margin-bottom: 14px;
}
.wok-webhosting .audience-panel p {
  color: var(--gray-base);
  line-height: 1.65;
  font-size: 15px;
  margin-bottom: 18px;
}
.wok-webhosting .audience-panel .aud-pkg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(16,98,254,0.08);
  border: 1px solid rgba(16,98,254,0.2);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
.wok-webhosting .audience-panel .aud-cta-row {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px;
}
.wok-webhosting .aud-visual {
  background: linear-gradient(135deg, rgba(16,98,254,0.04), rgba(21,42,128,0.06));
  border-radius: var(--radius-md);
  padding: 32px;
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(16,98,254,0.08);
  position: relative;
  overflow: hidden;
}
.wok-webhosting .aud-stack {
  display: flex; flex-direction: column; gap: 10px;
  width: 100%; max-width: 260px;
}
.wok-webhosting .aud-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(23,25,28,0.06);
}
.wok-webhosting .aud-card-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(16,98,254,0.1), rgba(16,98,254,0.2));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.wok-webhosting .aud-card-name { font-size: 13px; font-weight: 700; color: var(--gray-darker); }
.wok-webhosting .aud-card-sub { font-size: 11px; font-family: var(--font-mono); color: var(--gray-lighter); }

/* AI tab: terminal met Claude / ChatGPT / Gemini referenties */
.wok-webhosting .aud-ai-card {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 18px 18px 22px;
  width: 100%; max-width: 320px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.25);
}
.wok-webhosting .aud-ai-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% -10%, rgba(217,119,87,0.18), transparent 55%),
    radial-gradient(circle at -10% 110%, rgba(66,133,244,0.14), transparent 55%);
  pointer-events: none;
}
.wok-webhosting .aud-ai-card > * { position: relative; z-index: 2; }

/* Terminal-header (macOS-style dots + path) */
.wok-webhosting .aud-ai-head {
  display: flex; align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wok-webhosting .aud-ai-dots { display: flex; gap: 5px; }
.wok-webhosting .aud-ai-dots span { width: 9px; height: 9px; border-radius: 50%; }
.wok-webhosting .aud-ai-dots span:nth-child(1) { background: #ff5f57; }
.wok-webhosting .aud-ai-dots span:nth-child(2) { background: #febc2e; }
.wok-webhosting .aud-ai-dots span:nth-child(3) { background: #28c840; }
.wok-webhosting .aud-ai-path {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  flex: 1;
  text-align: center;
}

/* Brand-chips Claude / ChatGPT / Gemini */
.wok-webhosting .aud-ai-chips {
  display: flex; gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.wok-webhosting .ai-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid;
}
.wok-webhosting .ai-chip .ai-dot { width: 6px; height: 6px; border-radius: 50%; }
.wok-webhosting .ai-chip.claude { background: rgba(217,119,87,0.14); color: #e89976; border-color: rgba(217,119,87,0.3); }
.wok-webhosting .ai-chip.claude .ai-dot { background: #D97757; }
.wok-webhosting .ai-chip.gpt { background: rgba(16,163,127,0.14); color: #52d4a9; border-color: rgba(16,163,127,0.3); }
.wok-webhosting .ai-chip.gpt .ai-dot { background: #10A37F; }
.wok-webhosting .ai-chip.gemini { background: rgba(66,133,244,0.14); color: #7da9f7; border-color: rgba(66,133,244,0.3); }
.wok-webhosting .ai-chip.gemini .ai-dot { background: #4285F4; }

/* Terminal regels */
.wok-webhosting .aud-ai-lines {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.8;
}
.wok-webhosting .aud-ai-lines .tl { display: block; }
.wok-webhosting .aud-ai-lines .p { font-weight: 700; }
.wok-webhosting .aud-ai-lines .p.claude { color: #e89976; }
.wok-webhosting .aud-ai-lines .p.gpt { color: #52d4a9; }
.wok-webhosting .aud-ai-lines .p.gemini { color: #7da9f7; }
.wok-webhosting .aud-ai-lines .cmd { color: rgba(255,255,255,0.88); }
.wok-webhosting .aud-ai-lines .out { color: rgba(255,255,255,0.62); padding-left: 14px; }
.wok-webhosting .aud-ai-lines .out .ok { color: #6ee58e; margin-right: 4px; }
.wok-webhosting .aud-ai-lines .end {
  color: #fff;
  padding-top: 10px;
  margin-top: 8px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  display: block;
}
.wok-webhosting .aud-ai-lines .end strong { color: var(--brand-warning); }
.wok-webhosting .aud-ai-lines .cursor {
  display: inline-block; width: 7px; height: 12px;
  background: #6ee58e;
  animation: cursorBlink 1s infinite;
  vertical-align: middle;
  margin-left: 4px;
}
@keyframes cursorBlink { 50% { opacity: 0; } }

/* ============ 10. EXPLAIN (Wat is webhosting) ============ */
.wok-webhosting .explain { padding: 90px 0; background: var(--body-bg); }
.wok-webhosting .explain-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-base);
}
.wok-webhosting .explain-intro strong { color: var(--gray-darker); }

/* Flow diagram: domein + hosting = site */
.wok-webhosting .ex-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 64px;
  align-items: stretch;
}
.wok-webhosting .ex-flow-card {
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: all 0.25s;
}
.wok-webhosting .ex-flow-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16,98,254,0.3);
  box-shadow: var(--shadow-card);
}
.wok-webhosting .ex-flow-card.ex-result {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}
.wok-webhosting .ex-flow-card.ex-result .ex-flow-text { color: rgba(255,255,255,0.82); }
.wok-webhosting .ex-flow-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(16,98,254,0.1);
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.wok-webhosting .ex-flow-card.ex-result .ex-flow-icon {
  background: rgba(255,255,255,0.15);
}
.wok-webhosting .ex-flow-title {
  font-size: 16px; font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--gray-darker);
  margin-bottom: 6px;
}
.wok-webhosting .ex-flow-card.ex-result .ex-flow-title { color: #fff; }
.wok-webhosting .ex-flow-text {
  font-size: 13px;
  color: var(--gray-base);
  line-height: 1.5;
}
.wok-webhosting .ex-flow-text em {
  font-style: normal;
  font-family: var(--font-mono);
  color: var(--brand-primary);
  font-size: 12px;
}
.wok-webhosting .ex-flow-op {
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-lighter);
  width: 28px;
}

/* Tabs: wat kun je hosten? */
.wok-webhosting .ex-tabs-wrap {
  max-width: 980px;
  margin: 0 auto 60px;
}
.wok-webhosting .ex-tabs-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-darker);
  margin-bottom: 24px;
}
.wok-webhosting .ex-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.wok-webhosting .ex-tab {
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  color: var(--gray-base);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.wok-webhosting .ex-tab:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.wok-webhosting .ex-tab.active {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}
.wok-webhosting .ex-panel {
  display: none;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 36px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-lighter-4);
  align-items: center;
}
.wok-webhosting .ex-panel.active { display: grid; animation: fadein 0.35s; }
.wok-webhosting .ex-panel h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-darker);
  margin-bottom: 14px;
}
.wok-webhosting .ex-panel p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-base);
  margin-bottom: 16px;
}
.wok-webhosting .ex-panel p strong { color: var(--gray-darker); }
.wok-webhosting .ex-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(16,98,254,0.06);
  border: 1px solid rgba(16,98,254,0.15);
  border-radius: 50px;
  font-size: 13px;
  color: var(--gray-base);
}
.wok-webhosting .ex-pill a { color: var(--brand-primary); font-weight: 600; margin-left: 4px; }

.wok-webhosting .ex-visual {
  background: linear-gradient(135deg, rgba(16,98,254,0.04), rgba(21,42,128,0.06));
  border-radius: var(--radius-md);
  padding: 28px;
  min-height: 240px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(16,98,254,0.08);
}

/* Browser mockup for "Een website" */
.wok-webhosting .ex-browser {
  width: 100%; max-width: 300px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(23,25,28,0.12);
  overflow: hidden;
}
.wok-webhosting .ex-browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: #f3f4f6;
  border-bottom: 1px solid var(--gray-lighter-4);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-base);
}
.wok-webhosting .ex-browser-bar .dot { width: 8px; height: 8px; border-radius: 50%; }
.wok-webhosting .ex-browser-bar .dot.r { background: #ff5f57; }
.wok-webhosting .ex-browser-bar .dot.y { background: #febc2e; }
.wok-webhosting .ex-browser-bar .dot.g { background: #28c840; }
.wok-webhosting .ex-browser-url { margin-left: 8px; }
.wok-webhosting .ex-browser-body {
  padding: 20px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.wok-webhosting .ex-browser-body .line {
  height: 8px;
  background: var(--gray-lighter-4);
  border-radius: 4px;
}
.wok-webhosting .ex-browser-body .line.w60 { width: 60%; }
.wok-webhosting .ex-browser-body .line.w80 { width: 80%; }
.wok-webhosting .ex-browser-body .line.dark {
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  height: 12px;
  width: 40%;
}

/* Mail mockup */
.wok-webhosting .ex-mail {
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  width: 100%; max-width: 280px;
  box-shadow: 0 10px 30px rgba(23,25,28,0.1);
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--gray-lighter-4);
}
.wok-webhosting .ex-mail-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.wok-webhosting .ex-mail-addr {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand-primary);
  font-weight: 600;
}
.wok-webhosting .ex-mail-role {
  font-size: 11px;
  color: var(--gray-lighter);
  margin-top: 2px;
}

/* Shop mockup */
.wok-webhosting .ex-shop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%; max-width: 280px;
}
.wok-webhosting .ex-shop-item {
  background: #fff;
  border-radius: 8px;
  padding: 14px 12px;
  box-shadow: 0 4px 12px rgba(23,25,28,0.08);
  text-align: center;
}
.wok-webhosting .ex-shop-img {
  height: 48px;
  background: linear-gradient(135deg, rgba(16,98,254,0.1), rgba(16,98,254,0.2));
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 8px;
}
.wok-webhosting .ex-shop-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-darker);
  margin-bottom: 4px;
}
.wok-webhosting .ex-shop-price {
  font-size: 11px;
  color: var(--brand-primary);
  font-family: var(--font-mono);
}

/* AI-stack mockup (tab: AI-gebouwde sites) */
.wok-webhosting .ex-ai-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 280px;
}
.wok-webhosting .ex-ai-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  border-left: 3px solid;
  box-shadow: 0 4px 14px rgba(23,25,28,0.08);
  transition: all 0.25s;
}
.wok-webhosting .ex-ai-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(23,25,28,0.12);
}
.wok-webhosting .ex-ai-card.claude { border-color: #D97757; }
.wok-webhosting .ex-ai-card.gpt { border-color: #10A37F; }
.wok-webhosting .ex-ai-card.gemini { border-color: #4285F4; }
.wok-webhosting .ex-ai-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.wok-webhosting .ex-ai-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.wok-webhosting .ex-ai-card.claude .ex-ai-dot { background: #D97757; }
.wok-webhosting .ex-ai-card.gpt .ex-ai-dot { background: #10A37F; }
.wok-webhosting .ex-ai-card.gemini .ex-ai-dot { background: #4285F4; }
.wok-webhosting .ex-ai-name {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.wok-webhosting .ex-ai-card.claude .ex-ai-name { color: #D97757; }
.wok-webhosting .ex-ai-card.gpt .ex-ai-name { color: #10A37F; }
.wok-webhosting .ex-ai-card.gemini .ex-ai-name { color: #4285F4; }
.wok-webhosting .ex-ai-prompt {
  color: var(--gray-darker);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 4px;
}
.wok-webhosting .ex-ai-out {
  color: var(--brand-success);
  font-family: var(--font-mono);
  font-size: 11px;
}

/* Cloud mockup */
.wok-webhosting .ex-cloud {
  display: flex; flex-direction: column; gap: 6px;
  width: 100%; max-width: 260px;
}
.wok-webhosting .ex-cloud-file {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--gray-lighter-4);
  font-size: 13px;
}
.wok-webhosting .ex-cloud-file-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(16,98,254,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Checklist: waarop letten? */
.wok-webhosting .ex-checklist-wrap {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}
.wok-webhosting .ex-checklist-head h3 {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-darker);
  margin-bottom: 8px;
}
.wok-webhosting .ex-checklist-head p {
  color: var(--gray-base);
  font-size: 14px;
  margin-bottom: 24px;
}
.wok-webhosting .ex-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wok-webhosting .ex-check-item {
  display: flex; gap: 14px;
  padding: 16px 18px;
  background: var(--body-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-lighter-4);
  transition: all 0.2s;
}
.wok-webhosting .ex-check-item:hover {
  transform: translateY(-2px);
  border-color: rgba(16,98,254,0.3);
}
.wok-webhosting .ex-check-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.wok-webhosting .ex-check-icon svg { width: 18px; height: 18px; fill: currentColor; }
.wok-webhosting .ex-check-title {
  font-size: 14px; font-weight: 700;
  color: var(--gray-darker);
  margin-bottom: 2px;
}
.wok-webhosting .ex-check-text {
  font-size: 13px;
  color: var(--gray-base);
  line-height: 1.5;
}

/* ============ 11. INDIE (Onafhankelijk sinds 2004) ============ */
.wok-webhosting .indie { padding: 90px 0; background: #fff; }
.wok-webhosting .indie-layout {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 52px;
  align-items: center;
}
.wok-webhosting .indie-body p {
  font-size: 16px;
  color: var(--gray-base);
  line-height: 1.7;
  margin-bottom: 14px;
}
.wok-webhosting .indie-body p strong { color: var(--gray-darker); }
/* Redactionele quote: groot geel aanhalingsteken links, verder puur
   typografisch (geen tintvlak, geen rand, geen cursief). */
.wok-webhosting .indie-quote {
  position: relative;
  margin: 26px 0 0;
  padding: 4px 0 0 58px;
}
.wok-webhosting .indie-quote-teken {
  position: absolute; left: 0; top: 0;
  width: 42px; height: 42px;
  fill: var(--accent-yellow, #ffd166);
}
.wok-webhosting .indie-quote blockquote {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--gray-darker);
}
.wok-webhosting .indie-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-weight: 600;
  color: var(--brand-primary);
}
.wok-webhosting .indie-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wok-webhosting .indie-stat {
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: center;
  transition: all 0.25s;
}
.wok-webhosting .indie-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(16,98,254,0.25);
  box-shadow: var(--shadow-card);
}
.wok-webhosting .indie-stat-num {
  font-size: 34px; font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.wok-webhosting .indie-stat-label {
  font-size: 12px;
  color: var(--gray-base);
  line-height: 1.4;
}
.wok-webhosting .indie-stat.big { grid-column: span 2; }
.wok-webhosting .indie-stat.big .indie-stat-num { font-size: 42px; }

/* ============ 12. MIGRATION (Verhuisservice) ============ */
.wok-webhosting .migration { padding: 80px 0; background: var(--body-bg); }
.wok-webhosting .timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.wok-webhosting .timeline::before {
  content: '';
  position: absolute;
  top: 44px; left: 15%; right: 15%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gray-lighter-4) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.wok-webhosting .timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.wok-webhosting .timeline-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-primary);
  position: relative;
}
.wok-webhosting .timeline-num::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(16,98,254,0.3);
}
.wok-webhosting .timeline-step h3 {
  font-size: 20px; font-weight: 700;
  color: var(--gray-darker);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.wok-webhosting .timeline-step p {
  font-size: 14px;
  color: var(--gray-base);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}
.wok-webhosting .migration-tip {
  margin: 28px auto 0;
  max-width: 760px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,170,0,0.08);
  border: 1px solid rgba(255,170,0,0.25);
  border-radius: 12px;
  color: var(--gray-darker);
  font-size: 14px;
  line-height: 1.5;
}
.wok-webhosting .migration-tip svg {
  width: 20px; height: 20px;
  fill: var(--brand-warning);
  flex-shrink: 0;
  margin-top: 1px;
}
.wok-webhosting .migration-tip strong { color: var(--gray-darker); font-weight: 700; }

.wok-webhosting .migration-banner {
  max-width: 920px;
  margin: 48px auto 0;
  padding: 20px 24px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: var(--radius-md);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.wok-webhosting .migration-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(255,170,0,0.1), transparent 60%);
}
.wok-webhosting .migration-banner > * { position: relative; z-index: 2; }
.wok-webhosting .migration-banner-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-warning);
  font-weight: 700;
  margin-bottom: 4px;
}
.wok-webhosting .migration-banner-text { font-size: 15px; font-weight: 600; }
.wok-webhosting .migration-banner-text span { color: rgba(255,255,255,0.7); font-weight: 500; }

/* ============ 13. TESTIMONIAL + STATS ============ */
.wok-webhosting .testimonial {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.wok-webhosting .testimonial::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.09 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.wok-webhosting .testimonial .container { position: relative; z-index: 2; }
.wok-webhosting .testi-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.wok-webhosting .testi-quote {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.wok-webhosting .testi-quote::before {
  content: ''; display: block;
  width: 54px; height: 40px;
  margin-bottom: 24px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 60 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffaa00' d='M14 0C6.3 0 0 6.3 0 14c0 7.2 5.4 13.1 12.3 13.9-.4 1.5-1.3 3-2.8 4.4-2.1 2-4.7 3.3-7.5 3.7v8c6.6 0 12.3-2.9 16-7.8 3-4 4.5-9.1 4.5-15.2V0H14zm32 0c-7.7 0-14 6.3-14 14 0 7.2 5.4 13.1 12.3 13.9-.4 1.5-1.3 3-2.8 4.4-2.1 2-4.7 3.3-7.5 3.7v8c6.6 0 12.3-2.9 16-7.8 3-4 4.5-9.1 4.5-15.2V0h-8.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.wok-webhosting .testi-attr { display: flex; align-items: center; gap: 14px; }
.wok-webhosting .testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 18px;
}
.wok-webhosting .testi-name { font-weight: 700; color: #fff; }
.wok-webhosting .testi-role {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-mono);
}
.wok-webhosting .testi-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wok-webhosting .testi-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  backdrop-filter: blur(8px);
}
.wok-webhosting .testi-stat-num {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff, var(--brand-warning));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.wok-webhosting .testi-stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  line-height: 1.4;
}

/* ============ 14. TRUSTPILOT SLIDER ============ */

.wok-webhosting .tp-logo .tp-star {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 4px;
  background: #00b67a;
  color: #fff;
}

.wok-webhosting .tp-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }

.wok-webhosting .tp-btn:hover { background: var(--grad-start); color: #fff; border-color: var(--grad-start); }
.wok-webhosting .tp-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ============ 15. FAQ ============ */
.wok-webhosting .faq { padding: 80px 0; background: var(--body-bg); }
.wok-webhosting .faq-list { max-width: 820px; margin: 0 auto; }
.wok-webhosting .faq-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-lighter);
  padding: 20px 4px 8px;
}
.wok-webhosting .faq-item {
  background: #fff;
  border: 1px solid var(--gray-lighter-4);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.2s;
}
.wok-webhosting .faq-item:hover { border-color: rgba(16,98,254,0.25); }
.wok-webhosting .faq-item.active {
  border-color: var(--brand-primary);
  box-shadow: 0 4px 16px rgba(16,98,254,0.08);
}
.wok-webhosting .faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  background: none; border: none;
  font-size: 16px; font-weight: 600;
  color: var(--gray-darker);
  text-align: left;
  gap: 16px;
}
.wok-webhosting .faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--body-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-primary); font-size: 20px; font-weight: 300;
  flex-shrink: 0;
  transition: all 0.3s;
}
.wok-webhosting .faq-item.active .faq-q { color: var(--brand-primary); }
.wok-webhosting .faq-item.active .faq-icon {
  background: var(--brand-primary);
  color: #fff;
  transform: rotate(45deg);
}
.wok-webhosting .faq-a {
  padding: 0 24px 20px;
  color: var(--gray-base);
  font-size: 15px;
  line-height: 1.65;
  display: none;
}
.wok-webhosting .faq-item.active .faq-a { display: block; }
.wok-webhosting .faq-a a { color: var(--brand-primary); font-weight: 600; }

/* ============ 16. FINAL CTA ============ */
.wok-webhosting .final-cta { padding: 80px 0 100px; background: var(--body-bg); }
.wok-webhosting .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;
}
.wok-webhosting .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%);
}
.wok-webhosting .final-cta-box > * { position: relative; z-index: 2; }
.wok-webhosting .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;
}
.wok-webhosting .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;
}
.wok-webhosting .final-cta-actions {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.wok-webhosting .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);
}
.wok-webhosting .final-cta-contact a {
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.wok-webhosting .final-cta-contact a svg { width: 16px; height: 16px; fill: currentColor; }

/* ============ STICKY MOBILE CTA ============ */
.wh-sticky-cta {
  display: none;
  position: fixed;
  bottom: 12px; left: 12px; right: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px 10px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  border: 1px solid var(--gray-lighter-4);
  z-index: 80;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.wh-sticky-cta .sm-label { font-size: 12px; color: var(--gray-base); line-height: 1.3; }
.wh-sticky-cta .sm-price {
  font-size: 17px; font-weight: 800;
  color: var(--gray-darker);
  letter-spacing: -0.02em;
}

/* ============ VIBE-CODE HOSTING ============ */
.wok-webhosting .vibe {
  padding: 90px 0;
  background: linear-gradient(135deg, #152a80, #1d65af);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.wok-webhosting .vibe::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;
}
.wok-webhosting .vibe::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(217,119,87,0.12), transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(66,133,244,0.1), transparent 50%);
  pointer-events: none;
}
.wok-webhosting .vibe .container { position: relative; z-index: 2; }
.wok-webhosting .vibe .h-section { color: #fff; }
.wok-webhosting .vibe .sub-section { color: rgba(255,255,255,0.82); text-align: center; max-width: 680px; }

.wok-webhosting .vibe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* Terminal */
.wok-webhosting .vibe-terminal {
  background: linear-gradient(135deg, #0f0f1e, #1a1a2e);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.wok-webhosting .vibe-term-head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wok-webhosting .vibe-term-dots { display: flex; gap: 5px; }
.wok-webhosting .vibe-term-dots span { width: 10px; height: 10px; border-radius: 50%; }
.wok-webhosting .vibe-term-dots span:nth-child(1) { background: #ff5f57; }
.wok-webhosting .vibe-term-dots span:nth-child(2) { background: #febc2e; }
.wok-webhosting .vibe-term-dots span:nth-child(3) { background: #28c840; }
.wok-webhosting .vibe-term-path {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex: 1;
  text-align: center;
}
.wok-webhosting .vibe-term-body {
  padding: 22px 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.9;
}
.wok-webhosting .vibe-term-body .tl { display: block; }
.wok-webhosting .vibe-term-body .p { font-weight: 700; }
.wok-webhosting .vibe-term-body .p.claude { color: #e89976; }
.wok-webhosting .vibe-term-body .p.gpt { color: #52d4a9; }
.wok-webhosting .vibe-term-body .p.gemini { color: #7da9f7; }
.wok-webhosting .vibe-term-body .p.mistral { color: #ffaa80; }
.wok-webhosting .vibe-term-body .cmd { color: rgba(255,255,255,0.88); }
.wok-webhosting .vibe-term-body .out { color: rgba(255,255,255,0.55); padding-left: 14px; }
.wok-webhosting .vibe-term-body .out .ok { color: #6ee58e; margin-right: 4px; }
.wok-webhosting .vibe-term-body .end {
  color: #fff; padding-top: 12px; margin-top: 8px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  display: block;
}
.wok-webhosting .vibe-term-body .end strong { color: var(--brand-warning); }
.wok-webhosting .vibe-term-body .cursor {
  display: inline-block; width: 7px; height: 12px;
  background: #6ee58e;
  animation: cursorBlink 1s infinite;
  vertical-align: middle;
  margin-left: 4px;
}

/* Info side */
.wok-webhosting .vibe-info h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.wok-webhosting .vibe-info p {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.wok-webhosting .vibe-chips {
  display: flex; gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.wok-webhosting .vibe-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  border: 1px solid;
}
.wok-webhosting .vibe-chip .dot { width: 7px; height: 7px; border-radius: 50%; }
.wok-webhosting .vibe-chip.claude { background: rgba(217,119,87,0.14); color: #e89976; border-color: rgba(217,119,87,0.3); }
.wok-webhosting .vibe-chip.claude .dot { background: #D97757; }
.wok-webhosting .vibe-chip.gpt { background: rgba(16,163,127,0.14); color: #52d4a9; border-color: rgba(16,163,127,0.3); }
.wok-webhosting .vibe-chip.gpt .dot { background: #10A37F; }
.wok-webhosting .vibe-chip.gemini { background: rgba(66,133,244,0.14); color: #7da9f7; border-color: rgba(66,133,244,0.3); }
.wok-webhosting .vibe-chip.gemini .dot { background: #4285F4; }
.wok-webhosting .vibe-chip.mistral { background: rgba(255,138,80,0.14); color: #ffaa80; border-color: rgba(255,138,80,0.3); }
.wok-webhosting .vibe-chip.mistral .dot { background: #ff8a50; }

.wok-webhosting .vibe-cases {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.wok-webhosting .vibe-case {
  display: flex; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s;
}
.wok-webhosting .vibe-case:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(3px);
}
.wok-webhosting .vibe-case-ico {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,170,0,0.15);
  color: var(--brand-warning);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wok-webhosting .vibe-case-ico svg { width: 18px; height: 18px; fill: currentColor; }
.wok-webhosting .vibe-case-t {
  font-size: 14px; font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.wok-webhosting .vibe-case-d {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Split / cross-link to /ai-wordpress-hosting */
.wok-webhosting .vibe-split {
  max-width: 920px;
  margin: 48px auto 0;
  padding: 20px 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,170,0,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wok-webhosting .vibe-split-body { flex: 1; min-width: 260px; }
.wok-webhosting .vibe-split-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--brand-warning);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 6px;
}
.wok-webhosting .vibe-split-text {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .wok-webhosting .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .wok-webhosting .hero { padding: 60px 0 80px; }
  .wok-webhosting .hero-visual { order: -1; margin: 0 auto; max-width: 480px; }
  .wok-webhosting .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .wok-webhosting .bento-tile.wide-2 { grid-column: span 2; }
  .wok-webhosting .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .wok-webhosting .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .wok-webhosting .pricing-card.featured { transform: none; }
  .wok-webhosting .audience-panel.active { grid-template-columns: 1fr; }
  .wok-webhosting .testi-layout { grid-template-columns: 1fr; }
  .wok-webhosting .indie-layout { grid-template-columns: 1fr; }
  .wok-webhosting .timeline { grid-template-columns: 1fr; gap: 48px; }
  .wok-webhosting .timeline::before { display: none; }
  .wok-webhosting .race-wrap { grid-template-columns: 1fr; }
  .wok-webhosting .vibe-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 767px) {
  /* Verberg de serverrack-widget op mobiel */
  .wok-webhosting .hero-visual { display: none !important; }
  .wok-webhosting .hero .container { grid-template-columns: 1fr !important; }
  .wok-webhosting .hero-usps { grid-template-columns: 1fr; }
  .wok-webhosting .quiz-options { grid-template-columns: 1fr; }
  .wok-webhosting .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .wok-webhosting .pricing-card.featured { order: -1; }
  .wok-webhosting .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .wok-webhosting .bento-tile { min-height: 180px; }
  .wok-webhosting .bento-tile.wide-2, .wok-webhosting .bento-tile.tall-2 { grid-column: auto; grid-row: auto; }
  .wok-webhosting .apps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .wok-webhosting .trustbar .container { justify-content: center; }
  .wok-webhosting .trust-divider { display: none; }
  .wok-webhosting .quiz-box { padding: 32px 20px; }
  .wok-webhosting .audience-panel.active { padding: 28px 20px; }
  .wok-webhosting .indie-stat.big { grid-column: auto; }
  .wok-webhosting .explain-cases { grid-template-columns: 1fr; }
  .wok-webhosting .final-cta-box { padding: 40px 24px; }
  .wh-sticky-cta { display: flex; }
}

/* ============ INLINE-STYLE MIGRATIE (statische styles uit webhosting.php) ============ */

/* Herbruikbare tekst-accenten (brand-kleur op inline emphasis) */
.wok-webhosting .accent-brand { color: var(--brand-primary); }
.wok-webhosting .accent-warning { color: var(--brand-warning); }

/* Hero pricenote (Trustpilot-link) */
.wok-webhosting .hero-pricenote { text-decoration: none; }
.wok-webhosting .hero-pricenote .trust-stars { color: #00b67a; font-size: 16px; }

/* Trustbar: klikbare Trustpilot-item + kleinere score-regel */
.wok-webhosting .trustbar a.trust-item { text-decoration: none; color: inherit; }
.wok-webhosting .trust-item-num-sm { font-size: 18px; }

/* Bento-tiles die een link zijn + AI-icoon-variant */
.wok-webhosting a.bento-tile { text-decoration: none; }
.wok-webhosting .bento-icon-ai { background: rgba(255,170,0,0.2); }

/* App-logo achtergronden per applicatie */
.wok-webhosting .app-logo-wp { background: rgba(33,117,155,0.12); }
.wok-webhosting .app-logo-woo { background: rgba(127,84,179,0.12); }
.wok-webhosting .app-logo-joomla { background: rgba(80,145,205,0.12); }
.wok-webhosting .app-logo-drupal { background: rgba(6,120,190,0.12); }
.wok-webhosting .app-logo-ai { background: linear-gradient(135deg,rgba(255,170,0,0.12),rgba(255,170,0,0.24)); }
.wok-webhosting .app-logo-static { background: linear-gradient(135deg,rgba(16,98,254,0.1),rgba(16,98,254,0.2)); }

/* Vergelijkingstabel: Trustpilot-cel + review-aantallen */
.wok-webhosting .compare-tp-link { color: inherit; }
.wok-webhosting .compare-tp-count { color: var(--gray-lighter); font-size: 11px; }

/* Terminal: live-regel */
.wok-webhosting .tl-live { color: #6ee58e; }

/* Indie-titel extra ondermarge */
.wok-webhosting .indie .h-section { margin-bottom: 18px; }

/* Testimonial-quote extra bovenmarge */
.wok-webhosting .testi-quote { margin-top: 18px; }

/* Sticky mobiele CTA: periode-suffix bij prijs */
.wh-sticky-cta .sm-price-per { font-size: 12px; color: var(--gray-lighter); font-weight: 500; }
