/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NOISE TEXTURE ─── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ─── NAV SCROLL ─── */
nav.scrolled {
  background: rgba(9, 9, 15, 0.98) !important;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  padding-top: 8px !important;
  padding-bottom: 10px !important;
  transition: all 0.3s ease;
}

/* ─── GLOW KNOPPEN ─── */
.btn-primary {
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: var(--accent, #00E5C0);
  filter: blur(16px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::after {
  opacity: 0.45;
}
.btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 48px rgba(0, 229, 192, 0.5) !important;
}

.btn-white {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn-white:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 48px rgba(255, 255, 255, 0.25) !important;
}

.pakket-btn {
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.pakket-btn::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: #00E5C0;
  filter: blur(16px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.pakket-btn:hover::after { opacity: 0.4; }
.pakket-btn:hover { transform: translateY(-3px) !important; }

/* ─── KAART HOVER EFFECTEN ─── */
.step-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.step-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 60px rgba(59, 130, 246, 0.12) !important;
}

.blog-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease !important;
}
.blog-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: 0 24px 60px rgba(59, 130, 246, 0.1) !important;
}

.stat-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease !important;
}
.stat-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15) !important;
}
