/* =====================================================
   AuroraWeb – Uniek Design
   ===================================================== */

:root {
  --c-bg:       #04020f;
  --c-bg2:      #080618;
  --c-card:     rgba(255,255,255,0.03);
  --c-border:   rgba(255,255,255,0.07);
  --c-border2:  rgba(255,255,255,0.12);
  --c-purple:   #8b5cf6;
  --c-cyan:     #22d3ee;
  --c-pink:     #e879f9;
  --c-text:     #f1f0ff;
  --c-muted:    #7c7a99;
  --c-dim:      #3d3b5c;
  --radius:     20px;
  --radius-sm:  12px;
  --t:          0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─────────── CUSTOM CURSOR ─────────── */
.cursor {
  width: 12px; height: 12px;
  background: var(--c-purple);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s, width 0.2s, height 0.2s;
  mix-blend-mode: screen;
}
.cursor-trail {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(139,92,246,0.4);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, opacity 0.2s;
  mix-blend-mode: screen;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 20px; height: 20px; background: var(--c-cyan); }
body:has(a:hover) .cursor-trail,
body:has(button:hover) .cursor-trail { width: 56px; height: 56px; border-color: rgba(34,211,238,0.3); }

@media (pointer: coarse) {
  .cursor, .cursor-trail { display: none; }
  body { cursor: auto; }
}

/* ─────────── SCROLL PROGRESS ─────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--c-purple), var(--c-cyan), var(--c-pink));
  z-index: 200;
  transition: width 0.1s linear;
}

/* ─────────── SCROLL REVEAL ─────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─────────── TYPOGRAPHY ─────────── */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-purple);
  margin-bottom: 16px;
}
.section-title-big {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-title-big em {
  font-style: normal;
  background: linear-gradient(135deg, #a78bfa, #22d3ee, #e879f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  color: var(--c-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 56px;
}

/* ─────────── BUTTONS ─────────── */
.btn-aurora {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  overflow: hidden;
  cursor: none;
  text-decoration: none;
}
.btn-aurora--full { width: 100%; justify-content: center; }
.btn-aurora__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-purple), #4f46e5, var(--c-cyan));
  background-size: 200% 200%;
  animation: gradShift 4s ease infinite;
  z-index: 0;
}
.btn-aurora__text { position: relative; z-index: 1; }
.btn-aurora:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(139,92,246,0.4); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-text);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border2);
  cursor: none;
  text-decoration: none;
  transition: all var(--t);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }

.arrow-animated {
  display: inline-block;
  transition: transform var(--t);
}
.btn-ghost:hover .arrow-animated { transform: translateX(4px); }

@keyframes gradShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t), border-color var(--t);
}
.nav.scrolled {
  background: rgba(4,2,15,0.88);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
  cursor: none;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-muted);
  transition: color var(--t);
  cursor: none;
}
.nav__links a:hover { color: var(--c-text); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 999px;
  color: #c4b5fd !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: all var(--t) !important;
  cursor: none !important;
}
.nav__cta:hover {
  background: rgba(139,92,246,0.22) !important;
  border-color: rgba(139,92,246,0.5) !important;
  color: #fff !important;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--t);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(4,2,15,0.97);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(24px);
  padding: 16px 28px 24px;
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  display: block;
  padding: 12px 16px;
  color: var(--c-muted);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--t);
}
.nav__mobile a:hover { color: var(--c-text); background: rgba(255,255,255,0.04); }
.nav__mobile-cta {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--c-purple), #4f46e5) !important;
  color: #fff !important;
  text-align: center;
  border-radius: 999px !important;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 130px 28px 80px;
  overflow: visible;
}
.hero__noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(139,92,246,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(34,211,238,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(232,121,249,0.08) 0%, transparent 60%),
    var(--c-bg);
  pointer-events: none;
}

/* Hero content */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 8px #34d399;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 8px #34d399; }
  50% { box-shadow: 0 0 16px #34d399, 0 0 32px rgba(52,211,153,0.3); }
}

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.title-line { overflow: hidden; display: block; }
.title-line em {
  font-style: normal;
  background: linear-gradient(135deg, #c4b5fd, #67e8f9, #f0abfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reveal-text {
  display: inline-block;
  animation: revealUp 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
.title-line:nth-child(2) .reveal-text { animation-delay: 0.1s; }
.title-line:nth-child(3) .reveal-text { animation-delay: 0.2s; }

@keyframes revealUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 460px;
  margin-bottom: 36px;
}
.reveal-fade {
  animation: fadeIn 0.8s 0.4s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation-delay: 0.5s;
}

.hero__counters {
  display: flex;
  align-items: center;
  gap: 28px;
  animation-delay: 0.6s;
}
.hcounter { display: flex; flex-direction: column; }
.hcounter__num {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #a78bfa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hcounter__suffix { font-size: 1.2rem; font-weight: 900; display: inline; }
.hcounter__label { font-size: 0.75rem; color: var(--c-muted); margin-top: 2px; }
.hcounter__sep { width: 1px; height: 40px; background: var(--c-border2); }

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-dim);
  animation: fadeIn 1s 1s ease both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--c-purple), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero ORB */
.hero__orb-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  animation: fadeIn 1s 0.3s ease both;
}
.hero__orb {
  position: relative;
  width: 280px; height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb__core {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #a78bfa, #8b5cf6, #4f46e5);
  box-shadow:
    0 0 60px rgba(139,92,246,0.5),
    0 0 120px rgba(139,92,246,0.25),
    inset 0 0 40px rgba(255,255,255,0.1);
  animation: orbFloat 6s ease-in-out infinite;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.03); }
}

.orb__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.2);
  animation: orbRingPulse 4s ease-in-out infinite;
}
.orb__ring--1 { width: 220px; height: 220px; animation-delay: 0s; }
.orb__ring--2 { width: 270px; height: 270px; animation-delay: 0.5s; border-color: rgba(34,211,238,0.15); }
.orb__ring--3 { width: 320px; height: 320px; animation-delay: 1s; border-color: rgba(232,121,249,0.1); }

@keyframes orbRingPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.04); opacity: 1; }
}

/* Floating badges around orb */
.orb__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text);
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.orb__badge--1 {
  top: 40px; left: -20px;
  animation: badgeFloat1 5s ease-in-out infinite;
}
.orb__badge--2 {
  top: 50px; right: -10px;
  animation: badgeFloat2 5.5s ease-in-out infinite;
}
.orb__badge--3 {
  bottom: 60px; left: 10px;
  animation: badgeFloat3 4.5s ease-in-out infinite;
}
.badge-icon { font-size: 1rem; }
@keyframes badgeFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes badgeFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(12px)} }
@keyframes badgeFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee-section {
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: rgba(255,255,255,0.015);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track { width: 100%; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marqueeRun 28s linear infinite;
}
.marquee-inner span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-muted);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.marquee-dot {
  color: var(--c-purple) !important;
  font-size: 0.7rem !important;
}
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════
   DIENSTEN BENTO
══════════════════════════════ */
.diensten {
  padding: 120px 0;
}
.bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-cell {
  position: relative;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.bento-cell:hover {
  border-color: var(--c-border2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.bento-cell__bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.bento-cell:hover .bento-cell__bg { opacity: 1; }

.bento-cell--websites {
  grid-column: 1;
  grid-row: 1 / 3;
}
.bento-cell--websites .bento-cell__bg {
  background: radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.12), transparent 60%);
}
.bento-cell--webshop  .bento-cell__bg {
  background: radial-gradient(ellipse at 20% 80%, rgba(34,211,238,0.1), transparent 60%);
}
.bento-cell--maatwerk .bento-cell__bg {
  background: radial-gradient(ellipse at 80% 80%, rgba(232,121,249,0.1), transparent 60%);
}
.bento-cell--hosting {
  grid-column: 2 / 4;
  grid-row: 2;
}
.bento-cell--hosting .bento-cell__bg {
  background: linear-gradient(135deg, rgba(139,92,246,0.06), rgba(34,211,238,0.06));
}

.bento-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-purple);
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 20px;
}
.bento-cell h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.bento-cell p {
  color: var(--c-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.bento-cell ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bento-cell ul li {
  font-size: 0.85rem;
  color: var(--c-muted);
  padding-left: 16px;
  position: relative;
}
.bento-cell ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-purple);
  font-size: 0.8rem;
}

.bento-cell__icon-deco {
  font-size: 3rem;
  position: absolute;
  bottom: 24px;
  right: 24px;
  opacity: 0.25;
  transition: opacity var(--t), transform var(--t);
  line-height: 1;
}
.bento-cell:hover .bento-cell__icon-deco { opacity: 0.5; transform: scale(1.15) rotate(-8deg); }

/* Mini browser inside websites bento */
.bento-cell__deco {
  margin-top: 32px;
}
.mini-browser {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.mb-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mb-bar span { width: 8px; height: 8px; border-radius: 50%; }
.mb-bar span:nth-child(1) { background: #ff5f57; }
.mb-bar span:nth-child(2) { background: #febc2e; }
.mb-bar span:nth-child(3) { background: #28c840; }
.mb-screen {
  background: rgba(255,255,255,0.02);
  padding: 14px;
  min-height: 130px;
}
.mb-line {
  height: 9px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 8px;
}
.mb-line--wide { width: 80%; }
.mb-line--mid  { width: 55%; }
.mb-line--short { width: 35%; }
.mb-line--accent { background: linear-gradient(90deg, rgba(139,92,246,0.6), rgba(34,211,238,0.4)); }
.mb-btn {
  width: 60px; height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-purple), #4f46e5);
  margin-top: 12px;
}
.mb-cards { display: flex; gap: 6px; margin-top: 10px; }
.mb-cards div { flex: 1; height: 40px; background: rgba(255,255,255,0.04); border-radius: 6px; border: 1px solid rgba(255,255,255,0.06); }

/* Hosting bars */
.bento-cell--hosting {
  display: flex;
  align-items: center;
  gap: 40px;
}
.bento-cell--hosting .bento-cell__content { flex: 1; }
.hosting-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  flex-shrink: 0;
  padding-right: 12px;
}
.hbar {
  width: 14px;
  height: var(--h);
  background: linear-gradient(to top, var(--c-purple), var(--c-cyan));
  border-radius: 4px 4px 0 0;
  opacity: 0.7;
  animation: barRise 1.5s var(--delay) cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes barRise {
  from { height: 0; }
  to   { height: var(--h); }
}

/* ══════════════════════════════
   PORTFOLIO
══════════════════════════════ */
.portfolio {
  padding: 120px 0;
  border-top: 1px solid var(--c-border);
  background: rgba(255,255,255,0.01);
}
.portfolio-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pcard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.pcard--alt { direction: ltr; }
.pcard--alt .pcard__preview { order: 2; }
.pcard--alt .pcard__info--left { order: 1; }

.pcard__number {
  position: absolute;
  top: -16px;
  left: -8px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

/* Browser frame */
.browser-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform var(--t), box-shadow var(--t);
}
.browser-frame:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 48px 100px rgba(0,0,0,0.7), 0 0 60px rgba(139,92,246,0.15);
}
.bf-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #111028;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bf-dots { display: flex; gap: 5px; }
.bf-dots span { width: 9px; height: 9px; border-radius: 50%; }
.bf-dots span:nth-child(1) { background: #ff5f57; }
.bf-dots span:nth-child(2) { background: #febc2e; }
.bf-dots span:nth-child(3) { background: #28c840; }
.bf-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 0.68rem;
  color: var(--c-muted);
  text-align: center;
}
.bf-actions span { width: 16px; height: 8px; display: block; background: rgba(255,255,255,0.06); border-radius: 3px; }

/* FactuurPro screen */
.bf-screen--factuur {
  padding: 14px;
  min-height: 240px;
  background: linear-gradient(160deg, #f8faff, #eef4ff);
}
.bfs-nav { height: 28px; background: rgba(37,99,235,0.08); border-radius: 4px; margin-bottom: 14px; }
.bfs-hero { padding: 0 4px 12px; }
.bfs-h1 { height: 14px; width: 72%; background: linear-gradient(90deg,#2563ebaa,#0d9488aa); border-radius: 4px; margin-bottom: 8px; }
.bfs-h1--w { background: linear-gradient(90deg,rgba(167,139,250,0.7),rgba(96,165,250,0.7)); }
.bfs-h2 { height: 9px; width: 50%; background: rgba(0,0,0,0.1); border-radius: 3px; margin-bottom: 12px; }
.bfs-h2--w { background: rgba(255,255,255,0.25); }
.bfs-cta { width: 80px; height: 22px; background: linear-gradient(90deg,#2563eb,#0d9488); border-radius: 999px; }
.bfs-cta--purple { background: linear-gradient(90deg,#8b5cf6,#6d28d9); }
.bfs-cards { display: flex; gap: 8px; padding: 4px; }
.bfs-card {
  flex: 1;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.bfs-card-icon { font-size: 1.1rem; margin-bottom: 6px; }
.bfs-card-line { height: 7px; background: rgba(0,0,0,0.1); border-radius: 3px; margin-bottom: 4px; }
.bfs-card-line--sm { width: 60%; }

/* UrkWerkt screen */
.bf-screen--urk {
  padding: 14px;
  min-height: 240px;
  background: linear-gradient(160deg, #0f0c29, #1e1848);
}
.bfs-nav--dark { background: rgba(255,255,255,0.04); }
.bfs-hero--dark { padding: 4px 4px 14px; }
.bfs-jobs { display: flex; flex-direction: column; gap: 7px; padding: 0 2px; }
.bfs-job {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  padding: 8px 10px;
}
.bfs-job-logo { width: 22px; height: 22px; border-radius: 5px; background: rgba(139,92,246,0.3); flex-shrink: 0; }
.bfs-job-title { height: 8px; width: 100px; background: rgba(255,255,255,0.15); border-radius: 3px; margin-bottom: 4px; }
.bfs-job-sub { height: 6px; width: 60px; background: rgba(255,255,255,0.07); border-radius: 2px; }
.bfs-job-badge { width: 40px; height: 16px; background: rgba(52,211,153,0.2); border: 1px solid rgba(52,211,153,0.3); border-radius: 999px; margin-left: auto; flex-shrink: 0; }

/* Portfolio card info */
.pcard__info { position: relative; z-index: 1; }
.pcard__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pcard__tags span {
  padding: 4px 12px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #c4b5fd;
}
.pcard__info h3 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.pcard__info p { color: var(--c-muted); font-size: 0.95rem; margin-bottom: 28px; }
.pcard__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-purple);
  transition: gap var(--t), color var(--t);
}
.pcard__link:hover { gap: 16px; color: var(--c-cyan); }

/* ══════════════════════════════
   PAKKETTEN
══════════════════════════════ */
.pakketten {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.pakketten__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(139,92,246,0.08), transparent);
  pointer-events: none;
}
.pakket-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.pkcard {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.pkcard:hover {
  border-color: var(--c-border2);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.pkcard--hero {
  background: linear-gradient(160deg, rgba(139,92,246,0.1), rgba(79,70,229,0.06));
  border-color: rgba(139,92,246,0.35);
  box-shadow: 0 0 40px rgba(139,92,246,0.1);
  transform: scale(1.03);
}
.pkcard--hero:hover { transform: scale(1.03) translateY(-6px); }

.pkcard__glow-ring {
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: linear-gradient(135deg, rgba(139,92,246,0.5), rgba(34,211,238,0.3), rgba(232,121,249,0.3));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--t);
}
.pkcard--hero .pkcard__glow-ring { opacity: 0.4; }
.pkcard--hero:hover .pkcard__glow-ring { opacity: 0.7; }

.pkcard__ribbon {
  position: absolute;
  top: 16px;
  right: -20px;
  background: linear-gradient(135deg, var(--c-purple), #4f46e5);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 28px;
  transform: rotate(40deg);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pkcard__top { display: flex; align-items: center; gap: 14px; }
.pkcard__icon { font-size: 1.8rem; }
.pkcard__name { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; }
.pkcard__desc { font-size: 0.8rem; color: var(--c-muted); margin-top: 2px; }

.pkcard__price { }
.pk-amount { font-size: 2.6rem; font-weight: 900; line-height: 1; letter-spacing: -0.03em; }
.pk-amount--sm { font-size: 1.8rem; }
.pk-per { font-size: 0.85rem; color: var(--c-muted); margin-left: 4px; }
.pkcard__price--dual { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pk-plus { font-size: 1.2rem; color: var(--c-dim); font-weight: 700; }

.pkcard__divider { height: 1px; background: var(--c-border); }

.pkcard__list { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pkcard__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--c-muted);
  line-height: 1.4;
}
.pk-yes { color: #34d399; font-weight: 700; flex-shrink: 0; }
.pk-no  { color: var(--c-dim); flex-shrink: 0; }

.pkcard__btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--t);
  cursor: none;
  text-decoration: none;
}
.pkcard__btn--primary {
  background: linear-gradient(135deg, var(--c-purple), #4f46e5);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139,92,246,0.3);
}
.pkcard__btn--primary:hover {
  box-shadow: 0 8px 32px rgba(139,92,246,0.5);
  transform: translateY(-1px);
}
.pkcard__btn--outline {
  border: 1.5px solid var(--c-border2);
  color: var(--c-text);
}
.pkcard__btn--outline:hover {
  border-color: rgba(139,92,246,0.5);
  background: rgba(139,92,246,0.08);
}

.pkcard__note { font-size: 0.72rem; color: var(--c-dim); text-align: center; }

/* Maatwerk strip */
.maatwerk-strip {
  margin-top: 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  transition: border-color var(--t);
}
.maatwerk-strip:hover { border-color: rgba(139,92,246,0.3); }
.maatwerk-strip__text { display: flex; align-items: center; gap: 16px; }
.ms-icon { font-size: 2rem; }
.maatwerk-strip strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.maatwerk-strip span { color: var(--c-muted); font-size: 0.88rem; }

/* ══════════════════════════════
   WERKWIJZE TIMELINE
══════════════════════════════ */
.werkwijze {
  padding: 120px 0;
  border-top: 1px solid var(--c-border);
}
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  padding-left: 60px;
}
.timeline__line {
  position: absolute;
  left: 19px;
  top: 0;
  width: 2px;
  height: 0%;
  background: linear-gradient(to bottom, var(--c-purple), var(--c-cyan));
  border-radius: 2px;
  transition: height 1.5s ease;
  z-index: 0;
}
.timeline__line.active { height: 100%; }

.timeline__step {
  display: flex;
  gap: 32px;
  padding-bottom: 48px;
  position: relative;
}
.timeline__step:last-child { padding-bottom: 0; }

.tl-marker {
  position: absolute;
  left: -50px;
  top: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-bg2);
  border: 2px solid var(--c-border2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: border-color var(--t), box-shadow var(--t);
}
.timeline__step:hover .tl-marker {
  border-color: var(--c-purple);
  box-shadow: 0 0 16px rgba(139,92,246,0.4);
}
.tl-marker span {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--c-purple);
  letter-spacing: 0.02em;
}
.tl-content {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  flex: 1;
  transition: border-color var(--t), transform var(--t);
}
.tl-content:hover { border-color: var(--c-border2); transform: translateX(6px); }
.tl-content h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.tl-content p { color: var(--c-muted); font-size: 0.9rem; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.contact__orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.12), transparent 70%);
  top: 50%; left: -200px;
  transform: translateY(-50%);
  pointer-events: none;
  animation: contactOrb 10s ease-in-out infinite;
}
@keyframes contactOrb {
  0%,100% { transform: translateY(-50%) scale(1); }
  50%      { transform: translateY(-55%) scale(1.05); }
}
.contact__split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact__left .section-title-big { margin-top: 12px; }
.contact__left > p { color: var(--c-muted); margin-bottom: 36px; }
.contact__links { display: flex; flex-direction: column; gap: 16px; }
.contact__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  transition: all var(--t);
  text-decoration: none;
}
.contact__link:hover { border-color: var(--c-border2); transform: translateX(6px); }
.contact__link--static { cursor: default; }
.contact__link--static:hover { transform: none; }
.cl-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(139,92,246,0.12);
  border-radius: 10px;
  flex-shrink: 0;
}
.cl-label { font-size: 0.72rem; color: var(--c-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.cl-value { font-size: 0.9rem; font-weight: 600; }

/* Contact form */
.cform { display: flex; flex-direction: column; gap: 18px; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform__field { display: flex; flex-direction: column; gap: 6px; }
.cform__field label { font-size: 0.82rem; font-weight: 600; color: var(--c-muted); }
.req { color: var(--c-purple); }

.cform__field input,
.cform__field select,
.cform__field textarea {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--c-text);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.cform__field input:focus,
.cform__field select:focus,
.cform__field textarea:focus {
  border-color: var(--c-purple);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}
.cform__field input::placeholder,
.cform__field textarea::placeholder { color: var(--c-dim); }
.cform__field select { cursor: pointer; }
.cform__field select option { background: #111028; }
.cform__field textarea { resize: vertical; min-height: 110px; }
.cform__error { font-size: 0.78rem; color: #f87171; min-height: 16px; }
.cform__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cform__check input { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--c-purple); cursor: pointer; }
.cform__check label { font-size: 0.82rem; color: var(--c-muted); cursor: pointer; }
.cform__check a { color: #c4b5fd; text-decoration: underline; }
.cform__success {
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #6ee7b7;
  font-size: 0.88rem;
  text-align: center;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  padding: 64px 0 28px;
  border-top: 1px solid var(--c-border);
  background: rgba(0,0,0,0.35);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer__logo { margin-bottom: 16px; display: inline-flex !important; }
.footer__brand p { color: var(--c-muted); font-size: 0.88rem; max-width: 280px; margin-bottom: 16px; }
.footer__email { color: #c4b5fd; font-size: 0.88rem; font-weight: 600; }
.footer__email:hover { color: var(--c-cyan); }
.footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-size: 0.76rem; font-weight: 700; color: var(--c-text); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.footer__col a { color: var(--c-muted); font-size: 0.87rem; transition: color var(--t); }
.footer__col a:hover { color: var(--c-text); }
.footer__bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
  text-align: center;
}
.footer__bottom p { font-size: 0.78rem; color: var(--c-dim); }

/* ══════════════════════════════
   POLICY PAGES
══════════════════════════════ */
.policy-page { padding: 120px 0 80px; min-height: 100vh; }
.policy-page .container { max-width: 740px; }
.policy-breadcrumb { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 32px; }
.policy-breadcrumb a { color: #c4b5fd; }
.policy-breadcrumb a:hover { text-decoration: underline; }
.policy-page h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.02em; }
.policy-page .policy-meta { color: var(--c-muted); font-size: 0.82rem; margin-bottom: 48px; }
.policy-content h2 { font-size: 1.15rem; font-weight: 700; margin: 36px 0 12px; }
.policy-content p { color: var(--c-muted); margin-bottom: 14px; line-height: 1.8; font-size: 0.95rem; }
.policy-content ul { margin: 0 0 14px 20px; color: var(--c-muted); font-size: 0.95rem; }
.policy-content ul li { margin-bottom: 6px; line-height: 1.7; list-style: disc; }
.policy-content a { color: #c4b5fd; text-decoration: underline; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 110px;
    min-height: auto;
    padding-bottom: 60px;
  }
  .hero__content { order: 2; }
  .hero__orb-wrap { order: 1; height: 340px; }
  .hero__sub { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__counters { justify-content: center; }
  .hero__scroll-hint { display: none; }
  .eyebrow-dot { display: inline-block; }

  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-cell--websites { grid-column: 1 / 3; grid-row: auto; }
  .bento-cell--hosting { grid-column: 1 / 3; }
  .bento-cell--hosting { flex-direction: column; }

  .pcard, .pcard--alt { grid-template-columns: 1fr; gap: 32px; }
  .pcard--alt .pcard__preview { order: -1; }
  .pcard--alt .pcard__info--left { order: 1; }

  .pakket-row { grid-template-columns: 1fr; }
  .pkcard--hero { transform: none; }
  .pkcard--hero:hover { transform: translateY(-6px); }

  .contact__split { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .bento { grid-template-columns: 1fr; }
  .bento-cell--websites { grid-column: auto; }
  .bento-cell--hosting { grid-column: auto; flex-direction: column; }

  .cform__row { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .maatwerk-strip { flex-direction: column; align-items: flex-start; }
  .timeline { padding-left: 48px; }
  .pcard__number { display: none; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn-aurora, .btn-ghost { justify-content: center; width: 100%; }
  .hero__counters { gap: 16px; }
}

/* ══════════════════════════════
   SIGNALFORGE ACCURATE MOCKUP
══════════════════════════════ */
.bf-screen--sf {
  background: #05070f;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  overflow: hidden;
}
.sf-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.sf-nav__logo { font-size: 0.65rem; font-weight: 400; color: #fff; white-space: nowrap; }
.sf-nav__logo strong { font-weight: 900; }
.sf-nav__logo span { background: linear-gradient(90deg,#3b82f6,#22d3ee); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.sf-nav__links { display: flex; gap: 8px; flex: 1; justify-content: center; }
.sf-nav__links span { width: 24px; height: 5px; background: rgba(255,255,255,0.07); border-radius: 2px; }
.sf-nav__cta { font-size: 0.45rem; padding: 3px 8px; background: linear-gradient(90deg,#3b82f6,#1d4ed8); color: #fff; border-radius: 5px; font-weight: 700; white-space: nowrap; flex-shrink: 0; }

/* Live crypto ticker */
.sf-ticker {
  display: flex;
  gap: 14px;
  padding: 5px 10px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
  flex-shrink: 0;
}
.sf-tick { font-size: 0.42rem; font-weight: 700; white-space: nowrap; letter-spacing: 0.02em; }
.sf-tick--up   { color: #22c55e; }
.sf-tick--down { color: #ef4444; }

/* Hero */
.sf-hero { padding: 7px 12px 6px; text-align: center; flex-shrink: 0; }
.sf-badge { font-size: 0.38rem; color: rgba(255,255,255,0.4); margin-bottom: 5px; letter-spacing: 0.04em; }
.sf-h1 {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.sf-h2 {
  font-size: 0.58rem;
  font-weight: 700;
  background: linear-gradient(90deg, #3b82f6, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3px;
}
.sf-sub { font-size: 0.38rem; color: rgba(255,255,255,0.35); margin-bottom: 7px; }
.sf-cta {
  display: inline-block;
  font-size: 0.5rem;
  padding: 4px 14px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(59,130,246,0.4);
}

/* Signal card */
.sf-signal {
  margin: 6px 10px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(34,211,238,0.15);
  border-radius: 8px;
  padding: 8px 10px;
  flex-shrink: 0;
}
.sf-signal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.sf-signal__header span:first-child { font-size: 0.48rem; color: rgba(255,255,255,0.55); font-weight: 600; }
.sf-signal__badge {
  font-size: 0.4rem;
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.3);
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 700;
}
.sf-signal__rows { display: flex; flex-direction: column; gap: 3px; margin-bottom: 6px; }
.sf-signal__row { display: flex; justify-content: space-between; font-size: 0.42rem; color: rgba(255,255,255,0.45); }
.sf-green { color: #22c55e !important; font-weight: 700; }
.sf-red   { color: #ef4444 !important; font-weight: 700; }
.sf-pricing {
  display: flex;
  gap: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sf-pricing span {
  flex: 1;
  text-align: center;
  font-size: 0.38rem;
  padding: 3px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

/* ══════════════════════════════
   FACTUURPRO ACCURATE MOCKUP
══════════════════════════════ */
.bf-screen--factuur { background: #080e1a; padding: 0; display: flex; flex-direction: column; min-height: 290px; overflow: hidden; }
.fp-nav { display: flex; align-items: center; gap: 8px; padding: 7px 10px; background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
.fp-nav__logo { font-size: 0.7rem; font-weight: 400; color: rgba(255,255,255,0.9); white-space: nowrap; }
.fp-nav__logo strong { font-weight: 900; background: linear-gradient(90deg,#22d3ee,#0d9488); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.fp-nav__links { display: flex; gap: 8px; flex: 1; justify-content: center; }
.fp-nav__links span { width: 26px; height: 5px; background: rgba(255,255,255,0.12); border-radius: 2px; }
.fp-nav__btns { display: flex; gap: 5px; align-items: center; flex-shrink: 0; }
.fp-btn-in { width: 38px; height: 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; }
.fp-btn-lf { background: linear-gradient(90deg,#f59e0b,#d97706); color: #fff; font-size: 0.48rem; padding: 3px 7px; border-radius: 6px; font-weight: 700; white-space: nowrap; }
.fp-hero { padding: 9px 12px 4px; text-align: center; flex-shrink: 0; }
.fp-badge { display: inline-block; font-size: 0.45rem; padding: 2px 7px; background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3); border-radius: 999px; color: #a5b4fc; margin-bottom: 5px; }
.fp-h1 { font-size: 0.82rem; font-weight: 900; color: #fff; line-height: 1.25; letter-spacing: -0.01em; }
.fp-h1--teal { margin-bottom: 4px; }
.fp-h1--teal em { font-style: italic; background: linear-gradient(90deg,#22d3ee,#0d9488); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.fp-sub { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; width: 72%; margin: 4px auto 6px; }
.fp-actions { display: flex; gap: 5px; justify-content: center; margin-bottom: 5px; flex-wrap: nowrap; }
.fp-cta-primary { background: linear-gradient(90deg,#3b82f6,#2563eb); color: #fff; font-size: 0.48rem; padding: 4px 8px; border-radius: 999px; font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.fp-cta-sec { border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); font-size: 0.48rem; padding: 4px 8px; border-radius: 999px; font-weight: 600; white-space: nowrap; }
.fp-checks { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-bottom: 4px; }
.fp-checks span { font-size: 0.4rem; color: #22d3ee; white-space: nowrap; }
.fp-invoice { margin: 5px 10px 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 8px 10px; flex-shrink: 0; }
.fp-inv-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.fp-inv-title { font-size: 0.52rem; font-weight: 900; color: #fff; letter-spacing: 0.08em; }
.fp-inv-badge { font-size: 0.4rem; background: rgba(52,211,153,0.15); color: #34d399; border: 1px solid rgba(52,211,153,0.3); padding: 1px 5px; border-radius: 999px; font-weight: 700; }
.fp-inv-sub { font-size: 0.4rem; color: rgba(255,255,255,0.25); margin-bottom: 5px; }
.fp-inv-row { display: flex; justify-content: space-between; font-size: 0.42rem; color: rgba(255,255,255,0.45); padding: 2px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.fp-inv-row--total { color: #fff; font-weight: 800; border-top: 1px solid rgba(255,255,255,0.12); border-bottom: none; padding-top: 4px; margin-top: 1px; font-size: 0.48rem; }

/* ══════════════════════════════
   URKWERKT ACCURATE MOCKUP
══════════════════════════════ */
.bf-screen--urk { background: #fff; padding: 0; display: flex; flex-direction: column; min-height: 290px; overflow: hidden; }
.uw-topbar { background: #1e3a5f; color: rgba(255,255,255,0.75); font-size: 0.4rem; padding: 4px 10px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex-shrink: 0; }
.uw-topbar strong { color: #fff; }
.uw-nav { display: flex; align-items: center; gap: 6px; padding: 6px 10px; background: #fff; border-bottom: 1px solid #e5e7eb; flex-shrink: 0; }
.uw-nav__logo { font-size: 0.62rem; font-weight: 700; color: #1e3a5f; white-space: nowrap; }
.uw-nav__logo strong { color: #1e3a5f; }
.uw-nav__logo span { color: #2563eb; }
.uw-nav__links { display: flex; gap: 7px; flex: 1; }
.uw-nav__links span { width: 22px; height: 5px; background: #e5e7eb; border-radius: 2px; }
.uw-nav__btns { display: flex; gap: 5px; align-items: center; flex-shrink: 0; }
.uw-btn-in { width: 34px; height: 14px; background: #f3f4f6; border-radius: 999px; }
.uw-btn-vp { background: #2563eb; color: #fff; font-size: 0.42rem; padding: 3px 6px; border-radius: 5px; font-weight: 700; white-space: nowrap; }
.uw-hero { background: #0f2042; padding: 9px 10px 8px; flex-shrink: 0; }
.uw-badge { display: inline-block; font-size: 0.4rem; padding: 2px 7px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.uw-h1 { font-size: 0.88rem; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 2px; }
.uw-sub { font-size: 0.42rem; color: rgba(255,255,255,0.65); margin-bottom: 7px; }
.uw-search { display: flex; gap: 3px; margin-bottom: 5px; }
.uw-search__input { flex: 1; display: flex; align-items: center; gap: 3px; background: #fff; border-radius: 4px; padding: 3px 5px; min-width: 0; }
.uw-si-icon { font-size: 0.48rem; flex-shrink: 0; }
.uw-search__input span:last-child { font-size: 0.38rem; color: #9ca3af; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.uw-search__btn { background: #2563eb; color: #fff; font-size: 0.4rem; padding: 3px 7px; border-radius: 4px; font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.uw-stats { display: flex; gap: 8px; font-size: 0.4rem; color: rgba(255,255,255,0.55); align-items: center; }
.uw-stats span:nth-child(2) { color: rgba(255,255,255,0.2); }
.uw-stats strong { color: #fff; }
.uw-light { background: #f9fafb; padding: 7px 10px; border-top: 3px solid #e5e7eb; flex: 1; }
.uw-checks { display: flex; gap: 6px; margin-bottom: 6px; flex-wrap: wrap; }
.uw-checks span { font-size: 0.38rem; color: #16a34a; font-weight: 600; white-space: nowrap; }
.uw-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.uw-cat { font-size: 0.4rem; padding: 4px 6px; background: #fff; border: 1px solid #e5e7eb; border-radius: 5px; color: #374151; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq { padding: 120px 0; border-top: 1px solid var(--c-border); }
.faq__list { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--c-border); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--c-text);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: color var(--t);
}
.faq-item__q:hover { color: #a78bfa; }
.faq-item__q[aria-expanded="true"] { color: #a78bfa; }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--c-purple);
  flex-shrink: 0;
  transition: transform var(--t);
  line-height: 1;
}
.faq-item__q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-item__a { padding: 0 0 22px; }
.faq-item__a p { color: var(--c-muted); font-size: 0.95rem; line-height: 1.75; max-width: 680px; }

/* ══════════════════════════════
   AANVRAAG CTA IN CONTACT
══════════════════════════════ */
.aanvraag-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(79,70,229,0.06));
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--t);
  margin-bottom: 28px;
  cursor: none;
}
.aanvraag-cta:hover { border-color: rgba(139,92,246,0.6); transform: translateX(4px); box-shadow: 0 8px 30px rgba(139,92,246,0.15); }
.aanvraag-cta__icon { font-size: 1.6rem; flex-shrink: 0; }
.aanvraag-cta__text { flex: 1; }
.aanvraag-cta__text strong { display: block; font-size: 0.95rem; color: #c4b5fd; margin-bottom: 3px; }
.aanvraag-cta__text span { font-size: 0.82rem; color: var(--c-muted); }
.aanvraag-cta__arrow { font-size: 1.2rem; color: var(--c-purple); transition: transform var(--t); flex-shrink: 0; }
.aanvraag-cta:hover .aanvraag-cta__arrow { transform: translateX(4px); }

/* ══════════════════════════════
   FLOATING CTA
══════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--c-purple), #4f46e5);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(139,92,246,0.4), 0 0 0 0 rgba(139,92,246,0.4);
  z-index: 90;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.5s ease, box-shadow var(--t), scale var(--t);
  cursor: none;
  animation: floatingPulse 3s 2s ease infinite;
}
.floating-cta.visible { transform: translateY(0); opacity: 1; }
.floating-cta:hover { box-shadow: 0 12px 48px rgba(139,92,246,0.6); transform: translateY(-2px) scale(1.03); }
.floating-cta__icon { font-size: 1rem; }
.floating-cta__label { white-space: nowrap; }

@keyframes floatingPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(139,92,246,0.4), 0 0 0 0 rgba(139,92,246,0.3); }
  50% { box-shadow: 0 8px 32px rgba(139,92,246,0.4), 0 0 0 12px rgba(139,92,246,0); }
}

@media (max-width: 768px) {
  .floating-cta__label { display: none; }
  .floating-cta { padding: 14px; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
  .faq-item__q { font-size: 0.9rem; }
}

/* ══════════════════════════════
   AANVRAAG PAGE
══════════════════════════════ */
.aanvraag-page { min-height: 100vh; padding: 110px 0 80px; }
.aanvraag-page .container { max-width: 760px; }

.progress-bar {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.progress-bar::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 0; right: 0;
  height: 2px;
  background: var(--c-border);
  z-index: 0;
}
.progress-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.progress-step__dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  background: var(--c-bg2);
  border: 2px solid var(--c-border);
  color: var(--c-muted);
  transition: all var(--t);
}
.progress-step.active .progress-step__dot {
  background: var(--c-purple);
  border-color: var(--c-purple);
  color: #fff;
  box-shadow: 0 0 20px rgba(139,92,246,0.4);
}
.progress-step.done .progress-step__dot {
  background: #34d399;
  border-color: #34d399;
  color: #fff;
}
.progress-step__label {
  font-size: 0.7rem;
  color: var(--c-muted);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.progress-step.active .progress-step__label { color: var(--c-purple); }

.form-step { display: none; }
.form-step.active { display: block; animation: stepIn 0.4s cubic-bezier(0.16,1,0.3,1) both; }
@keyframes stepIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform:none; } }

.step-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.02em; }
.step-sub { color: var(--c-muted); font-size: 0.9rem; margin-bottom: 28px; }

.form-grid { display: grid; gap: 18px; }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
.aform-group { display: flex; flex-direction: column; gap: 7px; }
.aform-group label { font-size: 0.82rem; font-weight: 600; color: var(--c-muted); }
.aform-group input,
.aform-group select,
.aform-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--c-text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
.aform-group input:focus,
.aform-group select:focus,
.aform-group textarea:focus {
  border-color: var(--c-purple);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}
.aform-group input::placeholder, .aform-group textarea::placeholder { color: var(--c-dim); }
.aform-group select { cursor: pointer; }
.aform-group select option { background: #111028; }
.aform-group textarea { resize: vertical; min-height: 90px; }

/* Checkbox grid */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.025);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--t);
}
.check-item:hover { border-color: rgba(139,92,246,0.4); background: rgba(139,92,246,0.05); }
.check-item input { accent-color: var(--c-purple); width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.check-item label { font-size: 0.85rem; cursor: pointer; color: var(--c-muted); }
.check-item:has(input:checked) { border-color: rgba(139,92,246,0.5); background: rgba(139,92,246,0.08); }
.check-item:has(input:checked) label { color: var(--c-text); }

/* Style picker */
.style-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.style-option {
  position: relative;
}
.style-option input { position: absolute; opacity: 0; pointer-events: none; }
.style-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(255,255,255,0.025);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--t);
  text-align: center;
}
.style-option label:hover { border-color: rgba(139,92,246,0.4); }
.style-option input:checked + label {
  border-color: var(--c-purple);
  background: rgba(139,92,246,0.1);
  box-shadow: 0 0 0 1px rgba(139,92,246,0.3);
}
.style-option__emoji { font-size: 1.5rem; }
.style-option__name { font-size: 0.8rem; font-weight: 700; color: var(--c-text); }
.style-option__desc { font-size: 0.7rem; color: var(--c-muted); }

/* Color picker section */
.color-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.color-swatch {
  position: relative;
}
.color-swatch input { position: absolute; opacity: 0; pointer-events: none; }
.color-swatch label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.swatch-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color var(--t), transform var(--t);
}
.color-swatch input:checked + label .swatch-circle { border-color: #fff; transform: scale(1.2); }
.swatch-name { font-size: 0.62rem; color: var(--c-muted); white-space: nowrap; }

/* Form nav buttons */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--c-border);
}
.btn-prev {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  color: var(--c-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--t);
}
.btn-prev:hover { color: var(--c-text); border-color: var(--c-border2); }
.btn-prev:disabled { opacity: 0.3; pointer-events: none; }
.step-counter { font-size: 0.8rem; color: var(--c-muted); }
.step-counter span { color: var(--c-purple); font-weight: 700; }

.form-success-page {
  text-align: center;
  padding: 60px 0;
}
.form-success-page .success-icon { font-size: 4rem; margin-bottom: 20px; }
.form-success-page h2 { font-size: 2rem; font-weight: 900; margin-bottom: 12px; }
.form-success-page p { color: var(--c-muted); margin-bottom: 32px; }

@media (max-width: 600px) {
  .form-grid--2 { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: 1fr 1fr; }
  .progress-step__label { display: none; }
}
