/* ——— DJ Sweeby · Verzoekjespagina ——— */
:root {
  --vz-bg: #050508;
  --vz-bg-soft: #0c0c12;
  --vz-surface: rgba(14, 14, 22, 0.82);
  --vz-surface-strong: rgba(18, 18, 28, 0.92);
  --vz-line: rgba(255, 255, 255, 0.1);
  --vz-line-strong: rgba(168, 85, 247, 0.35);
  --vz-text: #f4f4f8;
  --vz-muted: #9ca3b8;
  --vz-purple: #a855f7;
  --vz-purple-bright: #c084fc;
  --vz-purple-deep: #7c3aed;
  --vz-purple-glow: rgba(168, 85, 247, 0.45);
  --vz-blue: #38bdf8;
  --vz-green: #34d399;
  --vz-radius: 20px;
  --vz-radius-lg: 28px;
  --vz-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  --vz-nav-h: 72px;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.page-verzoekjes {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--vz-text);
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(124, 58, 237, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(168, 85, 247, 0.12), transparent 50%),
    linear-gradient(180deg, #030305 0%, var(--vz-bg) 40%, #080810 100%);
}

body.page-verzoekjes > * {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ——— Top navigation ——— */
.vz-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--vz-nav-h);
  padding:
    max(10px, env(safe-area-inset-top, 0px))
    max(20px, env(safe-area-inset-right, 0px))
    10px
    max(20px, env(safe-area-inset-left, 0px));
  background: rgba(5, 5, 8, 0.94);
  border-bottom: 1px solid var(--vz-line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vz-brand {
  flex-shrink: 0;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #fff;
  white-space: nowrap;
}

.vz-nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  min-height: 44px;
  min-width: 44px;
  padding: 8px 14px 8px 38px;
  border: 1px solid var(--vz-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--vz-text);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  position: relative;
}

.vz-nav-toggle span:not(.vz-nav-toggle-label) {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.vz-nav-toggle span:nth-child(1) { top: 13px; }
.vz-nav-toggle span:nth-child(2) { top: 20px; }
.vz-nav-toggle span:nth-child(3) { top: 27px; }

.vz-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-wrap: wrap;
  gap: 4px 6px;
}

.vz-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vz-muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.vz-menu a:hover {
  color: var(--vz-text);
  background: rgba(255, 255, 255, 0.06);
}

.vz-menu a.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--vz-purple-deep), var(--vz-purple));
  box-shadow: 0 0 24px var(--vz-purple-glow);
}

.vz-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.vz-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--vz-line);
  color: var(--vz-muted);
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.vz-social a:hover {
  color: var(--vz-purple-bright);
  border-color: var(--vz-line-strong);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.25);
}

.vz-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-height: 38px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--vz-line-strong);
  background: rgba(168, 85, 247, 0.12);
  color: var(--vz-purple-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.vz-login-btn:hover {
  color: #fff;
  border-color: var(--vz-purple);
  background: linear-gradient(135deg, var(--vz-purple-deep), var(--vz-purple));
  box-shadow: 0 0 22px var(--vz-purple-glow);
}

/* ——— Hero ——— */
.vz-hero {
  position: relative;
  min-height: clamp(440px, 66vh, 640px);
  display: flex;
  align-items: center;
  padding: clamp(64px, 9vw, 110px) max(20px, env(safe-area-inset-right, 0px)) clamp(72px, 8vw, 110px) max(20px, env(safe-area-inset-left, 0px));
  background:
    linear-gradient(100deg, rgba(5, 5, 8, 0.96) 0%, rgba(5, 5, 8, 0.78) 30%, rgba(5, 5, 8, 0.3) 65%, rgba(124, 58, 237, 0.18) 100%),
    #0a0a12 url("img/intro-dj.jpg") center 30% / cover no-repeat;
  border-bottom: 1px solid var(--vz-line);
  overflow: hidden;
}

.vz-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 75% at 82% 45%, rgba(168, 85, 247, 0.42), transparent 62%),
    radial-gradient(ellipse 40% 60% at 95% 90%, rgba(217, 70, 239, 0.28), transparent 60%),
    linear-gradient(to top, rgba(5, 5, 8, 0.98) 0%, transparent 42%);
  pointer-events: none;
}

.vz-hero-inner {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.vz-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--vz-line-strong);
  background: rgba(168, 85, 247, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vz-purple-bright);
}

.vz-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d946ef;
  box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.6);
  animation: vz-pulse 2s ease-out infinite;
}

@keyframes vz-pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(217, 70, 239, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 70, 239, 0); }
}

.vz-hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.18em;
}

.vz-hero-kicker {
  display: block;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.vz-hero-headline {
  display: block;
  position: relative;
  max-width: 16ch;
  margin-top: 0.32em;
  padding-left: 18px;
  font-size: clamp(1.2rem, 3.4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.vz-hero-headline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  bottom: 0.1em;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #e879f9, #7c3aed);
  box-shadow: 0 0 16px var(--vz-purple-glow);
}

.vz-hero-accent {
  display: inline;
  background: linear-gradient(90deg, #e879f9, #c084fc 40%, #d946ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 32px rgba(217, 70, 239, 0.55));
}

.vz-hero-lead {
  margin: 24px 0 0;
  max-width: 540px;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: rgba(228, 228, 240, 0.82);
  line-height: 1.7;
}

.vz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.vz-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--vz-purple-deep) 0%, var(--vz-purple) 50%, #d946ef 100%);
  box-shadow: 0 12px 36px rgba(168, 85, 247, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.vz-hero-cta svg {
  animation: vz-bounce 1.8s ease-in-out infinite;
}

.vz-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(168, 85, 247, 0.5), 0 0 28px rgba(217, 70, 239, 0.3);
  filter: brightness(1.06);
}

@keyframes vz-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.vz-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.vz-hero-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(37, 211, 102, 0.5);
  filter: brightness(1.06);
}

.vz-hero-disclaimer {
  margin: 14px 0 0;
  max-width: 520px;
  font-size: 0.88rem;
  color: rgba(156, 163, 184, 0.85);
}

/* ——— Form card ——— */
.vz-form-section {
  position: relative;
  z-index: 2;
  margin-top: clamp(-56px, -6vw, -36px);
  padding: 0 max(20px, env(safe-area-inset-right, 0px)) clamp(48px, 7vw, 80px) max(20px, env(safe-area-inset-left, 0px));
}

.vz-form-card {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px);
  border-radius: var(--vz-radius-lg);
  border: 1px solid var(--vz-line-strong);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--vz-surface-strong);
  box-shadow:
    var(--vz-shadow),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vz-form-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.vz-form-icon {
  flex-shrink: 0;
  color: var(--vz-purple-bright);
  filter: drop-shadow(0 0 12px var(--vz-purple-glow));
}

.vz-form-header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vz-tally-wrap {
  width: 100%;
  min-height: 520px;
  border-radius: 16px;
  overflow: hidden;
}

.vz-tally-wrap iframe {
  display: block;
  width: 100%;
  min-height: 520px;
  background: transparent;
}

.vz-tally-fallback {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--vz-muted);
}

.vz-tally-fallback a {
  color: var(--vz-purple-bright);
  font-weight: 600;
  text-decoration: underline;
}

.vz-privacy--tally {
  margin: 16px 0 0;
  justify-content: center;
}

.vz-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.vz-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vz-field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vz-muted);
}

.vz-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(156, 163, 184, 0.65);
  font-size: 0.72rem;
}

.vz-field input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--vz-line);
  background: rgba(0, 0, 0, 0.45);
  color: var(--vz-text);
  font-family: inherit;
  font-size: max(16px, 1rem);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vz-field input::placeholder {
  color: rgba(156, 163, 184, 0.45);
}

.vz-field input:focus {
  border-color: var(--vz-purple);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.vz-form-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  margin-top: 32px;
}

.vz-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 14px 32px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--vz-purple-deep) 0%, var(--vz-purple) 45%, #d946ef 100%);
  box-shadow:
    0 12px 40px rgba(168, 85, 247, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.vz-submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 48px rgba(168, 85, 247, 0.5),
    0 0 32px rgba(217, 70, 239, 0.25);
  filter: brightness(1.06);
}

.vz-submit:active {
  transform: translateY(0);
}

.vz-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.vz-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  max-width: 360px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(156, 163, 184, 0.75);
  text-align: right;
}

.vz-privacy svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--vz-purple);
}

.vz-form-success {
  margin: 20px 0 0;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.1);
  color: var(--vz-green);
  font-weight: 600;
  text-align: center;
}

/* ——— Steps ——— */
.vz-steps {
  padding: clamp(48px, 7vw, 88px) max(20px, env(safe-area-inset-right, 0px));
  width: min(1100px, 100%);
  margin: 0 auto;
}

.vz-section-title {
  margin: 0 0 clamp(28px, 5vw, 44px);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.vz-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.vz-step {
  padding: 28px 24px;
  border-radius: var(--vz-radius);
  border: 1px solid var(--vz-line);
  background: var(--vz-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.vz-step:hover {
  border-color: var(--vz-line-strong);
  box-shadow: 0 0 32px rgba(168, 85, 247, 0.12);
}

.vz-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--vz-purple-bright);
  background: rgba(168, 85, 247, 0.12);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.15);
}

.vz-step h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vz-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--vz-muted);
  line-height: 1.55;
}

/* ——— Recent requests table ——— */
.vz-recent {
  padding: 0 max(20px, env(safe-area-inset-right, 0px)) clamp(56px, 8vw, 96px) max(20px, env(safe-area-inset-left, 0px));
  width: min(1100px, 100%);
  margin: 0 auto;
}

.vz-table-wrap {
  overflow-x: auto;
  border-radius: var(--vz-radius);
  border: 1px solid var(--vz-line);
  background: var(--vz-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--vz-shadow);
}

.vz-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.vz-table thead {
  background: rgba(168, 85, 247, 0.1);
}

.vz-table th {
  padding: 16px 18px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vz-purple-bright);
  border-bottom: 1px solid var(--vz-line);
}

.vz-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--vz-text);
}

.vz-table tbody tr:last-child td {
  border-bottom: 0;
}

.vz-table tbody tr:hover {
  background: rgba(168, 85, 247, 0.06);
}

.vz-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vz-badge--purple {
  color: #e9d5ff;
  background: rgba(168, 85, 247, 0.22);
  border: 1px solid rgba(168, 85, 247, 0.45);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.2);
}

.vz-badge--blue {
  color: #bae6fd;
  background: rgba(56, 189, 248, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.vz-badge--green {
  color: #a7f3d0;
  background: rgba(52, 211, 153, 0.18);
  border: 1px solid rgba(52, 211, 153, 0.4);
}

/* ——— QR block ——— */
.vz-qr {
  padding: clamp(40px, 6vw, 72px) max(20px, env(safe-area-inset-right, 0px)) clamp(64px, 9vw, 100px) max(20px, env(safe-area-inset-left, 0px));
}

.vz-qr-inner {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 40px);
  border-radius: var(--vz-radius-lg);
  border: 1px solid var(--vz-line-strong);
  background:
    linear-gradient(135deg, rgba(168, 85, 247, 0.08), transparent 55%),
    var(--vz-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 48px rgba(168, 85, 247, 0.1);
}

.vz-qr-visual {
  position: relative;
  flex-shrink: 0;
}

.vz-qr-arrow {
  position: absolute;
  top: -42px;
  right: -28px;
  color: var(--vz-purple-bright);
  opacity: 0.9;
  transform: rotate(-12deg);
  filter: drop-shadow(0 0 8px var(--vz-purple-glow));
}

.vz-qr-frame {
  padding: 14px;
  border-radius: 20px;
  border: 3px solid var(--vz-purple);
  background: #fff;
  box-shadow:
    0 0 40px var(--vz-purple-glow),
    0 16px 40px rgba(0, 0, 0, 0.35);
}

.vz-qr-img {
  width: 160px;
  height: 160px;
  border-radius: 8px;
}

.vz-qr-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}

.vz-qr-copy p {
  margin: 0;
  max-width: 420px;
  font-size: 0.95rem;
  color: var(--vz-muted);
  line-height: 1.6;
}

/* ——— Footer ——— */
.vz-footer {
  padding: 28px max(20px, env(safe-area-inset-right, 0px)) max(28px, env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left, 0px));
  border-top: 1px solid var(--vz-line);
  background: rgba(5, 5, 8, 0.9);
  text-align: center;
}

.vz-footer p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--vz-muted);
}

/* ——— Admin beheerpagina ——— */
.page-verzoekjes-admin .vz-topbar {
  justify-content: flex-start;
}

.vz-admin-label {
  margin-left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vz-purple-bright);
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid var(--vz-line-strong);
}

.vz-admin-logout {
  margin-left: auto;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--vz-line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--vz-muted);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.vz-admin-logout:hover {
  color: var(--vz-text);
  border-color: var(--vz-line-strong);
}

.vz-admin-gate {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--vz-nav-h) - 80px);
  min-height: calc(100dvh - var(--vz-nav-h) - 80px);
  padding: 40px max(20px, env(safe-area-inset-right, 0px)) 64px max(20px, env(safe-area-inset-left, 0px));
}

.vz-admin-gate-card {
  width: min(420px, 100%);
  padding: clamp(32px, 5vw, 44px);
  border-radius: var(--vz-radius-lg);
  border: 1px solid var(--vz-line-strong);
  background: var(--vz-surface-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--vz-shadow);
  text-align: center;
}

.vz-admin-gate-icon {
  color: var(--vz-purple-bright);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px var(--vz-purple-glow));
}

.vz-admin-gate-card h1 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vz-admin-gate-card > p {
  margin: 0 0 24px;
  font-size: 0.92rem;
  color: var(--vz-muted);
  line-height: 1.55;
}

.vz-admin-gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.vz-admin-gate-form label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vz-muted);
}

.vz-admin-gate-form input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--vz-line);
  background: rgba(0, 0, 0, 0.45);
  color: var(--vz-text);
  font-family: inherit;
  font-size: max(16px, 1rem);
  outline: none;
}

.vz-admin-gate-form input:focus {
  border-color: var(--vz-purple);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.vz-admin-gate-error {
  margin: 0;
  font-size: 0.85rem;
  color: #f87171;
}

.vz-admin-gate-form .vz-submit {
  width: 100%;
  margin-top: 8px;
}

.vz-admin-visitors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 0 0 22px;
}

.vz-admin-visitors--inline {
  margin: 0;
  width: auto;
}

.vz-admin-visitors-stat {
  padding: 14px 16px;
  border: 1px solid var(--vz-line-strong);
  border-radius: 16px;
  background: rgba(168, 85, 247, 0.08);
  text-align: center;
}

.vz-admin-visitors-stat strong {
  display: block;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  line-height: 1;
  color: var(--vz-purple-bright, #c084fc);
}

.vz-admin-visitors-stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vz-muted);
}

.vz-admin-countries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: -8px 0 18px;
}

.vz-country-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--vz-line);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: var(--vz-muted);
}

.vz-country-pill strong {
  color: var(--vz-text);
}

.vz-country-empty {
  font-size: 0.82rem;
  color: var(--vz-muted);
}

.vz-admin-cloud-note {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
  color: #fcd34d;
  font-size: 0.88rem;
  line-height: 1.5;
}

.vz-admin-cloud-note code,
.vz-admin-note code {
  font-size: 0.85em;
  color: #e9d5ff;
}

.vz-admin-panel {
  padding-top: clamp(40px, 6vw, 64px);
}

.vz-admin-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.vz-admin-panel-head .vz-section-title {
  margin: 0;
  text-align: left;
}

.vz-admin-cloud-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--vz-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--vz-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.vz-admin-cloud-status[data-status='live'] {
  color: #86efac;
  border-color: rgba(134, 239, 172, 0.35);
  background: rgba(34, 197, 94, 0.08);
}

.vz-admin-cloud-status[data-status='offline'],
.vz-admin-cloud-status[data-status='local'] {
  color: #fca5a5;
  border-color: rgba(252, 165, 165, 0.35);
  background: rgba(239, 68, 68, 0.08);
}

.vz-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vz-admin-btn {
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--vz-line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--vz-text);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.vz-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.vz-admin-btn:hover {
  border-color: var(--vz-line-strong);
  background: rgba(168, 85, 247, 0.1);
}

.vz-admin-btn--primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--vz-purple-deep), var(--vz-purple) 55%, #d946ef);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35);
}

.vz-admin-btn--primary:hover {
  border-color: transparent;
  background: linear-gradient(135deg, var(--vz-purple-deep), var(--vz-purple) 55%, #d946ef);
  filter: brightness(1.08);
}

.vz-admin-btn--danger:hover {
  border-color: rgba(248, 113, 113, 0.45);
  background: rgba(248, 113, 113, 0.1);
  color: #fca5a5;
}

/* ——— Opgeslagen avonden (mapjes) ——— */
.vz-admin-archive {
  padding-top: clamp(32px, 5vw, 56px);
}

.vz-archive-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vz-folder {
  border-radius: var(--vz-radius);
  border: 1px solid var(--vz-line);
  background: var(--vz-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vz-folder.is-open {
  border-color: var(--vz-line-strong);
  box-shadow: 0 0 32px rgba(168, 85, 247, 0.12);
}

.vz-folder-head {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--vz-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.vz-folder-icon {
  flex-shrink: 0;
  color: var(--vz-purple-bright);
  filter: drop-shadow(0 0 8px var(--vz-purple-glow));
}

.vz-folder-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.vz-folder-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.vz-folder-meta {
  font-size: 0.8rem;
  color: var(--vz-muted);
}

.vz-folder-chevron {
  flex-shrink: 0;
  color: var(--vz-muted);
  transition: transform 0.2s ease;
}

.vz-folder.is-open .vz-folder-chevron {
  transform: rotate(180deg);
}

.vz-folder-body {
  padding: 0 22px 22px;
}

.vz-folder-body .vz-table-wrap {
  box-shadow: none;
}

.vz-folder-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.vz-admin-note {
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: var(--vz-muted);
  line-height: 1.55;
}

.vz-admin-empty {
  margin: 20px 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--vz-muted);
}

.vz-status-select {
  display: block;
  width: 100%;
  max-width: 150px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--vz-line);
  background: rgba(0, 0, 0, 0.5);
  color: var(--vz-text);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
}

.vz-status-select--inwachtrij {
  color: #e9d5ff;
  border-color: rgba(168, 85, 247, 0.45);
  background: rgba(168, 85, 247, 0.22);
}

.vz-status-select--ontvangen {
  color: #bae6fd;
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.18);
}

.vz-status-select--gedraaid {
  color: #a7f3d0;
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.18);
}

.vz-status-select option {
  background: #15151f;
  color: #f4f4f8;
  font-weight: 700;
}

/* ——— Socials pagina ——— */
.soc-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px) max(20px, env(safe-area-inset-right, 0px)) 0 max(20px, env(safe-area-inset-left, 0px));
}

.soc-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--vz-line);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.soc-pill:hover {
  transform: translateY(-2px);
}

.soc-pill--fb {
  background: linear-gradient(135deg, #1877f2, #0a4db3);
  border-color: transparent;
}

.soc-pill--fb:hover {
  box-shadow: 0 12px 30px rgba(24, 119, 242, 0.35);
}

.soc-pill--ig {
  background: linear-gradient(135deg, #feda75, #d62976 45%, #962fbf 80%, #4f5bd5);
  border-color: transparent;
}

.soc-pill--ig:hover {
  box-shadow: 0 12px 30px rgba(214, 41, 118, 0.35);
}

.soc-pill--tt {
  background: linear-gradient(135deg, #25f4ee, #000 45%, #fe2c55);
  border-color: transparent;
}

.soc-pill--tt:hover {
  box-shadow: 0 12px 30px rgba(254, 44, 85, 0.35);
}

.soc-feeds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) max(20px, env(safe-area-inset-right, 0px)) clamp(56px, 8vw, 96px) max(20px, env(safe-area-inset-left, 0px));
  align-items: stretch;
}

.soc-feed-embed--fb,
.soc-feed-embed--tt {
  display: block;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.soc-feed-embed--fb iframe {
  display: block;
  width: 100% !important;
  border: none;
}

.soc-feed-embed--tt .tiktok-embed {
  width: 100% !important;
  margin: 0 auto !important;
}

.soc-feed {
  display: flex;
  flex-direction: column;
  border-radius: var(--vz-radius-lg);
  border: 1px solid var(--vz-line-strong);
  background: var(--vz-surface);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--vz-shadow);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.soc-feed:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 92, 255, 0.4);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.soc-feed-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--vz-line);
}

.soc-feed-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.soc-feed-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
}

.soc-feed-icon--fb { background: linear-gradient(135deg, #1877f2, #0a4db3); }
.soc-feed-icon--ig { background: linear-gradient(135deg, #feda75, #d62976 50%, #4f5bd5); }
.soc-feed-icon--tt { background: linear-gradient(135deg, #25f4ee, #111 50%, #fe2c55); }

.soc-feed-embed {
  flex: 1;
  height: 560px;
  display: flex;
  justify-content: center;
}

.soc-feed-embed iframe,
.soc-feed-embed .tiktok-embed {
  width: 100% !important;
  max-width: 100%;
}

.soc-feed-embed--ig {
  align-items: stretch;
  padding: 0;
}

.soc-ig-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 100%;
  padding: 40px 24px;
  text-align: center;
  color: inherit;
  background:
    radial-gradient(circle at 30% 18%, rgba(214, 41, 118, 0.3), transparent 58%),
    radial-gradient(circle at 80% 92%, rgba(79, 91, 213, 0.28), transparent 58%),
    radial-gradient(circle at 50% 55%, rgba(254, 218, 117, 0.1), transparent 60%);
}

.soc-ig-logo {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #feda75, #d62976 50%, #4f5bd5);
  box-shadow: 0 8px 24px rgba(214, 41, 118, 0.35);
}

.soc-ig-handle {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.soc-ig-text {
  margin: 6px 0 20px;
  max-width: 280px;
  font-size: 0.92rem;
  color: var(--vz-muted);
  line-height: 1.55;
}

.soc-ig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #feda75, #d62976 45%, #962fbf 80%, #4f5bd5);
  transition: filter 0.2s ease;
}

.soc-ig-card:hover .soc-ig-btn {
  filter: brightness(1.08);
}

@media (max-width: 980px) {
  .soc-feeds {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
    gap: 24px;
  }

  .soc-feed-embed {
    height: 520px;
  }
}

/* ——— Responsive ——— */
@media (max-width: 1024px) {
  .vz-topbar {
    flex-wrap: wrap;
    align-items: center;
  }

  .vz-nav-toggle {
    display: inline-flex;
  }

  .vz-menu {
    display: none;
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    gap: 6px;
    padding-top: 8px;
  }

  .vz-topbar.is-open .vz-menu {
    display: flex;
  }

  .vz-menu a {
    width: 100%;
    text-align: center;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .vz-social {
    margin-left: auto;
  }

  .vz-steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .vz-form-grid {
    grid-template-columns: 1fr;
  }

  .vz-form-footer {
    align-items: stretch;
  }

  .vz-submit {
    width: 100%;
  }

  .vz-privacy {
    max-width: none;
    text-align: left;
  }

  .vz-qr-inner {
    flex-direction: column;
    text-align: center;
  }

  .vz-qr-copy p {
    margin-inline: auto;
  }

  .vz-qr-arrow {
    top: -28px;
    right: 8px;
    width: 56px;
    height: 38px;
  }

  .vz-table {
    min-width: 0;
  }

  .vz-table thead {
    display: none;
  }

  .vz-table tbody tr {
    display: block;
    padding: 16px 18px;
    border-bottom: 1px solid var(--vz-line);
  }

  .vz-table tbody tr:last-child {
    border-bottom: 0;
  }

  .vz-table td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 0;
    border: 0;
    text-align: right;
  }

  .vz-table td::before {
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vz-muted);
    text-align: left;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .vz-brand {
    font-size: 0.88rem;
    letter-spacing: 0.16em;
  }

  .vz-hero-kicker {
    font-size: clamp(1.65rem, 9vw, 2.2rem);
  }

  .vz-hero-headline {
    font-size: clamp(1.1rem, 5.5vw, 1.45rem);
  }

  .vz-form-card {
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .vz-submit,
  .vz-step,
  .vz-social a,
  .vz-hero-cta {
    transition: none;
  }

  .vz-hero-badge-dot,
  .vz-hero-cta svg {
    animation: none;
  }
}
