/* ============================================================
   BitbloX — Webdesign & Hosting
   Redesign 2026 · Vanilla CSS
   Brand: antraciet #494949 · goud #DEC148
   ============================================================ */

:root {
  --bg:        #0a0b0e;
  --bg-2:      #0e1014;
  --surface:   #14171d;
  --surface-2: #1a1e26;
  --border:    rgba(255, 255, 255, 0.08);
  --border-gold: rgba(222, 193, 72, 0.35);
  --text:      #f3f4f6;
  --muted:     #a4aab6;
  --gold:      #dec148;
  --gold-soft: #efd675;
  --gold-dark: #b39b2c;
  --charcoal:  #494949;
  --radius:    16px;
  --radius-sm: 10px;
  --container: 1180px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.65);
  --transition: 240ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: #141414; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--alt { background: var(--bg-2); }

.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head.align-left { margin-left: 0; text-align: left; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-head:not(.align-left) .kicker::after { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 18px; }
h3 { font-size: 1.3rem; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 640px; }
.section-head:not(.align-left) .lead { margin: 0 auto; }
.gold { color: var(--gold); }
.text-gradient {
  background: linear-gradient(100deg, var(--gold-soft) 10%, var(--gold) 45%, #f6e89a 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }
.btn--gold {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 55%, var(--gold-dark));
  color: #171712;
  box-shadow: 0 12px 32px -12px rgba(222, 193, 72, 0.55);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(222, 193, 72, 0.65); }
.btn--ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--border-gold); color: var(--gold); transform: translateY(-3px); }
.btn--sm { padding: 11px 22px; font-size: 0.9rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 11, 14, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.8);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 34px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav .nav-list { display: flex; align-items: center; gap: 6px; }
.main-nav .custom-logo { height: 34px; width: auto; }
.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 0.95rem; font-weight: 500;
  color: var(--muted);
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.main-nav a.active { color: var(--gold); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--gold);
}
.main-nav a.btn--gold { color: #171712; }
.main-nav a.btn--gold:hover {
  color: #171712;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 55%, var(--gold-dark));
}
.header-cta { margin-left: 14px; }
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  background: transparent; border: 1px solid var(--border); border-radius: 12px;
  cursor: pointer; position: relative; z-index: 110;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; margin: 4px auto;
  background: var(--text); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(1000px 520px at 82% 18%, rgba(222, 193, 72, 0.10), transparent 60%),
    radial-gradient(800px 500px at 8% 90%, rgba(73, 73, 73, 0.35), transparent 60%),
    var(--bg);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; margin-bottom: 26px;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  background: rgba(222, 193, 72, 0.07);
  font-size: 0.85rem; font-weight: 500; color: var(--gold-soft);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(222, 193, 72, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(222, 193, 72, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(222, 193, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(222, 193, 72, 0); }
}
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: 40px; justify-content: start;
  border-top: 1px solid var(--border); padding-top: 32px;
}
.stat .stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--gold);
  line-height: 1.1;
}
.stat .stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* Hero visual — zwevende kubus (knipoog naar het logo) */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.cube-scene { perspective: 1100px; width: 240px; height: 240px; }
.cube {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  animation: cube-spin 22s linear infinite;
}
@keyframes cube-spin {
  from { transform: rotateX(-18deg) rotateY(0deg); }
  to   { transform: rotateX(-18deg) rotateY(360deg); }
}
.cube-face {
  position: absolute; inset: 0;
  border: 1px solid var(--border-gold);
  background: linear-gradient(135deg, rgba(222, 193, 72, 0.14), rgba(20, 23, 29, 0.9) 60%);
  backdrop-filter: blur(2px);
  box-shadow: inset 0 0 60px rgba(222, 193, 72, 0.06);
}
.cube-face:nth-child(1) { transform: translateZ(120px); }
.cube-face:nth-child(2) { transform: rotateY(90deg) translateZ(120px); }
.cube-face:nth-child(3) { transform: rotateY(180deg) translateZ(120px); }
.cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(120px); }
.cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(120px); }
.cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(120px); }
.cube-face::after {
  content: ""; position: absolute; inset: 24px;
  border: 1px dashed rgba(222, 193, 72, 0.25);
}
.hero-orbit {
  position: absolute; width: 380px; height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  animation: orbit-spin 30s linear infinite;
}
.hero-orbit::before {
  content: ""; position: absolute; top: -5px; left: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(222, 193, 72, 0.9);
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.hero-glow {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 193, 72, 0.16), transparent 65%);
  filter: blur(10px);
}
.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 9px;
  padding: 10px 16px;
  background: rgba(20, 23, 29, 0.85);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
.float-chip svg { width: 15px; height: 15px; color: var(--gold); }
.float-chip--1 { top: 8%; left: 2%; animation-delay: 0s; }
.float-chip--2 { bottom: 12%; right: 0%; animation-delay: 1.6s; }
.float-chip--3 { bottom: -2%; left: 12%; animation-delay: 3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Marquee ---------- */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee-strip::before, .marquee-strip::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee-strip::after { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 46s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--muted); white-space: nowrap;
  display: flex; align-items: center; gap: 56px;
}
.marquee-track span::after { content: "◆"; color: var(--gold); font-size: 0.55rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

.card {
  position: relative;
  background: linear-gradient(160deg, var(--surface-2), var(--surface) 55%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.card:hover { transform: translateY(-6px); border-color: var(--border-gold); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(222, 193, 72, 0.1);
  border: 1px solid var(--border-gold);
  margin-bottom: 22px;
}
.card-icon svg { width: 26px; height: 26px; color: var(--gold); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  color: var(--gold);
}
.card .card-link svg { width: 15px; height: 15px; transition: transform var(--transition); }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Principles (Waar staat BitbloX voor) ---------- */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.principle {
  background: var(--bg-2); padding: 40px 34px;
  transition: background var(--transition);
  position: relative;
}
.principle:hover { background: var(--surface); }
.principle .num {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.15em; margin-bottom: 16px; display: block;
}
.principle h3 { margin-bottom: 10px; }
.principle p { color: var(--muted); font-size: 0.95rem; }
.principle--wide { grid-column: span 2; }

/* ---------- Werkwijze / stappen ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  position: relative;
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition);
}
.step:hover { transform: translateY(-6px); border-color: var(--border-gold); }
.step .step-num {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: 22px;
  border-radius: 50%;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: #171712;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 8px 24px -8px rgba(222, 193, 72, 0.6);
}
.step h3 { font-size: 1.08rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.92rem; }
.step::after {
  content: ""; position: absolute; top: 62px; right: -20px;
  width: 14px; height: 2px; background: var(--border-gold);
}
.step:last-child::after { display: none; }

/* ---------- Portfolio ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.portfolio-item {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  min-width: 0;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 500;
  color: var(--muted);
  overflow-wrap: anywhere;
  transition: all var(--transition);
}
.portfolio-item svg { width: 13px; height: 13px; opacity: 0; transform: translate(-3px, 3px); transition: all var(--transition); flex-shrink: 0; }
.portfolio-item:hover { color: var(--gold); border-color: var(--border-gold); transform: translateY(-3px); background: var(--surface-2); }
.portfolio-item:hover svg { opacity: 1; transform: translate(0, 0); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  padding: 72px 56px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 50% -40%, rgba(222, 193, 72, 0.22), transparent 70%),
    linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-gold);
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 34px; }
.cta-band .btn-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Page hero (subpagina's) ---------- */
.page-hero {
  position: relative;
  padding: 190px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 78% 0%, rgba(222, 193, 72, 0.1), transparent 60%),
    var(--bg);
}
.page-hero .hero-grid-bg { mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 20%, transparent 75%); }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Diensten detail ---------- */
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-tag {
  display: inline-block;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.service-row h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.service-row .lead { font-size: 1rem; margin-bottom: 30px; }
.feature-list { display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .f-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(222, 193, 72, 0.1);
  border: 1px solid var(--border-gold);
}
.feature-list .f-icon svg { width: 18px; height: 18px; color: var(--gold); }
.feature-list strong { display: block; font-family: var(--font-display); font-size: 0.98rem; margin-bottom: 2px; }
.feature-list span { color: var(--muted); font-size: 0.92rem; }

.service-media {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.service-media::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.service-media .big-icon {
  position: relative; z-index: 2;
  width: 130px; height: 130px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 32px;
  background: rgba(222, 193, 72, 0.08);
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 80px rgba(222, 193, 72, 0.15), inset 0 0 40px rgba(222, 193, 72, 0.06);
}
.service-media .big-icon svg { width: 60px; height: 60px; color: var(--gold); }
.service-media .halo {
  position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 193, 72, 0.14), transparent 65%);
}

/* ---------- Answer capsule (AI-zoeken / GEO) ----------
   Compacte, feitelijke samenvatting die AI-zoekmachines
   letterlijk kunnen citeren in hun antwoorden. */
.answer-capsule {
  position: relative;
  margin-top: 30px;
  padding: 24px 28px 24px 32px;
  background: rgba(222, 193, 72, 0.06);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 720px;
}
.answer-capsule::before {
  content: "Kort antwoord";
  position: absolute;
  top: -12px; left: 24px;
  padding: 2px 14px;
  background: var(--bg);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.answer-capsule strong { color: var(--gold); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-gold); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  text-align: left; color: var(--text);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-chevron {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.faq-q .faq-chevron svg { width: 14px; height: 14px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--gold); border-color: var(--gold); color: #171712; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 340ms ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--muted); font-size: 0.95rem; }

/* ---------- Prijzen ---------- */
.pricing-note {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px;
  margin-top: 54px;
  padding: 20px 28px;
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-sm);
  background: rgba(222, 193, 72, 0.05);
  color: var(--muted); font-size: 0.92rem;
}
.pricing-note strong { color: var(--gold); font-weight: 600; }
.pricing-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.price-card {
  position: relative;
  margin-top: 16px;
  display: flex; flex-direction: column;
  background: linear-gradient(165deg, var(--surface-2), var(--surface) 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.price-card:hover { transform: translateY(-8px); border-color: var(--border-gold); box-shadow: var(--shadow); }
.price-card.featured {
  border-color: var(--gold);
  background:
    radial-gradient(400px 220px at 50% -30%, rgba(222, 193, 72, 0.16), transparent 70%),
    linear-gradient(165deg, var(--surface-2), var(--surface) 60%);
  box-shadow: 0 24px 60px -20px rgba(222, 193, 72, 0.25);
}
.price-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  color: #171712;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 22px -8px rgba(222, 193, 72, 0.7);
}
.price-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.price-for { color: var(--muted); font-size: 0.88rem; margin-bottom: 26px; min-height: 2.6em; }
.price-amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 30px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.price-amount .currency { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); font-weight: 600; }
.price-amount .amount { font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 1; }
.price-amount .per { color: var(--muted); font-size: 0.88rem; }
.price-features { display: grid; gap: 12px; margin-bottom: 34px; flex-grow: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.93rem; color: var(--muted); }
.price-features li svg { flex-shrink: 0; width: 17px; height: 17px; color: var(--gold); margin-top: 3px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact-info-card {
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: grid; gap: 30px;
}
.contact-line { display: flex; gap: 18px; align-items: flex-start; }
.contact-line .c-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(222, 193, 72, 0.1);
  border: 1px solid var(--border-gold);
}
.contact-line .c-icon svg { width: 21px; height: 21px; color: var(--gold); }
.contact-line .c-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 3px; }
.contact-line .c-value { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; }
.contact-line .c-value a:hover { color: var(--gold); }
.hours-table { width: 100%; font-size: 0.94rem; }
.hours-table div { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--border); color: var(--muted); }
.hours-table div:last-child { border-bottom: none; }
.hours-table div span:last-child { color: var(--text); font-weight: 500; }

.contact-form {
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; display: grid; gap: 8px; }
.form-group label { font-family: var(--font-display); font-size: 0.88rem; font-weight: 600; }
.form-group label em { color: var(--gold); font-style: normal; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(222, 193, 72, 0.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group .error-msg { display: none; color: #ff7a7a; font-size: 0.8rem; }
.form-group.invalid input, .form-group.invalid textarea { border-color: #e05555; }
.form-group.invalid .error-msg { display: block; }
.form-success {
  display: none;
  align-items: center; gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(222, 193, 72, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-soft);
  font-size: 0.95rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-error {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(224, 85, 85, 0.1);
  border: 1px solid rgba(224, 85, 85, 0.4);
  color: #ff9d9d;
  font-size: 0.95rem;
}
.form-error svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- Werkgebied ---------- */
.region-card {
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform var(--transition), border-color var(--transition);
  position: relative; overflow: hidden;
}
.region-card:hover { transform: translateY(-6px); border-color: var(--border-gold); }
.region-card .r-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.region-card .r-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(222, 193, 72, 0.1);
  border: 1px solid var(--border-gold);
}
.region-card .r-icon svg { width: 20px; height: 20px; color: var(--gold); }
.region-card h3 { margin-bottom: 2px; }
.region-card .r-distance { font-size: 0.8rem; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; }
.region-card p { color: var(--muted); font-size: 0.93rem; }
.region-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.region-tags span {
  padding: 6px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem; color: var(--muted);
  background: var(--bg-2);
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1fr; gap: 32px; padding-bottom: 56px; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 20px; }
.footer-brand p { color: var(--muted); font-size: 0.93rem; max-width: 300px; }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 0.93rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 0.85rem;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 28px; bottom: 28px; z-index: 90;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: #171712; }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Scroll reveal ---------- */
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1); }
html.js .reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .cube, .hero-orbit, .float-chip, .marquee-track { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 340px; order: -1; display: none; }
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .principle--wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .section { padding: 76px 0; }
  .main-nav {
    position: fixed; inset: 0; z-index: 105;
    flex-direction: column; justify-content: center; gap: 10px;
    background: rgba(10, 11, 14, 0.97);
    backdrop-filter: blur(16px);
    opacity: 0; visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav .nav-list { flex-direction: column; gap: 10px; }
  .main-nav a { font-size: 1.4rem; font-family: var(--font-display); padding: 12px 24px; }
  .main-nav a.active::after { display: none; }
  .nav-toggle { display: block; }
  .header-cta { margin: 18px 0 0; font-size: 1.05rem; }
  .service-row { grid-template-columns: 1fr; gap: 36px; padding: 52px 0; }
  .service-row .service-media { order: 2; }
  .service-media { min-height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--5 { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .cta-band { padding: 52px 28px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid--2, .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-item { font-size: 0.8rem; padding: 15px 16px; }
  .steps, .principles { grid-template-columns: 1fr; }
  .principle--wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding-top: 130px; }
  .contact-form { padding: 32px 24px; }
  .contact-info-card { padding: 30px 24px; }
  .price-card { padding: 34px 24px; }
}

/* ================================================================
   Blog (v1.4)
   ================================================================ */
.container--narrow { max-width: 780px; }

.blog-grid .blog-card { display: flex; flex-direction: column; }
.blog-thumb { display: block; margin: -30px -30px 20px; border-radius: 14px 14px 0 0; overflow: hidden; }
.blog-thumb img { width: 100%; height: 190px; object-fit: cover; display: block; transition: transform .5s ease; }
.blog-thumb:hover img { transform: scale(1.04); }
.blog-card h2 { font-size: 1.25rem; margin: 6px 0 10px; }
.blog-card h2 a { color: inherit; text-decoration: none; }
.blog-card h2 a:hover { color: var(--gold); }
.blog-card p { flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; color: var(--text-dim); }
.blog-meta time { text-transform: none; }
.blog-cat { background: rgba(222,193,72,.12); color: var(--gold); border: 1px solid var(--border-gold); border-radius: 999px; padding: 2px 12px; font-size: 0.75rem; font-weight: 600; letter-spacing: .03em; }

.blog-pagination { margin-top: 48px; }
.blog-pagination ul { list-style: none; display: flex; justify-content: center; gap: 8px; padding: 0; margin: 0; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 14px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); color: var(--text); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: border-color .25s, color .25s; }
.blog-pagination .page-numbers:hover { border-color: var(--border-gold); color: var(--gold); }
.blog-pagination .page-numbers.current { background: var(--gold); color: #14151a; border-color: var(--gold); }
.blog-pagination .page-numbers.dots { border: none; background: none; }

.artikel-card {
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.5);
}
.artikel-inhoud { font-size: 1.08rem; line-height: 1.85; color: #d1d5db; }
.artikel-inhoud > *:first-child { margin-top: 0; }
.artikel-hero-img { margin: 0 0 36px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.artikel-hero-img img { width: 100%; height: auto; display: block; }
.artikel-inhoud h2 { font-size: 1.65rem; color: var(--gold); margin: 2.2em 0 0.8em; padding-bottom: 8px; border-bottom: 1px solid rgba(222,193,72,0.2); font-family: var(--font-display); font-weight: 700; }
.artikel-inhoud h3 { font-size: 1.3rem; color: var(--text); margin: 1.8em 0 0.6em; font-family: var(--font-display); font-weight: 600; }
.artikel-inhoud p { margin: 0 0 1.4em; color: #d1d5db; }
.artikel-inhoud strong { color: var(--text); font-weight: 600; }
.artikel-inhoud ul, .artikel-inhoud ol { margin: 0 0 1.6em; padding-left: 1.5em; }
.artikel-inhoud li { margin-bottom: 0.6em; color: var(--text); }
.artikel-inhoud a { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; font-weight: 600; }
.artikel-inhoud a:hover { color: #ead060; }
.artikel-inhoud blockquote { margin: 1.8em 0; padding: 22px 28px; border-left: 4px solid var(--gold); background: rgba(222,193,72,0.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--text); font-size: 1.05rem; line-height: 1.7; }
.artikel-inhoud blockquote p { margin: 0; color: var(--text); }
.artikel-inhoud img { max-width: 100%; height: auto; border-radius: 12px; }
.artikel-inhoud code { background: var(--surface-2); border: 1px solid var(--border); border-radius: 6px; padding: 2px 7px; font-size: 0.9em; color: var(--gold); }
.artikel-inhoud pre { background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; overflow-x: auto; margin: 1.8em 0; }
.artikel-inhoud pre code { background: none; border: none; padding: 0; color: var(--text); }
.artikel-paginas { margin-top: 24px; font-size: 0.95rem; }

.artikel-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.artikel-nav-link { display: flex; flex-direction: column; gap: 6px; max-width: 46%; color: var(--text); text-decoration: none; font-weight: 600; }
.artikel-nav-link span { color: var(--text-dim); font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.artikel-nav-link:hover { color: var(--gold); }
.artikel-nav-link--next { text-align: right; margin-left: auto; }

@media (max-width: 860px) {
  .blog-thumb img { height: 160px; }
  .artikel-nav { flex-direction: column; }
  .artikel-nav-link { max-width: 100%; }
  .artikel-nav-link--next { text-align: left; }
}

/* ROI-regel op prijskaarten (v1.4.1) */
.price-roi { font-size: 0.82rem; color: var(--gold); font-weight: 600; margin: 14px 0 6px; padding: 10px 14px; background: rgba(222,193,72,.08); border: 1px solid rgba(222,193,72,.2); border-radius: 10px; }
.price-roi::before { content: "💡 "; }
.price-card .price-roi { margin-bottom: 16px; }

/* Reviews (v1.5) */
.review-score { display: flex; align-items: center; justify-content: center; gap: 10px; }
.review-stars { display: inline-flex; gap: 2px; color: var(--gold); }
.review-card { display: flex; flex-direction: column; gap: 14px; }
.review-tekst { font-size: 1.02rem; line-height: 1.7; color: var(--text); margin: 0; flex: 1; }
.review-naam { display: flex; flex-direction: column; gap: 2px; padding-top: 12px; border-top: 1px solid var(--border); }
.review-naam strong { color: var(--text); font-size: 0.95rem; }
.review-naam span { color: var(--text-dim); font-size: 0.84rem; }
