*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
.svg-icon { display:inline-block; vertical-align:middle; flex-shrink:0; }
:root {
  --bg-deep: #060f0a;
  --bg-card: #0b1a12;
  --bg-card-hover: #0f2318;
  --green-dark: #0d3320;
  --green-mid: #1a6b42;
  --green-bright: #2ed88a;
  --green-teal: #3cdfb4;
  --green-neon: #4ff5c5;
  --white: #f0f7f3;
  --white-dim: #b8ccc4;
  --brown-trunk: #a0703c;
  --brown-light: #c8944e;
  --gold: #d4a853;
  --radius: 16px;
  --radius-sm: 10px;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}
::selection { background: var(--green-bright); color: var(--bg-deep); }
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}
/* Mobile: noise overlay weghalen → minder paint werk → snellere LCP/Speed Index */
@media (max-width: 768px) {
  body::before { display: none; }
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 10px; }

/* ─── SCROLL OFFSET FOR FIXED NAV ─── */
#services, #portfolio, #hosting, #process, #contact, #blog, #faq, #scan, #visitekaartje, #qr, #testimonials {
  scroll-margin-top: 90px;
}
#services { scroll-margin-top: 0; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  background: rgba(6,15,10,0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(46,216,138,0.08);
  transition: background 0.4s, border-color 0.4s, opacity 0.4s;
}
nav.scrolled { background: rgba(6,15,10,0.92); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; border-radius: 0; }
.nav-logo span { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; }
.nav-logo .brand-3 { color: var(--green-bright); }
.nav-logo .brand-mid { color: var(--white); }
.nav-logo .brand-teal { color: var(--green-teal); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--white-dim); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; letter-spacing: 0.02em; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 100%; height: 2px; background: var(--green-bright);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-links a:hover { color: var(--green-bright); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-teal));
  color: var(--bg-deep); font-weight: 700; font-size: 0.85rem;
  border: none; border-radius: 50px; cursor: pointer; text-decoration: none;
  letter-spacing: 0.03em; transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta { margin-left: auto; grid-column: 3; }
.nav-cta-mobile { display: none; }
.hamburger { grid-column: 3; margin-left: auto; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,216,138,0.3); }

/* ─── HAMBURGER ─── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; border-radius: 2px; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; padding: 120px 40px 80px; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(46,216,138,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(46,216,138,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black, transparent);
  z-index: 0;
}
/* Three.js particle field — vult de hele hero, achter content maar voor grid.
   pointer-events: none zodat het nooit clicks blokkeert. */
#hero-three {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: block;
}
.hero-content { text-align: center; position: relative; z-index: 2; max-width: 900px; }
.hero-badge {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(46,216,138,0.55); margin-bottom: 28px; animation: fadeUp 0.8s ease-out;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: 'DM Serif Display', serif; font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.08; letter-spacing: 0; margin-bottom: 24px;
  animation: fadeUp 0.8s ease-out 0.15s both;
}
.hero h1 .accent { color: var(--green-bright); }
.hero h1 .accent-teal { color: var(--green-teal); }
.hero p {
  font-size: clamp(1rem, 1.8vw, 1.25rem); color: var(--white-dim);
  max-width: 600px; margin: 0 auto 40px; font-weight: 300;
  animation: fadeUp 0.8s ease-out 0.3s both;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 0.45s both;
}
.btn-primary {
  padding: 16px 36px; background: linear-gradient(135deg, var(--green-bright), var(--green-teal));
  color: var(--bg-deep); font-weight: 700; font-size: 1rem; border: none;
  border-radius: 60px; cursor: pointer; text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s; letter-spacing: 0.01em;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  line-height: 1.15;
}
/* ─── Universal arrow-right icon ("arr-r") — vervangt ALLE losse → tekens
   in buttons. Perfect gecentreerd op alle browsers. Gebruik:
   <a class="..."><span>Label</span><span class="arr-r" aria-hidden="true"></span></a>
   Of laat het gewoon als laatste inline-child staan. */
.arr-r {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1em 1em;
  /* mask-based kleur (werkt als currentColor niet in data-URI pakt) */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 1em 1em;
  mask-size: 1em 1em;
  background: currentColor; /* mask kleurt met currentColor */
  transition: transform 0.2s ease;
  vertical-align: middle;
}
a:hover > .arr-r, button:hover > .arr-r { transform: translateX(3px); }
/* Pijl-links variant */
.arr-l {
  display: inline-flex;
  width: 1em; height: 1em;
  flex-shrink: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5M11 18l-6-6 6-6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5M11 18l-6-6 6-6'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: 1em 1em; mask-size: 1em 1em;
  background: currentColor;
  vertical-align: middle;
}
/* Buttons die text + pijl combineren → inline-flex voor perfecte centrering */
.btn-secondary, .wd-cta, .proj-cta, .bpc-link, .blog-card-link,
.portfolio-link, .scan-cta-btn, .google-badge-cta,
.prijzen-back-link, .scan-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.15;
}
a:hover > .arr-l, button:hover > .arr-l { transform: translateX(-3px); transition: transform 0.2s ease; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(46,216,138,0.3); }
.btn-secondary {
  padding: 16px 36px; background: transparent; color: var(--white);
  font-weight: 600; font-size: 1rem; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 60px; cursor: pointer; text-decoration: none; transition: border-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-secondary:hover { border-color: var(--green-bright); color: var(--green-bright); }
.hero-stats {
  display: flex; gap: 48px; justify-content: center; margin-top: 64px;
  animation: fadeUp 0.8s ease-out 0.6s both;
}
.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.stat-num {
  font-size: 2.4rem; font-weight: 800; color: var(--green-bright);
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  height: 1.2em;
  display: flex; align-items: center; justify-content: center;
}
.stat-label { font-size: 0.8rem; color: var(--white-dim); font-weight: 400; margin-top: 4px; }
.stat-link { text-decoration: none; transition: transform 0.3s; }
.stat-link:hover { transform: translateY(-3px); }
.stat-google { font-size: 2.4rem; }

/* ─── GOOGLE REVIEW BADGE ─── */
.google-badge-wrap { display: flex; justify-content: center; margin-top: 48px; }
.google-badge {
  display: inline-flex; align-items: center; gap: 18px;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 20px 32px; text-decoration: none;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.google-badge:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.google-badge-icon { width: 36px; height: 36px; flex-shrink: 0; }
.google-badge-stars { color: #FBBC05; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 3px; }
.google-badge-score { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.google-badge-score strong { color: var(--white); }
.google-badge-cta { font-size: 0.78rem; color: var(--green-bright); margin-top: 4px; font-weight: 500; }
@media (max-width: 600px) {
  .google-badge { padding: 16px 20px; gap: 12px; }
  .google-badge-icon { width: 28px; height: 28px; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SECTIONS GENERAL ─── */
section { padding: 120px 40px; position: relative; }
.section-label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--green-bright);
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.section-label::before,
.section-label::after {
  content: ''; display: inline-block; width: 24px; height: 1px;
  background: var(--green-bright); opacity: 0.7; flex-shrink: 0;
}
.section-title {
  font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); text-align: center;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-sub { color: var(--white-dim); font-size: 1.05rem; font-weight: 300; max-width: 600px; margin-bottom: 56px; text-align: center; margin-left: auto; margin-right: auto; }

/* ─── SERVICES ─── */
#services { background: linear-gradient(180deg, var(--bg-deep) 0%, #071610 100%); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--bg-card); border: 1px solid rgba(46,216,138,0.06);
  border-radius: var(--radius); padding: 40px 32px; transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  position: relative; overflow: hidden; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  height: 100%; /* stretcht naar grid-row hoogte */
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-bright), var(--green-teal));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card:hover { border-color: rgba(46,216,138,0.15); transform: translateY(-4px); background: var(--bg-card-hover); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px; background: rgba(46,216,138,0.08);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 1.6rem;
}
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.service-card p {
  color: var(--white-dim); font-size: 0.92rem; font-weight: 300; line-height: 1.7;
  flex: 1 1 auto; /* rekt uit → duwt tag naar onderen */
  margin-bottom: 24px; /* ademruimte tussen tekst en groene pill */
}
.service-tag {
  display: block; padding: 8px 16px;
  width: 100%; max-width: 300px; box-sizing: border-box; text-align: center;
  background: rgba(46,216,138,0.06); border: 1px solid rgba(46,216,138,0.1);
  border-radius: 50px; font-size: 0.72rem; font-weight: 500;
  color: var(--green-teal); letter-spacing: 0.03em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: auto; /* flex-trick: kleeft aan de onderkant van de kaart */
}

/* ─── HOSTING PLANS ─── */
#hosting { background: var(--bg-deep); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.plan-card {
  background: var(--bg-card); border: 1px solid rgba(46,216,138,0.06);
  border-radius: var(--radius); padding: 40px 32px; position: relative;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s; display: flex; flex-direction: column;
}
.plan-card.featured {
  border-color: var(--green-bright);
  background: linear-gradient(180deg, rgba(46,216,138,0.06) 0%, var(--bg-card) 50%);
  transform: scale(1.03);
}
.plan-card.featured .plan-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  padding: 6px 20px; background: linear-gradient(135deg, var(--green-bright), var(--green-teal));
  color: var(--bg-deep); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 0 0 10px 10px;
}
.plan-card:hover { border-color: rgba(46,216,138,0.2); transform: translateY(-4px); }
.plan-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-name { font-size: 0.85rem; font-weight: 600; color: var(--green-teal); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.plan-price { font-size: 3rem; font-weight: 900; margin-bottom: 4px; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--white-dim); }
.plan-desc { color: var(--white-dim); font-size: 0.88rem; margin-bottom: 28px; font-weight: 300; }
.plan-features { list-style: none; flex: 1; }
.plan-features li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.88rem; color: var(--white-dim); display: flex; align-items: center; gap: 10px;
}
.plan-features li::before { content: '✓'; color: var(--green-bright); font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.plan-cta {
  display: block; margin-top: 28px; padding: 14px; text-align: center;
  border-radius: 12px; font-weight: 700; font-size: 0.9rem; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s; text-decoration: none;
}
.plan-card .plan-cta { background: transparent; border: 1px solid rgba(46,216,138,0.2); color: var(--green-bright); }
.plan-card .plan-cta:hover { background: rgba(46,216,138,0.08); }
.plan-card.featured .plan-cta {
  background: linear-gradient(135deg, var(--green-bright), var(--green-teal));
  color: var(--bg-deep); border: none;
}
.plan-card.featured .plan-cta:hover { box-shadow: 0 8px 30px rgba(46,216,138,0.3); transform: translateY(-2px); }

/* ─── PORTFOLIO ─── */
#portfolio { background: linear-gradient(180deg, #071610, var(--bg-deep)); }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.portfolio-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/10; background: var(--bg-card);
  border: 1px solid rgba(46,216,138,0.06); cursor: pointer; transition: transform 0.5s, box-shadow 0.5s, border-color 0.5s;
}
.portfolio-item:hover { border-color: rgba(46,216,138,0.2); transform: translateY(-4px); }
.portfolio-preview {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}
.portfolio-preview .mock-browser {
  width: 92%; height: 85%; background: #111; border-radius: 8px;
  overflow: hidden; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.mock-browser-bar {
  height: 28px; background: #1a1a1a; display: flex; align-items: center; gap: 6px; padding: 0 12px;
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-dot.r { background: #ff5f57; }
.mock-dot.y { background: #ffbd2e; }
.mock-dot.g { background: #28c940; }
.mock-browser-content { padding: 0; height: calc(100% - 28px); overflow: hidden; }
.mock-site { width: 100%; height: 100%; border-radius: 4px; position: relative; overflow: hidden; }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(4,10,6,0.92) 65%, rgba(4,10,6,0.98) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 26px; opacity: 0; transition: opacity 0.4s;
}
@media (hover: hover) {
  .portfolio-item:hover .portfolio-overlay { opacity: 1; }
}
.portfolio-overlay h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.portfolio-overlay p { font-size: 0.82rem; color: var(--white-dim); }
.portfolio-tag {
  display: inline-block; padding: 3px 12px; background: rgba(46,216,138,0.12);
  border-radius: 50px; font-size: 0.68rem; color: var(--green-teal);
  font-weight: 600; margin-top: 10px; width: fit-content;
}
.portfolio-link {
  display: inline-block; margin-top: 12px; font-size: 0.8rem; font-weight: 600;
  color: var(--green-bright); text-decoration: none; letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.portfolio-link:hover { opacity: 0.75; }
.portfolio-results {
  display: flex; gap: 16px; margin-top: 10px; margin-bottom: 4px;
}
.pr-stat {
  background: rgba(46,216,138,0.1); border: 1px solid rgba(46,216,138,0.2);
  border-radius: 8px; padding: 6px 12px; text-align: center;
}
.pr-val { display: block; font-size: 1rem; font-weight: 800; color: var(--green-bright); line-height: 1.2; }
.pr-lbl { display: block; font-size: 0.65rem; color: var(--white-dim); letter-spacing: 0.04em; margin-top: 2px; }
/* ─── QR SECTION ─── */
#qr-code { padding: 120px 40px; }
.qr-section-inner { max-width: 1100px; margin: 60px auto 0; }
.qr-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.qr-showcase-cards { display: flex; gap: 16px; align-items: flex-end; justify-content: center; }
.qr-sc-card {
  border-radius: 16px; padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 10px;
  border: 1px solid rgba(46,216,138,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.qr-sc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.qr-sc-dark { background: #0b1a12; }
.qr-sc-light { background: var(--green-bright); transform: rotate(-2deg); }
.qr-sc-light:hover { transform: rotate(-2deg) translateY(-6px); }
.qr-sc-white { background: #ffffff; transform: rotate(2deg); }
.qr-sc-white:hover { transform: rotate(2deg) translateY(-6px); }
.qr-sc-img { width: 110px; height: 110px; display: block; image-rendering: pixelated; }
.qr-sc-label { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-teal); font-family: 'JetBrains Mono', monospace; }
.qr-showcase-text h3 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--text-primary); margin: 0 0 16px; }
.qr-showcase-text p { color: var(--text-muted); line-height: 1.7; margin: 0 0 28px; }
.qr-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.qr-features li { display: flex; align-items: center; gap: 12px; color: var(--text-secondary); font-size: 0.95rem; }
.qr-feat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); flex-shrink: 0; box-shadow: 0 0 8px rgba(46,216,138,0.5); }
@media (max-width: 768px) {
  #qr-code { padding: 80px 20px; }
  .qr-showcase { grid-template-columns: 1fr; gap: 40px; }
  .qr-showcase-cards { gap: 10px; padding: 0 6px; }
  .qr-sc-card { padding: 12px; }
  .qr-sc-img { width: 70px; height: 70px; }
  .qr-sc-label { font-size: 0.55rem; }
  /* Minder rotatie zodat kaarten binnen de viewport blijven */
  .qr-sc-light { transform: rotate(-1deg); }
  .qr-sc-light:hover { transform: rotate(-1deg) translateY(-6px); }
  .qr-sc-white { transform: rotate(1deg); }
  .qr-sc-white:hover { transform: rotate(1deg) translateY(-6px); }
  .qr-showcase-text { text-align: center; }
  .qr-features { align-items: center; }
  .qr-features li { justify-content: center; }
}
/* Extra kleine schermen (iPhone SE en onder) */
@media (max-width: 380px) {
  .qr-showcase-cards { gap: 8px; }
  .qr-sc-card { padding: 10px; }
  .qr-sc-img { width: 60px; height: 60px; }
}

/* ─── QR MOCKUP ─── */
.portfolio-qr-preview { background: radial-gradient(ellipse at 50% 60%, #0d2018 0%, #060f09 100%); }
.qr-mockup-scene { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; gap: 20px; }
.qr-card {
  background: #0b1a12; border: 1px solid rgba(46,216,138,0.15);
  border-radius: 12px; padding: 14px; display: flex; flex-direction: column;
  align-items: center; gap: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}
.qr-card-2 { background: var(--green-bright); border-color: transparent; transform: rotate(3deg) translateY(6px); }
.qr-code-img { width: 90px; height: 90px; display: block; image-rendering: pixelated; }
.qr-label { font-size: 0.55rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-teal); font-family: 'JetBrains Mono', monospace; }

.mock-url {
  font-size: 0.6rem; color: rgba(255,255,255,0.35); font-family: 'JetBrains Mono', monospace;
  margin-left: 8px; letter-spacing: 0.02em;
}
/* ─── MELEK PORTFOLIO PREVIEW ─── */
.mock-melek {
  background: linear-gradient(135deg, #2c1810 0%, #6b3a2a 40%, #c4622d 100%);
  display: flex; align-items: center; justify-content: center;
}
.mock-melek-inner { text-align: center; }
.mock-melek-icon {
  display: flex; justify-content: center; margin-bottom: 8px;
}
.mock-melek-label {
  font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700;
  font-style: italic; color: #f5f0e8; letter-spacing: 0.05em; line-height: 1;
}
.mock-melek-sub {
  font-family: 'JetBrains Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: #d4a843; margin-top: 10px;
}

/* ─── VEYNUR PORTFOLIO PREVIEW ─── */
.mock-veynur {
  background: linear-gradient(135deg, #3d4f38 0%, #5a7a5e 50%, #8a9a7f 100%);
  display: flex; align-items: center; justify-content: center;
}
.mock-veynur-inner { text-align: center; }
.mock-veynur-icon {
  display: flex; justify-content: center; margin-bottom: 8px;
}
.mock-veynur-label {
  font-family: 'DM Serif Display', serif; font-size: 2.8rem; font-weight: 400;
  color: #faf8f4; letter-spacing: 0.12em; line-height: 1;
}
.mock-veynur-sub {
  font-family: 'JetBrains Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: #e8c49a; margin-top: 10px;
}

/* ─── TORUNS CLINIC PORTFOLIO PREVIEW ─── */
.mock-toruns {
  background: linear-gradient(135deg, #051a24 0%, #0a3347 45%, #0e506e 100%);
  display: flex; align-items: center; justify-content: center;
}
.mock-toruns-inner { text-align: center; }
.mock-toruns-icon {
  display: flex; justify-content: center; margin-bottom: 8px;
}
.mock-toruns-label {
  font-family: 'Inter', sans-serif; font-size: 2.4rem; font-weight: 700;
  color: #e8f6fc; letter-spacing: 0.18em; line-height: 1;
}
.mock-toruns-sub {
  font-family: 'JetBrains Mono', monospace; font-size: 0.65rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: #5bc4e8; margin-top: 10px;
}

/* ─── BABA CREATIVE PORTFOLIO PREVIEW ─── */
.mock-baba {
  background: url('images/portfolio-baba.webp') no-repeat top center / cover;
  filter: brightness(0.45) saturate(0.7);
  transition: filter 0.4s;
}
.portfolio-item:hover .mock-baba { filter: brightness(0.6) saturate(0.85); }

/* ─── ONURB.ME PORTFOLIO PREVIEW ─── */
.mock-onurb {
  background: url('images/portfolio-onurb.webp') no-repeat top center / cover;
  filter: brightness(0.45) saturate(0.7);
  transition: filter 0.4s;
}
.portfolio-item:hover .mock-onurb {
  filter: brightness(0.6) saturate(0.85);
}

.mock-vt {
  background: url('images/portfolio-vt.png.webp') no-repeat top center / cover;
  filter: brightness(0.45) saturate(0.7);
  transition: filter 0.4s;
}
.portfolio-item:hover .mock-vt {
  filter: brightness(0.6) saturate(0.85);
}

/* ─── DEVICE MOCKUP SCENE ─── */
.device-scene {
  position: relative; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 40% 50%, #1c2a20 0%, #0d1510 100%);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.device-laptop {
  width: 62%; position: relative; z-index: 1;
  transform: perspective(900px) rotateY(6deg) rotateX(2deg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}
.laptop-lid {
  background: #1e1e1e; border-radius: 7px 7px 0 0;
  border: 2px solid #333; padding: 5px; overflow: hidden;
}
.laptop-screen-inner {
  background: #000; border-radius: 3px; overflow: hidden;
  aspect-ratio: 16/9; position: relative;
}
.laptop-screen-inner iframe {
  width: 1280px; height: 800px; border: none; pointer-events: none;
  transform: scale(0.178); transform-origin: top left; display: block;
}
.laptop-base {
  background: linear-gradient(to bottom, #2a2a2a, #1e1e1e);
  height: 10px; border-radius: 0 0 6px 6px;
  border: 2px solid #333; border-top: none;
}
.device-phone {
  position: absolute; right: 6%; bottom: 4%; width: 17%; z-index: 2;
  transform: perspective(900px) rotateY(-10deg) rotate(3deg);
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.7));
}
.phone-body {
  background: #1e1e1e; border-radius: 14px;
  border: 2px solid #333; padding: 6px; position: relative;
}
.phone-notch {
  width: 30%; height: 4px; background: #333; border-radius: 4px;
  margin: 0 auto 4px;
}
.phone-screen-inner {
  background: #000; border-radius: 8px; overflow: hidden;
  aspect-ratio: 9/19; position: relative;
}
.phone-screen-inner iframe {
  width: 390px; height: 844px; border: none; pointer-events: none;
  transform: scale(0.135); transform-origin: top left; display: block;
}
.mock-1 { background: linear-gradient(135deg, #1a2332, #0f1923); }
.mock-1::after { content: ''; position:absolute; top:10%; left:8%; width:40%; height:4px; background: var(--green-bright); border-radius:2px; }
.mock-1::before { content: ''; position:absolute; top:22%; left:8%; width:70%; height:3px; background: rgba(255,255,255,0.1); border-radius:2px; }
.mock-2 { background: linear-gradient(135deg, #faf5ee, #f0e8d8); }
.mock-2::after { content: ''; position:absolute; top:15%; left:50%; transform:translateX(-50%); width:30%; height:30%; background:#333; border-radius:50%; opacity:0.15; }
.mock-3 { background: linear-gradient(180deg, #0a0a2e, #1a0a3e); }
.mock-3::after { content: ''; position:absolute; bottom:0; left:0; right:0; height:40%; background: linear-gradient(135deg, #6c3ce0, #e040a0); opacity:0.3; }
.mock-4 { background: linear-gradient(135deg, #0b1a12, #0d3320); }
.mock-4::after { content: ''; position:absolute; top:20%; right:10%; width:35%; height:50%; background: var(--green-bright); opacity:0.1; border-radius:12px; }

/* ─── VISITE CART ─── */
#visite-cart { background: var(--bg-deep); overflow: hidden; }
.visite-cart-wrapper {
  display: flex; align-items: center; justify-content: center;
  gap: 80px; max-width: 1100px; margin: 0 auto; flex-wrap: wrap;
}
.visite-cart-visual { perspective: 1200px; -webkit-perspective: 1200px; }
.business-card {
  width: 380px; height: 220px; border-radius: 16px; position: relative;
  transform-style: preserve-3d; -webkit-transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1); cursor: pointer;
  will-change: transform;
}
.business-card.flipped { transform: rotateY(180deg); -webkit-transform: rotateY(180deg); }
.card-face {
  position: absolute; inset: 0; border-radius: 16px;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  overflow: hidden;
  /* Force GPU layer — essentieel op iOS Safari om backface-visibility betrouwbaar
     te laten werken met preserve-3d + absolute children */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.card-face.card-back {
  /* Back face pre-flipped — samen met parent rotatie → correcte oriëntatie */
  transform: rotateY(180deg) translateZ(0);
  -webkit-transform: rotateY(180deg) translateZ(0);
}
.card-front {
  background: linear-gradient(135deg, #0a1f14 0%, #0d3320 40%, #071610 100%);
  padding: 32px; display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(46,216,138,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 60px rgba(46,216,138,0.05);
}
.card-front-top { display: flex; align-items: center; gap: 14px; }
.card-front-top img { width: 48px; height: 48px; border-radius: 0; object-fit: contain; }
.card-front-name { font-weight: 700; font-size: 1.1rem; }
.card-front-role { font-size: 0.75rem; color: var(--green-teal); font-weight: 500; }
.card-front-tagline { font-size: 0.72rem; color: var(--white-dim); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; }
.card-front-line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--green-bright), transparent); }
.card-back {
  /* Rotatie staat op .card-face.card-back (hierboven) — NIET hier duplicaten! */
  background: linear-gradient(135deg, #0d3320 0%, #0a1f14 100%);
  padding: 32px; display: flex; flex-direction: column;
  justify-content: center; gap: 14px; border: 1px solid rgba(46,216,138,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.card-back-item { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; color: var(--white-dim); }
.card-back-icon {
  width: 32px; height: 32px; background: rgba(46,216,138,0.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-bright); font-size: 0.85rem; flex-shrink: 0;
}
.visite-cart-info { max-width: 420px; }
.visite-cart-info h3 { font-family: 'DM Serif Display', serif; font-size: 2rem; margin-bottom: 16px; line-height: 1.2; }
.visite-cart-info p { color: var(--white-dim); font-weight: 300; margin-bottom: 24px; line-height: 1.8; }
.flip-hint { font-size: 0.78rem; color: var(--green-teal); font-weight: 500; display: flex; align-items: center; gap: 8px; }

/* ─── PROCESS ─── */
#process { background: linear-gradient(180deg, var(--bg-deep), #071610); }

.process-flow { max-width: 960px; margin: 60px auto 0; padding: 0 20px; }

.pf-step {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: start;
}

.pf-spine {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 8px;
}

.pf-bubble {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--green-bright);
  box-shadow: 0 0 24px rgba(46,216,138,0.2), inset 0 0 16px rgba(46,216,138,0.06);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; color: var(--green-bright); font-size: 1.05rem;
  flex-shrink: 0; z-index: 1; position: relative;
}
.pf-bubble::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(46,216,138,0.12);
}

.pf-vline {
  flex: 1; width: 2px; min-height: 80px;
  background: linear-gradient(to bottom, rgba(46,216,138,0.5), rgba(46,216,138,0.04));
  margin: 10px 0;
}

.pf-card {
  background: var(--bg-card);
  border: 1px solid rgba(46,216,138,0.08);
  border-radius: 16px; padding: 28px 30px;
  margin: 0 16px 16px;
  position: relative; overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.pf-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(46,216,138,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.pf-card:hover { border-color: rgba(46,216,138,0.22); box-shadow: 0 12px 40px rgba(46,216,138,0.08); transform: translateY(-3px); }
.pf-card:hover::before { opacity: 1; }

.pf-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(46,216,138,0.08); border: 1px solid rgba(46,216,138,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-bright); margin-bottom: 14px;
}

.pf-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-teal); margin-bottom: 8px; font-family: 'JetBrains Mono', monospace;
}

.pf-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.pf-card p { color: var(--white-dim); font-size: 0.875rem; font-weight: 300; line-height: 1.75; }

.pf-blank { }

/* ─── TESTIMONIALS CAROUSEL ─── */
#testimonials { background: #071610; }
/* ─── TESTIMONIALS 3-CARD BLUR CAROUSEL ─── */
.testi-stage {
  position: relative;
  max-width: 1300px;
  margin: 60px auto 0;
  padding: 10px 72px 44px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}
.testi-track {
  position: relative;
  min-height: 280px;
}
.testi-card {
  position: absolute;
  width: min(520px, 82vw);
  left: 50%;
  top: 0;
  background: linear-gradient(145deg, #0b1f14, #0f2a1a);
  border: 1px solid rgba(46,216,138,0.08);
  border-radius: 22px;
  padding: 40px 40px 36px;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1),
              filter 0.55s ease,
              opacity 0.55s ease,
              box-shadow 0.55s ease,
              border-color 0.55s ease;
}
.testi-card[data-pos="center"] {
  transform: translateX(-50%) scale(1);
  filter: blur(0);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
  border-color: rgba(46,216,138,0.22);
  box-shadow: 0 0 0 1px rgba(46,216,138,0.06),
              0 20px 56px rgba(0,0,0,0.45),
              0 0 60px rgba(46,216,138,0.09),
              inset 0 1px 0 rgba(46,216,138,0.1);
}
.testi-card[data-pos="left"] {
  transform: translateX(calc(-50% - 58vw)) scale(0.84);
  filter: blur(3.5px);
  opacity: 0.45;
  z-index: 2;
  pointer-events: none;
}
.testi-card[data-pos="right"] {
  transform: translateX(calc(-50% + 58vw)) scale(0.84);
  filter: blur(3.5px);
  opacity: 0.45;
  z-index: 2;
  pointer-events: none;
}
.testi-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(46,216,138,0.07);
  border: 1px solid rgba(46,216,138,0.22);
  color: var(--green-bright);
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.testi-arrow:hover {
  background: rgba(46,216,138,0.15);
  border-color: var(--green-bright);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(46,216,138,0.2);
}
.testi-arrow-prev { left: 0; }
.testi-arrow-next { right: 0; }
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 18px; letter-spacing: 2px; }
.testi-text { color: var(--white); font-size: 0.95rem; font-weight: 300; line-height: 1.8; font-style: italic; margin-bottom: 26px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.92rem;
}
.testi-av-photo { background-size: cover; background-position: center; background-color: transparent; font-size: 0; }
.testi-name { font-weight: 700; font-size: 0.9rem; }
.testi-role { font-size: 0.77rem; color: var(--white-dim); margin-top: 2px; }
.testi-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 8px;
}
.testi-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(46,216,138,0.2); border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.testi-dot.active { background: var(--green-bright); transform: scale(1.35); }
@media (max-width: 768px) {
  .testi-stage { padding: 10px 52px 32px; }
  .testi-arrow { width: 40px; height: 40px; }
  .testi-card[data-pos="left"],
  .testi-card[data-pos="right"] { opacity: 0.2; filter: blur(5px); }
}

/* ─── CONTACT ─── */
/* ── FAQ ── */
#faq { padding: 120px 40px; background: var(--bg-deep); }
.faq-list { max-width: 760px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(46,216,138,0.12); }
.faq-item:first-child { border-top: 1px solid rgba(46,216,138,0.12); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px; gap: 20px;
  font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 500;
  color: var(--white); text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green-bright); }
.faq-question[aria-expanded="true"] { color: var(--green-bright); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(46,216,138,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--green-bright);
  transition: transform 0.3s, background 0.3s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: rgba(46,216,138,0.1); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 4px;
}
.faq-answer.open { max-height: 300px; padding: 0 4px 20px; }
.faq-answer p { color: var(--white-dim); font-size: 0.97rem; line-height: 1.7; }
.faq-answer p strong { color: var(--white); }

#contact {
  background: linear-gradient(180deg, #071610, var(--bg-deep));
  /* Kleinere padding-top zodat bij /#contact de 'Neem Contact Op' heading direct onder de nav landt */
  padding-top: 40px;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; max-width: 1100px; margin: 0 auto; }
.contact-info h3 { font-family: 'DM Serif Display', serif; font-size: 2.2rem; margin-bottom: 20px; }
.contact-info p { color: var(--white-dim); font-weight: 300; line-height: 1.8; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(46,216,138,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-bright); font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-text { font-size: 0.92rem; color: var(--white-dim); }
.contact-detail-text strong { color: var(--white); display: block; font-size: 0.85rem; margin-bottom: 2px; }
.contact-map {
  margin-top: 24px; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(46,216,138,0.12);
}
.contact-form {
  background: var(--bg-card); border: 1px solid rgba(46,216,138,0.06);
  border-radius: var(--radius); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--white-dim); margin-bottom: 8px; letter-spacing: 0.04em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm);
  color: var(--white); font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green-bright); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); }
.form-submit, .scan-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-teal));
  color: var(--bg-deep); font-weight: 700; font-size: 1rem; border: none;
  border-radius: 12px; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
  letter-spacing: 0.02em; font-family: 'Outfit', sans-serif;
}
.form-submit:hover, .scan-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,216,138,0.3); }
.form-submit:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

/* Live validation states (Alpine.js) */
.form-group input.valid, .form-group textarea.valid {
  border-color: rgba(46,216,138,0.55);
  background: rgba(46,216,138,0.04);
}
.form-group input.invalid, .form-group textarea.invalid {
  border-color: rgba(255,107,107,0.55);
  background: rgba(255,107,107,0.04);
}
.form-error {
  display: block; margin-top: 6px; font-size: 0.78rem;
  color: #ff9b9b; font-weight: 500;
}
.form-counter {
  float: right; font-size: 0.72rem; font-weight: 500;
  color: rgba(255,255,255,0.35); letter-spacing: 0.04em;
}
.form-counter.warn { color: #ffb95c; }

/* Cloudflare Turnstile widget — links uitgelijnd, zonder kader, past bij vormgeving form */
.cf-turnstile {
  display: flex;
  justify-content: flex-start;
  margin: 4px 0 18px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}
.cf-turnstile:empty { display: none; }
/* De iframe binnenin afronden zodat hij bij de form-stijl past */
.cf-turnstile iframe {
  border-radius: 8px !important;
  max-width: 100% !important;
}

/* ─── Custom "Ik ben geen robot" checkbox ─── */
.human-verify {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  margin: 8px 0 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.human-verify.verifying {
  border-color: rgba(255,215,100,0.45);
  background: rgba(255,215,100,0.05);
}
.human-verify.verified {
  border-color: rgba(70,200,120,0.55);
  background: rgba(70,200,120,0.08);
}
.human-verify-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  flex: 1;
  min-width: 0;
}
.human-verify.verifying .human-verify-check,
.human-verify.verified .human-verify-check {
  cursor: default;
}
.human-verify-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.human-verify-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 5px;
  background: rgba(0,0,0,0.25);
  flex-shrink: 0;
  transition: all 0.25s ease;
  color: #fff;
}
.human-verify.verifying .human-verify-box {
  border-color: rgba(255,215,100,0.8);
  color: #ffd764;
}
.human-verify.verified .human-verify-box {
  border-color: var(--green-bright, #3ad17f);
  background: var(--green-bright, #3ad17f);
  color: #0a1a0e;
}
.human-verify-spinner {
  animation: hv-spin 0.8s linear infinite;
}
@keyframes hv-spin { to { transform: rotate(360deg); } }
.human-verify-label {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.01em;
}
.human-verify.verified .human-verify-label {
  color: var(--green-bright, #3ad17f);
  font-weight: 500;
}
.human-verify-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  font-size: 0.65rem;
  line-height: 1.15;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.human-verify-logo strong {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .human-verify {
    padding: 12px 14px;
    gap: 10px;
    /* Blijf ÉÉN rij op mobile — box + label + logo naast elkaar */
    flex-wrap: nowrap;
    flex-direction: row !important;
  }
  .human-verify-check {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px;
    min-width: 0;
  }
  .human-verify-box {
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
  }
  .human-verify-label {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .human-verify-logo { font-size: 0.6rem; }
  .human-verify-logo strong { font-size: 0.68rem; }
}
/* Extra-defensief: op ELKE mobile breedte moet box+label horizontaal staan */
@media (max-width: 768px) {
  .human-verify-check {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }
  .human-verify-box {
    flex-shrink: 0 !important;
    display: inline-flex !important;
  }
}

.scan-disclaimer {
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
  text-align: center; margin-top: 12px; line-height: 1.5;
}

/* ─── FOOTER ─── */
footer {
  padding: 60px 40px 30px; background: var(--bg-deep);
  border-top: 1px solid rgba(46,216,138,0.06);
}
.footer-content {
  max-width: 1200px; margin: 0 auto; display: flex;
  justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px;
}
.footer-brand { max-width: 320px; }
.footer-brand-name { font-weight: 700; font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand p { color: var(--white-dim); font-size: 0.85rem; font-weight: 300; line-height: 1.7; }
.footer-links { align-self: flex-start; }
.footer-links h4 { font-size: 0.8rem; font-weight: 700; color: var(--green-teal); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links a { display: block; color: var(--white-dim); text-decoration: none; font-size: 0.88rem; padding: 4px 0; transition: color 0.3s; }
.footer-links a:hover { color: var(--green-bright); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04); display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.78rem; color: var(--white-dim); }
.footer-socials { display: flex; gap: 12px; }
.footer-social-icon {
  width: 36px; height: 36px; border-radius: 10px; background: rgba(46,216,138,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-dim); font-size: 0.85rem; text-decoration: none; transition: background 0.3s, color 0.3s, transform 0.3s;
}
.footer-social-icon:hover { background: rgba(46,216,138,0.15); color: var(--green-bright); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: flex; padding-top: 8px; }
  .nav-cta-menu { display: inline-block; padding: 12px 24px; font-size: 0.9rem; white-space: nowrap; text-align: center; width: 100%; border-radius: 50px; color: #000 !important; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(6,15,10,0.97); padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid rgba(46,216,138,0.08);
  }
  section { padding: 80px 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-badge { color: rgba(46,216,138,0.9); font-size: 0.65rem; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 40px; width: 100%; align-items: start; }
  .stat { text-align: center; padding: 0 4px; display: flex; flex-direction: column; align-items: center; }
  .stat-num, .stat-num.stat-google { font-size: 1.5rem; line-height: 1.2; }
  .stat-label { font-size: 0.6rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info { background: var(--bg-card); border: 1px solid rgba(46,216,138,0.1); border-radius: 20px; padding: 28px 24px; }
  .contact-info h3 { font-size: 1.6rem; margin-bottom: 12px; }
  .contact-info > p { margin-bottom: 20px; font-size: 0.9rem; }
  .contact-detail { gap: 14px; margin-bottom: 16px; }
  .contact-detail-icon { width: 40px; height: 40px; flex-shrink: 0; }
  .contact-detail-text { font-size: 0.88rem; }
  .form-row { grid-template-columns: 1fr; }
  .visite-cart-wrapper { gap: 40px; flex-direction: column; }
  .visite-cart-info { max-width: 100%; text-align: center; }
  .flip-hint { justify-content: center; }
  .business-card { width: 320px; height: 190px; margin: 0 auto; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pf-step { grid-template-columns: 64px 1fr; }
  .pf-blank { display: none; }
  .pf-spine { order: -1; }
  .pf-card { margin: 0 0 16px 0; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-4px); }
  .footer-content { flex-direction: column; }
  #faq { padding: 80px 20px; }
  .section-title { text-align: center; }
}
@media (max-width: 500px) {
  .hero h1 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .business-card { width: 280px; height: 170px; margin: 0 auto; }
  .card-front, .card-back { padding: 16px; }
  .card-back-item { font-size: 0.68rem; gap: 8px; }
  .card-back-icon { width: 24px; height: 24px; font-size: 0.75rem; flex-shrink: 0; }
  .visite-cart-info { max-width: 100%; width: 100%; }
  .visite-cart-info h3 { font-size: 1.6rem; }
  .flip-hint { font-size: 0.82rem; }
}

/* ─── PAGE LOADER ─── */
#page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  transition: opacity .5s ease, transform .5s ease;
}
#page-loader.loader-out { opacity: 0; transform: scale(1.04); pointer-events: none; }
.loader-logo { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; letter-spacing: -.02em; }
.loader-logo .lg { color: var(--green-bright); }
.loader-logo .lt { color: var(--green-teal); }
.loader-bar { width: 200px; height: 2px; background: rgba(255,255,255,.06); border-radius: 2px; overflow: hidden; }
.loader-bar-fill { height: 100%; width: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--green-bright), var(--green-teal)); transition: transform .08s linear; }
.loader-counter { font-family: 'JetBrains Mono', monospace; font-size: .8rem; color: var(--white-dim); letter-spacing: .1em; }


/* ─── SCROLL PROGRESS BAR ─── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--green-bright), var(--green-teal));
  z-index: 10001; box-shadow: 0 0 8px rgba(46,216,138,.5);
  transform: scaleX(0); transform-origin: left;
  transition: transform .08s linear;
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed; inset: 0; z-index: 99998;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(6,15,10,0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.cookie-banner.hidden { opacity: 0; pointer-events: none; visibility: hidden; }
.cookie-banner-inner {
  width: 100%; max-width: 520px; padding: 32px;
  background: #0d1f16; border: 1px solid rgba(46,216,138,0.2);
  border-radius: 24px; box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(46,216,138,0.08);
  animation: cookieIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes cookieIn { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: none; } }
.cookie-banner-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--text-primary); }
.cookie-banner-text { font-size: 0.83rem; color: var(--white-dim); line-height: 1.6; margin-bottom: 16px; }
.cookie-banner-text a { color: var(--green-bright); text-decoration: none; }
.cookie-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.cookie-option {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(46,216,138,0.08);
  border-radius: 12px; padding: 12px 14px; cursor: pointer; gap: 12px;
}
.cookie-option-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.cookie-option-name { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); }
.cookie-option-desc { font-size: 0.75rem; color: var(--white-dim); }
.cookie-toggle { display: none; }
.cookie-toggle-ui {
  width: 40px; height: 22px; border-radius: 11px; background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(46,216,138,0.2); flex-shrink: 0; position: relative;
  transition: background 0.3s, border-color 0.3s; cursor: pointer;
}
.cookie-toggle-ui::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 50%; background: #fff;
  transition: transform 0.3s, background 0.3s; opacity: 0.4;
}
.cookie-toggle:checked + .cookie-toggle-ui { background: var(--green-bright); border-color: var(--green-bright); }
.cookie-toggle:checked + .cookie-toggle-ui::after { transform: translateX(18px); opacity: 1; background: #fff; }
.cookie-toggle-ui.locked { opacity: 0.5; cursor: not-allowed; }
.cookie-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btn-reject,
.cookie-btn-essential,
.cookie-btn-all {
  flex: 1 1 0;
  min-width: 0;
  padding: 11px 10px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
/* Alles afwijzen — subtiele ghost-knop */
.cookie-btn-reject {
  background: transparent;
  color: var(--white-dim);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.cookie-btn-reject:hover { border-color: rgba(255,255,255,0.35); color: var(--white); }

/* Enkel optionele — groene outline */
.cookie-btn-essential {
  background: transparent;
  color: var(--green-bright);
  border: 1.5px solid rgba(46,216,138,0.3);
}
.cookie-btn-essential:hover { background: rgba(46,216,138,0.08); border-color: var(--green-bright); }

/* Alles accepteren — gevulde primaire knop */
.cookie-btn-all {
  border: none;
  background: linear-gradient(135deg, var(--green-bright), var(--green-teal));
  color: #000;
  font-weight: 700;
}
.cookie-btn-all:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(46,216,138,0.3); }

@media (max-width: 500px) {
  .cookie-banner-inner { padding: 22px; }
  .cookie-banner-actions { flex-direction: column; gap: 10px; }
  .cookie-btn-reject, .cookie-btn-essential, .cookie-btn-all { font-size: 0.88rem; padding: 12px; }
}

/* ─── CLICK RIPPLE ─── */
@keyframes ripple { from { transform: scale(0); opacity: 1; } to { transform: scale(2.5); opacity: 0; } }

/* ─── GLITCH TITLE ─── */
.section-title { position: relative; }
.section-title.glitch::before,
.section-title.glitch::after {
  content: attr(data-text); position: absolute; left: 0; top: 0; width: 100%; overflow: hidden;
  font-family: 'DM Serif Display', serif;
}
.section-title.glitch::before { color: var(--green-teal); animation: g1 .25s infinite; clip-path: polygon(0 25%, 100% 25%, 100% 50%, 0 50%); }
.section-title.glitch::after { color: rgba(46,216,138,.6); animation: g2 .3s infinite; clip-path: polygon(0 60%, 100% 60%, 100% 78%, 0 78%); }
@keyframes g1 { 0% { transform: translateX(-3px); } 50% { transform: translateX(3px); } 100% { transform: translateX(-2px); } }
@keyframes g2 { 0% { transform: translateX(3px); } 50% { transform: translateX(-3px); } 100% { transform: translateX(1px); } }

/* ─── HERO Z-INDEX FIX ─── */
.hero-content { z-index: 3 !important; }


/* ─── NAV ACTIVE LINK ─── */
.nav-links a.nav-active { color: var(--green-bright); }
.nav-links a.nav-active::after { transform: scaleX(1); }

/* ─── HERO STATS ─── */
/* Stats blijven altijd zichtbaar; alleen het getal telt op via JS */

/* ─── SECTION CONTENT Z-INDEX (above canvas orbs) ─── */
#services > div, #hosting > div, #process > div, #testimonials > div,
.services-grid, .pricing-grid, .process-flow, .testimonial-carousel {
  position: relative; z-index: 1;
}

/* ─── SERVICE CARD ICON SPIN ON HOVER ─── */
.service-card:hover .service-icon { animation: spinOnce .5s ease; }
@keyframes spinOnce { from { transform: rotate(0deg) scale(1); } 50% { transform: rotate(15deg) scale(1.15); } to { transform: rotate(0deg) scale(1); } }

/* ─── TESTIMONIAL CARD STARS GLOW ─── */
.testimonial-card:hover .testimonial-stars { text-shadow: 0 0 12px rgba(212,168,83,.6); }

/* ─── PERFORMANCE: skip rendering off-screen sections until needed ─── */
/* content-visibility: auto veroorzaakte lege sections op mobile (intrinsic-size te klein
   → secties collapse'n visueel totdat render triggert, waardoor pagina leeg lijkt).
   Volledig uit voor nu — lazy loading gebeurt al via `loading="lazy"` op images/iframes. */

/* ─── MOBILE: disable non-composited animations that cause reflow ─── */
@media (max-width: 768px) {
  .hero-grid { display: none; }
  * { will-change: auto !important; }
  /* Disable all fadeUp on mobile — runs immediately, no delay */
  .hero-badge, .hero h1, .hero p, .hero-actions, .hero-stats {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  /* Reveal-animaties mogen firen op mobile (IntersectionObserver in scripts.js),
     zolang GSAP ScrollTrigger uit staat (wat nu het geval is). Zo krijg je een mooie
     1-voor-1 fade-in als je scrollt i.p.v. alles ineens zichtbaar. */

  /* Portfolio overlay op mobile — pure click-toggle:
     - default verborgen (alleen foto zichtbaar)
     - .active → permanent zichtbaar nadat user tikt
     - tweede tik → verdwijnt weer
     GEEN peek/scroll-reveal. */
  .portfolio-overlay {
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(180deg, transparent 15%, rgba(4,10,6,0.92) 55%, rgba(4,10,6,0.97) 100%);
    padding: 18px 20px;
    pointer-events: none;
  }
  .portfolio-item.active .portfolio-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .portfolio-overlay h3 { font-size: 1.05rem; }
  .portfolio-overlay p { font-size: 0.78rem; }
  /* Tap-hint badge rechtsboven op elk portfolio-item — verdwijnt wanneer open */
  .portfolio-item { position: relative; }
  .portfolio-item::after {
    content: 'ⓘ Tik voor details';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(4,10,6,0.82);
    color: var(--green-bright);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 20px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.35s ease;
    z-index: 3;
    border: 1px solid rgba(46,216,138,0.25);
  }
  .portfolio-item.active::after { opacity: 0; }

  /* Business card op mobile — ECHT 3D flip net als op desktop.
     Forceer GPU-layer + preserve-3d expliciet voor iOS Safari betrouwbaarheid. */
  .visite-cart-visual {
    perspective: 1000px !important;
    -webkit-perspective: 1000px !important;
    transform-style: preserve-3d !important;
    -webkit-transform-style: preserve-3d !important;
  }
  .business-card {
    width: 300px !important;
    height: 180px !important;
    margin: 0 auto !important;
    transform-style: preserve-3d !important;
    -webkit-transform-style: preserve-3d !important;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) !important;
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) !important;
    will-change: transform;
  }
  .business-card.flipped {
    transform: rotateY(180deg) translate3d(0,0,0) !important;
    -webkit-transform: rotateY(180deg) translate3d(0,0,0) !important;
  }
  .business-card .card-face {
    position: absolute !important;
    inset: 0 !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    transform: translate3d(0,0,0) !important;
    -webkit-transform: translate3d(0,0,0) !important;
  }
  .business-card .card-face.card-back {
    transform: rotateY(180deg) translate3d(0,0,0) !important;
    -webkit-transform: rotateY(180deg) translate3d(0,0,0) !important;
  }
  .flip-hint::before { content: '↻ Tik op het kaartje om de achterkant te zien'; }
  .flip-hint { font-size: 0; } /* verberg originele tekst */
  .flip-hint::before { font-size: 0.82rem; color: var(--green-teal); font-weight: 500; }
  /* Nav op mobile NIET meer sticky — scrollt gewoon weg naar boven,
     blijft staan op de top van de pagina i.p.v. op elke scherm te zweven */
  nav {
    position: absolute !important;
  }
  /* Skip loader entirely on mobile — handled in JS */
  #page-loader { display: none; }
}

/* ─── WEBDESIGN PRICING (PRIJZEN) ─── */
#prijzen { background: linear-gradient(180deg, var(--bg-deep) 0%, #071510 100%); }
.wd-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 0 40px;
}
.wd-card {
  background: var(--bg-card);
  border: 1px solid rgba(46,216,138,0.08);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.wd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border-color: rgba(46,216,138,0.2);
}
.wd-card-featured {
  border-color: rgba(46,216,138,0.3);
  background: linear-gradient(180deg, rgba(46,216,138,0.05) 0%, var(--bg-card) 40%);
  box-shadow: 0 0 0 1px rgba(46,216,138,0.2), 0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(-8px);
}
.wd-card-featured:hover { transform: translateY(-14px); }
.wd-card-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--green-bright), var(--green-teal));
  color: var(--bg-deep); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 18px; border-radius: 20px; white-space: nowrap;
}
.wd-card-icon { font-size: 2rem; margin-bottom: 16px; }
.wd-card-name { font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; margin-bottom: 8px; }
.wd-card-price { font-size: 1rem; color: var(--white-dim); margin-bottom: 10px; }
.wd-card-price strong { font-size: 2rem; font-weight: 800; color: var(--green-bright); font-family: 'Outfit', sans-serif; }
.wd-card-desc { font-size: 0.88rem; color: var(--white-dim); line-height: 1.6; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(46,216,138,0.08); }
.wd-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 28px; }
.wd-features li { font-size: 0.88rem; color: var(--white-dim); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.wd-check { color: var(--green-bright); font-weight: 700; flex-shrink: 0; }
.wd-cta {
  display: block; text-align: center; padding: 14px 20px;
  background: transparent; border: 1px solid rgba(46,216,138,0.3);
  border-radius: 12px; color: var(--green-bright);
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  letter-spacing: 0.02em;
}
.wd-cta:hover { background: var(--green-bright); border-color: var(--green-bright); color: var(--bg-deep); }
.wd-card-featured .wd-cta { background: linear-gradient(135deg, var(--green-bright), var(--green-teal)); border-color: transparent; color: var(--bg-deep); }
.wd-card-featured .wd-cta:hover { opacity: 0.85; }
.wd-note { text-align: center; color: var(--white-dim); font-size: 0.9rem; margin-top: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
@media (max-width: 900px) {
  .wd-pricing-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 20px; }
  .wd-card-featured { transform: none; }
  .wd-card-featured:hover { transform: translateY(-6px); }
}

/* ─── WHATSAPP FLOATING BUTTON ─── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 8999; box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 36px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-float::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2.2s ease-out infinite; pointer-events: none;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.7); opacity: 0; } }
.whatsapp-tooltip {
  position: absolute; right: 70px;
  background: #0d1f16; color: #fff; font-size: 0.78rem; font-weight: 600;
  padding: 6px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
  border: 1px solid rgba(46,216,138,0.2);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@media (max-width: 768px) {
  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none; }
}

/* ─── PROJECTVOORBEELDEN TABS (prijzen.html) ─── */
/* ─── PROJECTVOORBEELDEN — Optie 4 Tabbladen ─── */
.proj-examples-section { max-width: 1100px; margin: 72px auto 0; }
.projects-header { margin-bottom: 40px; }
.projects-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--green-teal); border: 1px solid rgba(60,223,180,0.22);
  border-radius: 99px; padding: 6px 14px; margin-bottom: 16px;
}
.projects-header h2 { font-size: 2rem; font-weight: 700; line-height: 1.25; margin-bottom: 10px; }
.projects-header h2 span { color: var(--green-bright); }
.projects-header p { color: var(--white-dim); font-size: 0.9rem; line-height: 1.7; max-width: 580px; }

.proj-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid rgba(46,216,138,0.12);
  margin-bottom: 32px;
}
.proj-tab {
  padding: 14px 28px; font-size: 0.85rem; font-weight: 600;
  color: var(--white-dim); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all 0.2s; user-select: none;
}
.proj-tab:hover { color: var(--white); }
.proj-tab.active { color: var(--green-bright); border-bottom-color: var(--green-bright); }

.proj-panel { display: none; }
.proj-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.proj-left {
  /* Kader volledig weggehaald — image + tekst staan nu naakt */
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.proj-badge {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--green-teal);
}
.proj-name { font-size: 1.5rem; font-weight: 700; line-height: 1.2; }
.proj-desc { font-size: 0.83rem; color: var(--white-dim); line-height: 1.7; }

.proj-mock {
  height: 130px;
  background: linear-gradient(135deg, #071a0e, #0a3020);
  border-radius: 10px;
  border: 1px solid rgba(46,216,138,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; color: rgba(46,216,138,0.6);
  letter-spacing: 0.1em; font-family: 'JetBrains Mono', monospace;
}

/* Screenshot-variant: pure foto, 100% naakt, geen kader/achtergrond */
.proj-mock-img {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  text-decoration: none;
  line-height: 0;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.proj-mock-img img {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  border-radius: 0;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.proj-mock-img:hover { transform: translateY(-2px); }
.proj-mock-img:hover img { transform: scale(1.01); }

/* Kleine tekst-link onder de foto — pure tekst, geen achtergrond/kader */
.proj-mock-link {
  display: block;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--green-bright);
  text-decoration: none;
  margin-top: -6px;
  transition: color 0.2s, opacity 0.2s;
  opacity: 0.85;
}
.proj-mock-link:hover { color: var(--green-teal); opacity: 1; }

.proj-stats { display: flex; gap: 20px; }
.proj-stat { display: flex; flex-direction: column; gap: 3px; }
.proj-stat-val { font-size: 1.1rem; font-weight: 800; color: var(--green-bright); }
.proj-stat-lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white-dim); }

.proj-cta {
  margin-top: 4px; display: inline-block; padding: 12px 20px;
  background: rgba(46,216,138,0.1); border: 1px solid rgba(46,216,138,0.22);
  border-radius: 10px; color: var(--green-bright); font-weight: 600;
  font-size: 0.82rem; text-decoration: none; transition: all 0.2s;
  text-align: center;
}
.proj-cta:hover { background: rgba(46,216,138,0.18); }

.proj-right {
  background: linear-gradient(145deg, #0b1f14, #0f2a1a);
  border: 1px solid rgba(46,216,138,0.12);
  border-radius: var(--radius);
  padding: 28px;
}
.proj-right-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--green-teal); margin-bottom: 20px;
}
.proj-feature-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 16px;
}
.proj-feature-row:last-of-type { border-bottom: none; }
.proj-feat-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.proj-feat-name { font-size: 0.85rem; color: var(--white); font-weight: 500; line-height: 1.35; }
.proj-feat-desc { font-size: 0.72rem; color: var(--white-dim); line-height: 1.4; }
.proj-feat-price { font-size: 0.88rem; font-weight: 700; color: var(--white); white-space: nowrap; padding-top: 2px; }
.proj-feat-free { color: var(--green-teal) !important; }

.proj-total-row {
  margin-top: 16px; padding: 14px 16px;
  background: rgba(46,216,138,0.06);
  border: 1px solid rgba(46,216,138,0.18);
  border-radius: 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.proj-total-label { font-size: 0.82rem; color: var(--green-teal); font-weight: 600; }
.proj-total-val { font-size: 1.6rem; font-weight: 800; color: var(--green-bright); }

@media (max-width: 860px) {
  .proj-panel.active { grid-template-columns: 1fr; }
  .proj-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .proj-tab { white-space: nowrap; padding: 12px 18px; font-size: 0.8rem; }
  .projects-header h2 { font-size: 1.5rem; }
  .proj-left, .proj-right { padding: 22px; }
}

/* ─── GRATIS SCAN — COMPACT HOME CTA ─── */
.scan-cta-section {
  padding: 80px 40px;
  background: var(--bg-deep);
}
.scan-cta-card {
  position: relative;
  max-width: 900px; margin: 0 auto;
  background: linear-gradient(145deg, #0b1f14, #0f2a1a);
  border: 1px solid rgba(46,216,138,0.2);
  border-radius: 28px;
  padding: 60px 64px;
  box-shadow:
    0 0 0 1px rgba(46,216,138,0.06),
    0 24px 64px rgba(0,0,0,0.5),
    0 0 80px rgba(46,216,138,0.07),
    inset 0 1px 0 rgba(46,216,138,0.12);
  overflow: hidden;
}
.scan-cta-card::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(46,216,138,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.scan-cta-card::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(60,223,180,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.scan-cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.scan-cta-badge {
  display: inline-block;
  background: rgba(46,216,138,0.12); border: 1px solid rgba(46,216,138,0.25);
  color: var(--green-bright); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 16px;
}
.scan-cta-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.2;
  color: var(--white); margin-bottom: 12px;
}
.scan-cta-text p {
  font-size: 0.92rem; color: var(--white-dim); line-height: 1.65;
  max-width: 480px; margin-bottom: 20px;
}
.scan-cta-pillars {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.scan-cta-pillars span {
  background: rgba(46,216,138,0.08); border: 1px solid rgba(46,216,138,0.15);
  color: var(--white-dim); font-size: 0.78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
}
.scan-cta-right {
  flex-shrink: 0; text-align: center;
}
.scan-cta-icon {
  font-size: 3.2rem; display: block; margin-bottom: 20px;
  filter: drop-shadow(0 0 16px rgba(46,216,138,0.5));
}
.scan-cta-btn {
  display: inline-block;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-teal));
  color: var(--bg-deep); font-weight: 800; font-size: 1rem;
  border-radius: 60px; text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(46,216,138,0.4);
  letter-spacing: 0.02em;
}
.scan-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(46,216,138,0.5);
}
.scan-cta-sub {
  font-size: 0.75rem; color: var(--white-dim);
  margin-top: 10px; opacity: 0.65;
}
@media (max-width: 768px) {
  .scan-cta-section { padding: 40px 20px; }
  .scan-cta-card { padding: 40px 28px; border-radius: 20px; }
  .scan-cta-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .scan-cta-right { width: 100%; }
  .scan-cta-btn { width: 100%; text-align: center; display: block; }
  .scan-cta-icon { display: none; }
}

/* ─── BLOG SECTION ─── */
#blog { background: var(--bg-deep); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 0 40px;
  align-items: start;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(46,216,138,0.07);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s, box-shadow 0.35s;
}
.blog-card:nth-child(2) { margin-top: 36px; }
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(0,0,0,0.4);
}
.blog-card-accent {
  height: 4px;
}
.blog-card:nth-child(1) .blog-card-accent {
  background: linear-gradient(90deg, #2ed88a, #3cdfb4);
}
.blog-card:nth-child(2) .blog-card-accent {
  background: linear-gradient(90deg, #3cdfb4, #2eb8d8);
}
.blog-card:nth-child(3) .blog-card-accent {
  background: linear-gradient(90deg, #d88a2e, #d8b82e);
}
.blog-card-body {
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 14px;
}
.blog-card:nth-child(1) .blog-card-tag { color: #2ed88a; }
.blog-card:nth-child(2) .blog-card-tag { color: #2eb8d8; }
.blog-card:nth-child(3) .blog-card-tag { color: #d8b82e; }
.blog-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.12rem; line-height: 1.4;
  color: var(--white); margin-bottom: 12px; flex: 1;
}
.blog-card-excerpt {
  font-size: 0.83rem; color: var(--white-dim);
  line-height: 1.65; margin-bottom: 20px;
}
.blog-card-meta {
  display: flex; gap: 16px; margin-bottom: 16px;
  font-size: 0.72rem; color: rgba(255,255,255,0.28);
}
.blog-card-link {
  font-size: 0.83rem; font-weight: 700;
  text-decoration: none; margin-top: auto;
  transition: opacity 0.2s;
}
.blog-card:nth-child(1) .blog-card-link { color: #2ed88a; }
.blog-card:nth-child(2) .blog-card-link { color: #2eb8d8; }
.blog-card:nth-child(3) .blog-card-link { color: #d8b82e; }
.blog-card-link:hover { opacity: 0.75; }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 20px; }
  .blog-card:nth-child(2) { margin-top: 0; }
}

/* ═══════════════════════════════════════════════════
   BLOG OVERVIEW PAGE
═══════════════════════════════════════════════════ */
.blog-page-hero {
  padding: 140px 40px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(46,216,138,0.07) 0%, transparent 70%);
  text-align: center;
  border-bottom: 1px solid rgba(46,216,138,0.08);
}
.blog-page-hero-inner { max-width: 700px; margin: 0 auto; }
.blog-page-badge {
  display: inline-block;
  background: rgba(46,216,138,0.1); border: 1px solid rgba(46,216,138,0.25);
  color: var(--green-bright); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 20px; margin-bottom: 24px;
}
.blog-page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1; margin-bottom: 18px;
}
.blog-page-hero p {
  font-size: 1rem; color: var(--white-dim);
  max-width: 540px; margin: 0 auto; line-height: 1.7;
}
.blog-page-section { padding: 72px 40px 40px; }
.blog-page-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
}
.blog-page-card {
  background: var(--bg-card);
  border: 1px solid rgba(46,216,138,0.08);
  border-radius: 20px; padding: 36px 40px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.blog-page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46,216,138,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.bpc-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--green-bright); text-transform: uppercase; margin-bottom: 14px;
}
.bpc-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.3; color: var(--white); margin-bottom: 12px;
}
.bpc-excerpt {
  font-size: 0.9rem; color: var(--white-dim); line-height: 1.7; margin-bottom: 18px;
}
.bpc-meta {
  display: flex; gap: 20px;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.bpc-link {
  font-size: 0.88rem; font-weight: 700;
  color: var(--green-bright); text-decoration: none;
  transition: color 0.2s;
}
.bpc-link:hover { color: var(--green-teal); }
.blog-page-cta {
  background: linear-gradient(135deg, #061209 0%, #0d2318 50%, #061209 100%);
  border-top: 1px solid rgba(46,216,138,0.12);
  padding: 80px 40px; text-align: center;
}
.blog-page-cta-inner { max-width: 600px; margin: 0 auto; }
.blog-page-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--white); margin-bottom: 14px;
}
.blog-page-cta p { font-size: 0.95rem; color: var(--white-dim); margin-bottom: 32px; line-height: 1.7; }
.blog-page-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.blog-back-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  line-height: 1.15;
  margin-bottom: 20px;
  width: 100%;
  font-size: 0.85rem; color: var(--white-dim); text-decoration: none;
  transition: color 0.2s;
}
.blog-back-link:hover { color: var(--green-bright); }
@media (max-width: 768px) {
  .blog-page-hero { padding: 120px 24px 60px; }
  .blog-page-section { padding: 48px 20px 20px; }
  .blog-page-card { padding: 28px 24px; }
  .blog-page-cta { padding: 60px 24px; }
  .blog-page-cta-btns { flex-direction: column; align-items: stretch; }
}

/* ═══════════════════════════════════════════════════
   BLOG POST PAGES
═══════════════════════════════════════════════════ */
.blog-post-header {
  padding: 140px 40px 72px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(46,216,138,0.06) 0%, transparent 70%);
  border-bottom: 1px solid rgba(46,216,138,0.08);
}
.blog-post-header-inner { max-width: 820px; margin: 0 auto; }
.blog-post-tag {
  display: inline-block;
  background: rgba(46,216,138,0.1); border: 1px solid rgba(46,216,138,0.25);
  color: var(--green-bright); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 22px;
}
.blog-post-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15; color: var(--white); margin-bottom: 20px;
}
.blog-post-intro {
  font-size: 1.1rem; color: var(--white-dim); line-height: 1.7;
  max-width: 700px; margin-bottom: 28px;
}
.blog-post-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}
.blog-post-meta strong { color: var(--white-dim); }

/* ─── BODY LAYOUT ─── */
.blog-post-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  max-width: 1200px; margin: 64px auto 80px;
  padding: 0 40px;
  align-items: start;
}
.blog-post-content {
  min-width: 0;
  font-size: 1rem; line-height: 1.85; color: var(--white-dim);
}
.blog-post-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white); margin: 48px 0 16px; line-height: 1.2;
}
.blog-post-content h2:first-child { margin-top: 0; }
.blog-post-content p { margin-bottom: 18px; }
.blog-post-content ul, .blog-post-content ol {
  padding-left: 22px; margin-bottom: 20px;
}
.blog-post-content li { margin-bottom: 8px; line-height: 1.7; }
.blog-post-content strong { color: var(--white); }
.blog-post-content em { color: var(--green-teal); font-style: italic; }

/* ─── TABLE OF CONTENTS ─── */
.blog-toc {
  background: rgba(46,216,138,0.05);
  border: 1px solid rgba(46,216,138,0.12);
  border-radius: 14px; padding: 24px 28px;
  margin-bottom: 40px;
}
.blog-toc-title {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-bright); margin-bottom: 12px;
}
.blog-toc ol { padding-left: 18px; margin: 0; }
.blog-toc li { margin-bottom: 6px; }
.blog-toc a {
  color: var(--white-dim); text-decoration: none; font-size: 0.9rem;
  transition: color 0.2s;
}
.blog-toc a:hover { color: var(--green-bright); }

/* ─── CALLOUT ─── */
.blog-callout {
  display: flex; gap: 18px; align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid rgba(255,200,50,0.5);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px; margin: 28px 0;
}
.blog-callout-green {
  border-left-color: var(--green-bright);
  background: rgba(46,216,138,0.04);
  border-color: rgba(46,216,138,0.12);
}
.blog-callout-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  min-width: 30px; min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,200,50,0.95);
  line-height: 1;
}
.blog-callout-green .blog-callout-icon { color: var(--green-bright); }
.blog-callout-icon svg {
  width: 28px !important;
  height: 28px !important;
  display: block;
  stroke: currentColor;
  fill: none;
}
.blog-callout strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 6px; }
.blog-callout p { font-size: 0.88rem; color: var(--white-dim); line-height: 1.65; margin: 0; }
.blog-callout-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-teal));
  color: var(--bg-deep); font-weight: 700; font-size: 0.88rem;
  line-height: 1.15;
  border-radius: 50px; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 18px rgba(46,216,138,0.22);
  max-width: 100%;
  text-align: center;
}
.blog-callout-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(46,216,138,0.32);
}
.blog-callout-btn .btn-arrow {
  display: inline-flex; align-items: center;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.blog-callout-btn:hover .btn-arrow { transform: translateX(3px); }
@media (max-width: 480px) {
  .blog-callout-btn {
    padding: 12px 20px;
    font-size: 0.86rem;
    width: auto;
  }
}

/* ─── PRICE TABLE ─── */
.blog-price-table {
  border: 1px solid rgba(46,216,138,0.1);
  border-radius: 14px; overflow: hidden;
  margin: 28px 0;
}
.bpt-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 0; border-bottom: 1px solid rgba(46,216,138,0.06);
  padding: 16px 20px;
  font-size: 0.88rem; color: var(--white-dim);
  transition: background 0.2s;
}
.bpt-row:last-child { border-bottom: none; }
.bpt-row:hover { background: rgba(46,216,138,0.03); }
.bpt-header {
  background: rgba(46,216,138,0.06);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--white);
}
.bpt-featured { background: rgba(46,216,138,0.05); }
.bpt-row span { font-size: 0.78rem; color: rgba(255,255,255,0.3); display: block; margin-top: 3px; }
.bpt-price { color: var(--green-bright); font-weight: 700; }

/* ── Vergelijking-status dots (ipv 💚🟡🔴 emoji) ── */
.cmp-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.15) inset;
  flex-shrink: 0;
}
.bpt-row .cmp-dot { margin-top: 0; background: currentColor; display: inline-block; }
.cmp-good { background: #3ad17f !important; box-shadow: 0 0 6px rgba(58,209,127,0.45); }
.cmp-mid  { background: #f2c94c !important; box-shadow: 0 0 6px rgba(242,201,76,0.35); }
.cmp-bad  { background: #eb5757 !important; box-shadow: 0 0 6px rgba(235,87,87,0.4); }

/* ── Horizontal scroll wrapper + hint voor vergelijkingstabel ── */
.blog-price-table-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid rgba(46,216,138,0.14);
  border-radius: 14px;
  position: relative;
  /* Sticky shadow aan rechter-rand om "er is meer"-hint te geven op mobile */
  background:
    linear-gradient(to right, rgba(6,15,10,0) calc(100% - 40px), rgba(6,15,10,0.5) 100%)
    no-repeat local;
}
/* De inner table verliest zijn eigen rand/radius + overflow-clip
   zodat de buitenwrapper het scrollen regelt. */
.blog-price-table-scroll > .blog-price-table.compare-3col,
.blog-price-table-scroll > .blog-price-table.bpt-prijsoverzicht {
  margin: 0;
  border: none;
  border-radius: 0;
  overflow: visible;
  min-width: 100%;
  display: block;
}
.blog-price-table-scroll > .blog-price-table.compare-3col .bpt-row,
.blog-price-table-scroll > .blog-price-table.bpt-prijsoverzicht .bpt-row {
  min-width: 100%;
  /* Kritisch: grid-items hebben default min-width: auto → content kan
     de kolom laten uitzetten EN breken de scroll-width calc. Force 0. */
}
.blog-price-table-scroll > .blog-price-table.compare-3col .bpt-row > div,
.blog-price-table-scroll > .blog-price-table.bpt-prijsoverzicht .bpt-row > div {
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.compare-scroll-hint {
  display: none;
  align-items: center;
  gap: 8px;
  margin: 18px 0 -4px;
  padding: 10px 14px;
  background: rgba(46,216,138,0.08);
  border: 1px solid rgba(46,216,138,0.18);
  border-radius: 10px;
  color: var(--green-bright);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  animation: scrollHintPulse 2s ease-in-out infinite;
}
.compare-scroll-hint svg { animation: scrollHintArrow 1.4s ease-in-out infinite; }
@keyframes scrollHintPulse {
  0%, 100% { background: rgba(46,216,138,0.08); }
  50%      { background: rgba(46,216,138,0.14); }
}
@keyframes scrollHintArrow {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}
@media (max-width: 768px) {
  .compare-scroll-hint { display: inline-flex; }
  /* Forceer de tabel breder dan viewport zodat alle 3 kolommen (Criterium +
     WordPress + Maatwerk) volledig leesbaar zijn en user HORIZONTAAL kan
     schuiven naar rechts om Maatwerk te zien. 780px ≫ typische mobile
     viewport (360–430px) → altijd scroll. */
  .blog-price-table-scroll > .blog-price-table.compare-3col {
    min-width: 780px;
    width: 780px;
  }
  .blog-price-table-scroll > .blog-price-table.compare-3col .bpt-row {
    min-width: 780px;
    width: 780px;
    grid-template-columns: 220px 1fr 1fr;
    padding: 14px 14px;
    font-size: 0.82rem;
    box-sizing: border-box;
  }
  .blog-price-table-scroll > .blog-price-table.compare-3col .bpt-row > div {
    padding-right: 8px;
  }
  .blog-price-table-scroll > .blog-price-table.compare-3col .bpt-row.bpt-header {
    font-size: 0.72rem;
  }
  /* Visuele kolom-seperators zodat gebruiker ziet waar de Maatwerk-kolom
     begint — anders denken ze dat ze alles al zien */
  .blog-price-table-scroll > .blog-price-table.compare-3col .bpt-row > div + div {
    border-left: 1px solid rgba(46,216,138,0.10);
    padding-left: 14px;
  }

  /* Prijsoverzicht-tabel op prijzen-artikel — scrollbaar met min-width zodat
     "Opleveringstijd" kolom leesbaar blijft ipv in elkaar gedrukt */
  .blog-price-table-scroll > .blog-price-table.bpt-prijsoverzicht {
    min-width: 640px;
    width: 640px;
  }
  .blog-price-table-scroll > .blog-price-table.bpt-prijsoverzicht .bpt-row {
    min-width: 640px;
    width: 640px;
    grid-template-columns: 260px 1fr 1fr;
    padding: 14px 14px;
    font-size: 0.82rem;
    box-sizing: border-box;
  }
  .blog-price-table-scroll > .blog-price-table.bpt-prijsoverzicht .bpt-row > div {
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding-right: 8px;
  }
  .blog-price-table-scroll > .blog-price-table.bpt-prijsoverzicht .bpt-row.bpt-header {
    font-size: 0.72rem;
  }
  .blog-price-table-scroll > .blog-price-table.bpt-prijsoverzicht .bpt-row > div + div {
    border-left: 1px solid rgba(46,216,138,0.10);
    padding-left: 14px;
  }
}

/* ─── COMPARISON ─── */
.blog-compare {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 28px 0;
}
.blog-compare-item {
  background: var(--bg-card);
  border: 1px solid rgba(46,216,138,0.08);
  border-radius: 14px; padding: 22px 20px;
}
.blog-compare-featured {
  border-color: rgba(46,216,138,0.25);
  background: rgba(46,216,138,0.05);
}
.blog-compare-item h4 {
  font-size: 0.88rem; font-weight: 700; color: var(--white);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(46,216,138,0.1);
}
.bci-pro, .bci-con {
  font-size: 0.82rem;
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.bci-pro { color: var(--green-bright); }
.bci-con { color: rgba(255,100,100,0.7); }
.bci-pro::before, .bci-con::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  margin-top: 2px;
}
.bci-pro::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232ed88a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.bci-con::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6464' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}
/* Blog check-list: lijst met SVG checkmarks ipv bullets */
.blog-check-list {
  list-style: none !important;
  padding-left: 0 !important;
}
.blog-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.blog-check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232ed88a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 18px 18px;
}

/* ─── SIDEBAR ─── */
.blog-post-sidebar {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 20px;
}
.blog-sidebar-card {
  background: var(--bg-card);
  border: 1px solid rgba(46,216,138,0.1);
  border-radius: 16px; padding: 24px;
}
.blog-sidebar-cta {
  background: rgba(46,216,138,0.05);
  border-color: rgba(46,216,138,0.2);
}
.bsc-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-bright);
  margin-bottom: 16px;
}
.bsc-link {
  display: block; font-size: 0.85rem; color: var(--white-dim);
  text-decoration: none; padding: 10px 0;
  border-bottom: 1px solid rgba(46,216,138,0.06);
  transition: color 0.2s; line-height: 1.5;
}
.bsc-link:last-child { border-bottom: none; }
.bsc-link:hover { color: var(--green-bright); }
.blog-sidebar-card p { font-size: 0.85rem; color: var(--white-dim); line-height: 1.6; }

/* ─── BLOG RESPONSIVE ─── */
@media (max-width: 960px) {
  .blog-post-body {
    grid-template-columns: 1fr;
    gap: 40px; margin: 48px auto 60px;
    padding: 0 24px;
  }
  .blog-post-sidebar { position: static; }
  .blog-compare { grid-template-columns: 1fr; }
  .bpt-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .blog-post-header { padding: 120px 24px 56px; }
}
@media (max-width: 600px) {
  /* GEEN kolom meer verbergen — gebruiker moet horizontaal kunnen schuiven
     om ALLE kolommen (incl. Maatwerk) te zien. De .blog-price-table-scroll
     wrapper regelt de horizontale scroll. */
  .blog-post-meta { gap: 14px; }
}

/* ═══════════════════════════════════════════════════
   GRATIS WEBSITE SCAN PAGE — scan page styles
   (was scan.css — merged into style.css)
═══════════════════════════════════════════════════ */

/* ─── HERO ─── */
.scan-page-hero {
  padding: 140px 40px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(46,216,138,0.07) 0%, transparent 70%);
  text-align: center;
  border-bottom: 1px solid rgba(46,216,138,0.08);
}
.scan-page-hero-inner { max-width: 760px; margin: 0 auto; }
.scan-back-link {
  display: block; text-align: center; margin-bottom: 20px;
  font-size: 0.85rem; color: var(--white-dim); text-decoration: none;
  transition: color 0.2s;
}
.scan-back-link:hover { color: var(--green-bright); }
.scan-page-badge {
  display: inline-block;
  background: rgba(46,216,138,0.1); border: 1px solid rgba(46,216,138,0.25);
  color: var(--green-bright); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 20px; margin-bottom: 24px;
}
.scan-page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1; margin-bottom: 20px;
}
.scan-page-hero p {
  font-size: 1.05rem; color: var(--white-dim);
  max-width: 580px; margin: 0 auto 32px; line-height: 1.7;
}
.scan-page-trust {
  display: flex; gap: 28px; justify-content: center;
  flex-wrap: wrap;
}
.spt-item {
  font-size: 0.85rem; color: var(--white-dim);
  display: flex; align-items: center; gap: 6px;
}
.spt-icon { color: var(--green-bright); font-weight: 700; }

/* ─── MAIN LAYOUT ─── */
.scan-page-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  max-width: 1200px;
  margin: 72px auto;
  padding: 0 40px 80px;
  align-items: start;
}
.scan-page-subtitle {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem; color: var(--white);
  margin-bottom: 32px; line-height: 1.2;
}

/* ─── SCAN PILLARS ─── */
.scan-pillar {
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(46,216,138,0.07);
}
.scan-pillar:last-of-type { border-bottom: none; }
.scan-pillar-icon {
  font-size: 2rem; flex-shrink: 0;
  width: 56px; height: 56px;
  background: rgba(46,216,138,0.08);
  border: 1px solid rgba(46,216,138,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.scan-pillar h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--white);
  margin-bottom: 8px;
}
.scan-pillar p {
  font-size: 0.88rem; color: var(--white-dim); line-height: 1.65;
  margin-bottom: 10px;
}
.scan-pillar-check {
  font-size: 0.78rem; font-weight: 600;
  color: var(--green-bright);
  background: rgba(46,216,138,0.08);
  border-left: 2px solid var(--green-bright);
  padding: 6px 10px; border-radius: 0 6px 6px 0;
  display: inline-block;
}

/* ─── PROCESS STEPS ─── */
.scan-process { margin-top: 16px; }
.scan-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.scan-step {
  display: flex; gap: 16px; align-items: flex-start;
}
.scan-step-num {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-bright), var(--green-teal));
  color: var(--bg-deep); font-weight: 800; font-size: 0.8rem;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.05em;
}
.scan-step strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 3px; }
.scan-step span { color: var(--white-dim); font-size: 0.82rem; line-height: 1.5; }

/* ─── FORM WRAPPER (sticky column) ─── */
.scan-page-form-wrap {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ─── FORM CARD ─── */
.scan-form-page {
  background: var(--bg-card);
  border: 1px solid rgba(46,216,138,0.1);
  border-radius: 20px;
  padding: 32px;
}
.scan-form-title {
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(46,216,138,0.1);
  display: flex; flex-direction: column; gap: 4px;
}
.scan-form-sub {
  font-size: 0.75rem; font-weight: 500; color: var(--green-bright);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.scan-field-hint {
  display: block; font-size: 0.73rem; color: rgba(255,255,255,0.35);
  margin-top: 5px;
}

/* ─── SOCIAL PROOF BELOW FORM ─── */
.scan-form-proof {
  margin-top: 20px;
  background: rgba(46,216,138,0.05);
  border: 1px solid rgba(46,216,138,0.12);
  border-radius: 14px;
  padding: 20px 22px;
}
.sfp-stars { color: #FBBC05; font-size: 1rem; letter-spacing: 2px; margin-bottom: 8px; }
.scan-form-proof p {
  font-size: 0.83rem; color: var(--white-dim); line-height: 1.6;
  font-style: italic; margin-bottom: 8px;
}
.sfp-name { font-size: 0.75rem; color: var(--green-bright); font-weight: 600; }

/* ─── FAQ ─── */
.scan-faq {
  background: #071510;
  border-top: 1px solid rgba(46,216,138,0.08);
  padding: 80px 40px;
}
.scan-faq-inner { max-width: 1000px; margin: 0 auto; }
.scan-faq h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--white);
  text-align: center; margin-bottom: 48px;
}
.scan-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.scan-faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(46,216,138,0.08);
  border-radius: 14px;
  padding: 24px 26px;
}
.scan-faq-item h4 {
  font-size: 0.95rem; font-weight: 700; color: var(--green-bright);
  margin-bottom: 10px;
}
.scan-faq-item p {
  font-size: 0.85rem; color: var(--white-dim); line-height: 1.65;
}

/* ─── SCAN RESPONSIVE ─── */
@media (max-width: 960px) {
  .scan-page-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px 60px;
  }
  .scan-page-form-wrap { position: static; }
  .scan-faq-grid { grid-template-columns: 1fr; }
  .scan-page-hero { padding: 120px 24px 60px; }
  .scan-faq { padding: 60px 24px; }
}
@media (max-width: 600px) {
  .scan-page-trust { gap: 16px; }
  .scan-pillar { flex-direction: column; gap: 12px; }
  .scan-pillar-icon { width: 46px; height: 46px; font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════
   PRIJZEN PAGE — prijzen page styles
   (was prijzen.css — merged into style.css)
═══════════════════════════════════════════════════ */

/* ─── HERO ─── */
.prijzen-hero {
  padding: 140px 40px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(46,216,138,0.07) 0%, transparent 70%);
  text-align: center;
  border-bottom: 1px solid rgba(46,216,138,0.08);
}
.prijzen-hero-inner { max-width: 760px; margin: 0 auto; }

.prijzen-back-link {
  display: block; text-align: center; margin-bottom: 20px;
  font-size: 0.85rem; color: var(--white-dim); text-decoration: none;
  transition: color 0.2s;
}
.prijzen-back-link:hover { color: var(--green-bright); }

.prijzen-hero-badge {
  display: inline-block;
  background: rgba(46,216,138,0.1); border: 1px solid rgba(46,216,138,0.25);
  color: var(--green-bright); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 20px; margin-bottom: 24px;
}

.prijzen-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1; margin-bottom: 20px;
}
.prijzen-hero h1 .accent {
  background: linear-gradient(135deg, var(--green-bright), var(--green-teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prijzen-hero p {
  font-size: 1.05rem; color: var(--white-dim);
  max-width: 580px; margin: 0 auto 36px; line-height: 1.7;
}

.prijzen-hero-trust {
  display: flex; gap: 28px; justify-content: center;
  flex-wrap: nowrap;
}
.pht-item {
  font-size: 0.85rem; color: var(--white-dim);
  display: flex; align-items: center; gap: 8px;
}
.pht-item span { color: var(--green-bright); font-weight: 700; }

/* ─── TABS ─── */
.prijzen-tabs-wrap {
  /* Standaard: in-flow. JS voegt .is-fixed toe zodra de bar de top bereikt. */
  position: relative;
  z-index: 100;
  background: rgba(6,15,10,0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46,216,138,0.1);
  padding: 0 40px;
  transition: box-shadow 0.25s ease;
}
/* UNIVERSELE fixed-state (werkt op desktop ÉN mobile, ALLE browsers) */
.prijzen-tabs-wrap.is-fixed {
  position: fixed !important;
  top: 0; /* JS overschrijft met nav-offset op desktop */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(46,216,138,0.22);
  animation: prijzen-tabs-slide-in 0.2s ease;
}
@keyframes prijzen-tabs-slide-in {
  from { transform: translateY(-8px); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}
.prijzen-tabs-spacer { width: 100%; }
.prijzen-tabs {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 4px;
}
.ptab {
  padding: 16px 28px;
  background: none; border: none; border-bottom: 2px solid transparent;
  color: var(--white-dim); font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}
.ptab:hover { color: var(--white); }
.ptab.active {
  color: var(--green-bright);
  border-bottom-color: var(--green-bright);
}

/* ─── TAB CONTENT ─── */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ─── SECTION WRAPPER ─── */
.prijzen-section {
  background: var(--bg-deep);
  padding-bottom: 80px;
}

.prijzen-section-header {
  max-width: 700px; margin: 0 auto;
  text-align: center;
  padding: 72px 40px 0;
}
.prijzen-section-header .section-label {
  margin-bottom: 18px;
}
.prijzen-section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15; color: var(--white); margin-bottom: 16px;
}
.prijzen-section-header p {
  font-size: 0.95rem; color: var(--white-dim); line-height: 1.7;
  margin-bottom: 0;
}
.prijzen-section .pricing-grid {
  margin-top: 56px;
  padding-top: 8px;
}

/* ─── COMPARISON TABLE ─── */
.prijzen-compare {
  max-width: 1000px; margin: 56px auto 0;
  padding: 0 40px;
}
.prijzen-compare h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; color: var(--white);
  text-align: center; margin-bottom: 28px;
}
.compare-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(46,216,138,0.1);
}
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.88rem;
}
.compare-table thead tr {
  background: rgba(46,216,138,0.06);
  border-bottom: 1px solid rgba(46,216,138,0.12);
}
.compare-table th {
  padding: 16px 20px;
  color: var(--white); font-weight: 700; text-align: center;
}
.compare-table th:first-child { text-align: left; }
.compare-table tbody tr {
  border-bottom: 1px solid rgba(46,216,138,0.05);
  transition: background 0.2s;
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(46,216,138,0.03); }
.compare-table td {
  padding: 14px 20px;
  color: var(--white-dim); text-align: center;
}
.compare-table td:first-child { text-align: left; color: var(--white); font-weight: 500; }
.compare-featured {
  background: rgba(46,216,138,0.06);
  color: var(--white) !important;
  font-weight: 600 !important;
}
/* SVG check icon in comparison tables */
.cmp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(46,216,138,0.12);
  color: var(--green-bright);
  vertical-align: middle;
}
.cmp-check svg { display: block; }

/* ─── HOSTING FEATURES BAR ─── */
.hosting-features-bar {
  display: flex; gap: 0;
  max-width: 1200px; margin: 56px auto 0;
  padding: 0 40px;
  background: rgba(46,216,138,0.04);
  border: 1px solid rgba(46,216,138,0.1);
  border-radius: 16px; overflow: hidden;
}
.hfb-item {
  flex: 1; text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(46,216,138,0.08);
}
.hfb-item:last-child { border-right: none; }
.hfb-icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.hfb-item strong { display: block; font-size: 0.88rem; color: var(--white); margin-bottom: 4px; }
.hfb-item span { font-size: 0.78rem; color: var(--white-dim); }

/* ─── PRIJZEN BOTTOM CTA ─── */
.prijzen-cta-bottom {
  background: linear-gradient(135deg, #061209 0%, #0d2318 50%, #061209 100%);
  border-top: 1px solid rgba(46,216,138,0.12);
  padding: 88px 40px;
  text-align: center;
}
.prijzen-cta-bottom-inner { max-width: 640px; margin: 0 auto; }
.prijzen-cta-bottom h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2; color: var(--white); margin-bottom: 16px;
}
.prijzen-cta-bottom p {
  font-size: 0.95rem; color: var(--white-dim);
  line-height: 1.7; margin-bottom: 36px;
}
.prijzen-cta-bottom-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ─── PRIJZEN RESPONSIVE ─── */
@media (max-width: 960px) {
  .prijzen-hero { padding: 120px 24px 60px; }
  .prijzen-tabs-wrap { padding: 0 16px; }
  .ptab { padding: 14px 18px; font-size: 0.85rem; }
  .prijzen-section-header { padding: 56px 24px 0; }
  .prijzen-compare { padding: 0 20px; }
  .hosting-features-bar {
    flex-wrap: wrap; margin: 40px 20px 0; padding: 0;
    border-radius: 16px;
  }
  .hfb-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(46,216,138,0.08); }
  .hfb-item:last-child { border-bottom: none; }
  .prijzen-cta-bottom { padding: 64px 24px; }
}
@media (max-width: 600px) {
  .prijzen-hero-trust { gap: 16px; }
  .hfb-item { flex: 1 1 100%; }
  .prijzen-cta-bottom-btns { flex-direction: column; align-items: stretch; }
  .prijzen-cta-bottom-btns a { text-align: center; }
}

/* ============================================================
 * MOBILE HARDENING — voorkomt horizontal overflow op kleine viewports
 * Deze regels winnen van eerdere omdat ze onderaan staan (specificity)
 * Viewport-agnostische veiligheidsnetten — geen esthetische wijzigingen
 * ============================================================ */
@media (max-width: 480px) {
  /* Voorkom horizontal overflow van alle media */
  img, iframe, video, canvas, svg { max-width: 100%; height: auto; }
  /* Behalve de portfolio mockups die een vaste verhouding nodig hebben */
  .laptop-screen-inner iframe, .phone-screen-inner iframe { max-width: none; }

  /* Hero: compacter */
  .hero { padding: 90px 16px 48px; }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.2rem); }
  .hero p { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-actions { gap: 10px; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { flex: 1 1 100%; padding: 14px 20px; font-size: 0.95rem; }
  .hero-stats { gap: 0; margin-top: 32px; }
  .hero-stats .stat { padding: 0 2px; }
  .stat-num, .stat-num.stat-google { font-size: 1.3rem; line-height: 1.2; }

  /* Sections: tighter padding */
  section { padding: 60px 16px; }
  #faq { padding: 60px 16px; }

  /* Business card: expliciete pixels (aspect-ratio gaf height:0 door preserve-3d + absolute children) */
  .business-card { width: 280px; height: 165px; margin: 0 auto; }
  .visite-cart-wrapper { gap: 32px; }

  /* Service cards: minder padding */
  .service-card { padding: 28px 20px; }

  /* Contact: compacter */
  .contact-form { padding: 24px 18px; }
  .contact-info { padding: 24px 18px; }
  .contact-info h3 { font-size: 1.5rem; }

  /* Footer: minder padding */
  footer { padding: 40px 16px 24px; }

  /* Algemene veiligheid: niets mag breder zijn dan de viewport */
  .services-grid, .pricing-grid, .portfolio-grid, .wd-grid,
  .process-flow, .testimonial-carousel, .faq-list,
  .contact-grid, .hosting-features-bar {
    width: 100%; max-width: 100%;
  }
}

/* Ultra-klein (≤360px — oude Androids, iPhone SE 1e generatie) */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.65rem; }
  .section-title { font-size: 1.4rem !important; }
  .business-card { max-width: 280px; }
  .stat-num, .stat-num.stat-google { font-size: 1.15rem; line-height: 1.2; }
  .stat-label { font-size: 0.58rem; }
  section { padding: 48px 14px; }
}

/* ============================================================
 * PRIJZEN PAGE — mobile-specifieke fixes (issues 5, 6, 7)
 * ============================================================ */
@media (max-width: 768px) {
  /* 5. Hero-trust vinkjes in 2x2 grid op mobile — geen afgekapte randen meer.
     Grid garandeert dat elk item volledig binnen de kolombreedte valt. */
  .prijzen-hero-trust {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px !important;
    justify-content: stretch !important;
    max-width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
  }
  .pht-item {
    font-size: 0.78rem;
    white-space: normal;
    line-height: 1.35;
    align-items: flex-start;
    gap: 6px;
  }
  .pht-item span {
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* 6. Tab-bar op mobile — padding compacter; .is-fixed logica staat in globale CSS */
  .prijzen-tabs-wrap {
    padding: 0 12px;
    background: rgba(6,15,10,0.97);
  }
  .prijzen-tabs {
    justify-content: center;
  }
  .ptab {
    padding: 14px 16px;
    font-size: 0.85rem;
    flex: 1 1 50%;
    text-align: center;
    justify-content: center;
  }

  /* 7. Vergelijkingstabel — scroll hint zodat mensen zien dat ze kunnen schuiven */
  .compare-table-wrap {
    position: relative;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .compare-table-wrap::after {
    content: '← schuif voor alle pakketten →';
    display: block;
    text-align: center;
    font-size: 0.72rem;
    color: var(--green-bright);
    padding: 10px 12px;
    background: rgba(46,216,138,0.06);
    border-top: 1px solid rgba(46,216,138,0.1);
    letter-spacing: 0.04em;
    font-weight: 600;
  }
  /* Tabel cellen krijgen minimum breedte zodat alle 4 kolommen gegarandeerd
     scrollbaar zijn (en user ziet dat Premium bestaat) */
  .compare-table { min-width: 560px; }
  .compare-table th, .compare-table td {
    padding: 12px 14px !important;
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .compare-table td:first-child, .compare-table th:first-child {
    white-space: normal;
    min-width: 140px;
    position: sticky;
    left: 0;
    background: var(--bg-deep);
    z-index: 2;
    box-shadow: 2px 0 8px rgba(0,0,0,0.3);
  }
  .compare-table thead th:first-child {
    background: rgba(10,30,20,1);
  }

  /* Webdesign pakketten kaarten — vinkjes features goed laten ademen */
  .wd-features li {
    font-size: 0.88rem;
    line-height: 1.55;
  }
}

/* ============================================================
 * BLOG ARTIKEL — blog-callout-btn mobile fix (issue 9)
 * ============================================================ */
@media (max-width: 600px) {
  .blog-callout {
    flex-direction: column;
    padding: 20px 18px;
    gap: 12px;
  }
  .blog-callout-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.9rem;
    margin-top: 16px;
    box-sizing: border-box;
    gap: 8px;
    line-height: 1.15;
  }
  .blog-callout-btn .btn-arrow { display: inline-flex; align-items: center; }
  .blog-callout-icon { font-size: 1.6rem; }
}

/* ============================================================
 * HERO LOTTIE ANIMATIES — links + rechts naast hero text
 * Toegepast op .prijzen-hero EN .blog-page-hero.
 *
 * Layout:
 *   - Desktop (≥1200px) : 320px square, absolute pos links/rechts
 *   - Tablet (950-1199) : 230px square, absolute pos links/rechts
 *   - Tablet smal (768-949): 170px, ingedimd zodat ze niet over text vallen
 *   - Mobile (<768px)   : bookend — left animatie BOVEN content, right ONDER
 *
 * Performance:
 *   - pointer-events: none zodat ze nooit clicks blokkeren
 *   - prefers-reduced-motion: hide → geen player rendering
 *   - IntersectionObserver pause/play in JS (niet in CSS)
 *
 * Simpele structuur: <dotlottie-player> staat direct in HTML. Custom Element
 * upgrade gebeurt automatisch zodra library geladen is — geen JS timing.
 * ============================================================ */
/* Desktop: flex layout — links | content | rechts naast elkaar.
   Geen absolute positioning, geen transforms. Gewoon flex. */
.prijzen-hero,
.blog-page-hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.hero-anim {
  pointer-events: none;
  flex-shrink: 0;
  width: 320px;
  height: 320px;
}

/* lottie-web genereert <svg> direct in container */
.hero-anim svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}


.prijzen-hero-inner,
.blog-page-hero-inner {
  flex: 0 1 760px;
}
.blog-page-hero-inner { flex-basis: 700px; }

/* Tablet groot — kleinere animaties */
@media (max-width: 1199px) {
  .hero-anim { width: 230px; height: 230px; }
  .prijzen-hero, .blog-page-hero { gap: 20px; }
}

/* Tablet smal — ingedimd */
@media (max-width: 949px) and (min-width: 768px) {
  .hero-anim { width: 170px; height: 170px; opacity: 0.6; }
  .prijzen-hero, .blog-page-hero { gap: 14px; }
}

/* Mobile — bookend: stapelen verticaal */
@media (max-width: 767px) {
  .prijzen-hero, .blog-page-hero {
    flex-direction: column;
    gap: 20px;
  }
  .hero-anim { width: 180px; height: 180px; margin: 0 auto; }
  .prijzen-hero-inner, .blog-page-hero-inner { flex-basis: auto; width: 100%; }
}

/* Heel kleine schermen */
@media (max-width: 380px) {
  .hero-anim { width: 150px; height: 150px; }
}

/* ─── FORM SUCCESS SVG (vervanger voor Lottie animatie) ─── */
.form-success-lottie {
  text-align: center;
  padding: 20px 0;
}
.form-success-svg {
  margin: 0 auto;
  display: block;
}
.form-success-svg__circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: form-success-circle-draw .5s ease-out forwards;
}
.form-success-svg__check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: form-success-check-draw .4s .4s ease-out forwards;
}
@keyframes form-success-circle-draw { to { stroke-dashoffset: 0; } }
@keyframes form-success-check-draw  { to { stroke-dashoffset: 0; } }

/* Decoratieve hero-animaties — tonen ongeacht prefers-reduced-motion.
   Loopen subtiel, geen schermschudderende motion → veilig om altijd te tonen. */


/* ============================================================
 * VIEW TRANSITIONS API — smooth cross-document navigation
 *
 * Browsers met support (Chrome 126+, Edge 126+, Safari 18+):
 *   - Bij klikken op interne link → snapshot oude pagina, navigate,
 *     snapshot nieuwe pagina, animate tussen beide
 *   - Geen library nodig — native browser API
 *
 * Browsers zonder support (Firefox <126):
 *   - Negeren de @view-transition regel volledig → harde navigatie
 *   - Geen JS error, geen layout breakage, geen extra requests
 *
 * Animatie: subtiele fade + 8px slide (250ms uit, 350ms in)
 *   - Cubic-bezier match met de bestaande Lenis duration (1.4s) qua "feel"
 *   - 8px is genoeg voor visueel signaal, klein genoeg voor geen motion sickness
 * ============================================================ */
@view-transition {
  navigation: auto;
}

@keyframes vt-fade-slide-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}
@keyframes vt-fade-slide-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

::view-transition-old(root) {
  animation: vt-fade-slide-out 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
::view-transition-new(root) {
  animation: vt-fade-slide-in 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Reduced-motion: alleen korte fade, geen slide (geen verticale beweging) */
@media (prefers-reduced-motion: reduce) {
  @keyframes vt-fade-only-out { to { opacity: 0; } }
  @keyframes vt-fade-only-in  { from { opacity: 0; } }
  ::view-transition-old(root) {
    animation: vt-fade-only-out 0.15s linear forwards;
  }
  ::view-transition-new(root) {
    animation: vt-fade-only-in 0.15s linear forwards;
  }
}

