/* ═══════════════════════════════════════════════════════════
   MIJNVAKMANPRO — LANDING PAGE v2
═══════════════════════════════════════════════════════════ */

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

/* Breek uit Astra/Brizy container — volledige breedte */
.vp-landing {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: #0f172a;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.vp-container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* Neutraliseer Astra thema padding op de pagina */
body:has(.vp-landing) .entry-content,
body:has(.vp-landing) .site-main,
body:has(.vp-landing) #primary,
body:has(.vp-landing) .ast-container,
body:has(.vp-landing) .content-area {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}
body:has(.vp-landing) .ast-separate-container .entry-content {
  padding: 0 !important;
}

/* Nav zakt mee met WordPress admin bar */
.admin-bar .vp-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .vp-nav { top: 46px; }
}

/* ── NAV ── */
.vp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,23,42,0.07);
  transition: box-shadow 0.2s;
}
.vp-nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 28px;
  height: 66px; display: flex; align-items: center; justify-content: space-between;
}
.vp-nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.vp-nav-logo-icon {
  width: 36px; height: 36px; background: #2872fa; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.vp-nav-logo span { font-size: 16px; font-weight: 700; color: #0f172a; letter-spacing: -0.3px; }
.vp-nav-right { display: flex; align-items: center; gap: 8px; }
.vp-nav-link {
  padding: 8px 14px; font-size: 14px; font-weight: 500; color: #475569;
  text-decoration: none; border-radius: 8px; transition: background 0.15s, color 0.15s;
}
.vp-nav-link:hover { background: #f1f5f9; color: #0f172a; }
.vp-nav-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; background: #0f172a; color: #fff;
  border-radius: 10px; font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background 0.15s, transform 0.12s;
}
.vp-nav-btn:hover { background: #1e293b; transform: translateY(-1px); color: #fff; }

/* ── HERO ── */
.vp-hero {
  min-height: calc(100vh - 66px);
  padding: 100px 0 80px;
  display: flex;
  align-items: center;
  position: relative; overflow: hidden;
  background: #fafbff;
}
.vp-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.vp-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.55;
}
.vp-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #bfdbfe, #dbeafe 60%, transparent);
  top: -200px; right: -150px;
}
.vp-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #e0e7ff, #c7d2fe 60%, transparent);
  bottom: -150px; left: -100px;
}
.vp-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #bae6fd, transparent);
  top: 40%; left: 30%;
  opacity: 0.3;
}
.vp-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(40,114,250,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40,114,250,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.vp-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}

/* Pill badge */
.vp-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 10px;
  background: #fff; border: 1px solid #bfdbfe;
  border-radius: 100px; font-size: 13px; font-weight: 500; color: #1d4ed8;
  box-shadow: 0 2px 8px rgba(40,114,250,0.08);
  margin-bottom: 24px;
}
.vp-pill-dot {
  width: 8px; height: 8px; background: #2872fa; border-radius: 50%;
  animation: vp-blink 2s ease-in-out infinite;
}
@keyframes vp-blink {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(1.5); }
}

.vp-h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -2px; color: #0f172a;
  margin-bottom: 20px;
}
.vp-shine {
  background: linear-gradient(120deg, #2872fa 0%, #38bdf8 50%, #2872fa 100%);
  background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: vp-shimmer 4s linear infinite;
}
@keyframes vp-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.vp-hero-p {
  font-size: 17px; color: #475569; line-height: 1.7;
  max-width: 440px; margin-bottom: 36px;
}

.vp-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.vp-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; background: #2872fa; color: #fff;
  border-radius: 12px; font-size: 15px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 20px rgba(40,114,250,0.35);
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
}
.vp-btn-primary:hover {
  background: #1559ed; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(40,114,250,0.4); color: #fff;
}
.vp-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; color: #475569; font-size: 15px; font-weight: 600;
  text-decoration: none; border-radius: 12px; border: 1.5px solid #e2e8f0;
  background: #fff; transition: border-color 0.15s, color 0.15s, transform 0.12s;
}
.vp-btn-ghost:hover { border-color: #2872fa; color: #2872fa; transform: translateY(-2px); }

.vp-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.vp-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: #64748b; font-weight: 500;
}

/* ── APP PREVIEW ── */
.vp-hero-preview { position: relative; }
.vp-preview-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at 50% 50%, rgba(40,114,250,0.15), transparent 70%);
  pointer-events: none;
}
.vp-app-window {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(15,23,42,0.16), 0 2px 8px rgba(15,23,42,0.08);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.06);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.vp-app-window:hover { transform: perspective(1000px) rotateY(-1deg) rotateX(0deg); }

.vp-app-bar {
  background: #f8fafc; border-bottom: 1px solid #f1f5f9;
  padding: 12px 16px; display: flex; align-items: center; gap: 8px;
}
.vp-app-dots { display: flex; gap: 5px; }
.vp-app-dots span { width: 10px; height: 10px; border-radius: 50%; }
.d-r { background: #ef4444; }
.d-y { background: #f59e0b; }
.d-g { background: #22c55e; }
.vp-app-url { font-size: 11px; color: #94a3b8; font-family: monospace; margin-left: 8px; }

.vp-app-body { padding: 20px; }
.vp-app-topbar {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid #f1f5f9;
}
.vp-app-pagetitle { font-size: 15px; font-weight: 700; color: #0f172a; }
.vp-app-pagesub { font-size: 11px; color: #94a3b8; margin-top: 3px; }
.vp-app-badge {
  background: #eff6ff; color: #2872fa;
  padding: 6px 14px; border-radius: 100px;
  font-size: 14px; font-weight: 800;
}

.vp-app-table { margin-bottom: 14px; }
.vp-app-thead {
  display: grid; grid-template-columns: 1fr repeat(5,38px);
  gap: 4px; padding: 6px 4px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.6px; color: #94a3b8;
}
.vp-app-trow {
  display: grid; grid-template-columns: 1fr repeat(5,38px);
  gap: 4px; padding: 6px 4px; align-items: center;
  border-bottom: 1px solid #f8fafc;
}
.vp-app-loc { font-size: 12px; font-weight: 600; color: #334155; }
.vp-cell {
  text-align: center; font-size: 12px; font-weight: 700;
  padding: 5px 0; border-radius: 6px; color: #94a3b8; background: #f8fafc;
  min-height: 24px;
}
.vp-filled { background: #dbeafe; color: #1d4ed8; }

.vp-app-totaalrow {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 4px 14px; font-size: 13px; font-weight: 600; color: #334155;
}
.vp-app-totaalnr { font-size: 17px; font-weight: 900; color: #2872fa; }

.vp-app-actions { display: flex; gap: 8px; }
.vp-app-btn-send, .vp-app-btn-dl {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 13px; border-radius: 8px;
  font-size: 11px; font-weight: 700;
}
.vp-app-btn-send { background: #dcfce7; color: #15803d; }
.vp-app-btn-dl   { background: #dbeafe; color: #1d4ed8; }

/* Floating badges */
.vp-float {
  position: absolute;
  display: flex; align-items: center; gap: 7px;
  padding: 10px 15px;
  background: #fff; border-radius: 100px;
  font-size: 12px; font-weight: 700; color: #0f172a;
  box-shadow: 0 8px 30px rgba(15,23,42,0.12);
  border: 1px solid rgba(15,23,42,0.05);
  white-space: nowrap;
}
.vp-float-1 { bottom: 40px; left: -30px; animation: vp-float 3s ease-in-out infinite; }
.vp-float-2 { top: 30px; right: -24px; animation: vp-float 3.5s ease-in-out 0.5s infinite; }
@keyframes vp-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── STATS BAR ── */
.vp-stats-bar {
  background: #0f172a; padding: 32px 0;
}
.vp-stats-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.vp-stat-item { text-align: center; padding: 0 48px; }
.vp-stat-num { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.vp-stat-txt { font-size: 13px; color: #94a3b8; margin-top: 4px; font-weight: 500; }
.vp-stat-sep { width: 1px; height: 48px; background: #1e293b; }

/* ── FEATURES ── */
.vp-features { padding: 110px 0; background: #fff; }
.vp-section-eyebrow {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: #2872fa; text-align: center; margin-bottom: 14px;
}
.vp-h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  letter-spacing: -1px; line-height: 1.15; text-align: center;
  color: #0f172a; margin-bottom: 64px;
}
.vp-h2-muted { color: #94a3b8; }

.vp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.vp-feat {
  padding: 30px; background: #f8fafc;
  border-radius: 20px; border: 1px solid #f1f5f9;
  transition: transform 0.2s, box-shadow 0.2s;
}
.vp-feat:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,23,42,0.09); }
.vp-feat-big {
  grid-column: span 1;
}
/* Eerste grote kaart: links van 2 kleine */
.vp-feat:nth-child(1) { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; }
/* Laatste grote kaart: donker */
.vp-feat:nth-child(6) { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; }

.vp-feat-dark {
  background: linear-gradient(145deg, #1e3a8a, #2872fa);
  border-color: transparent;
}
.vp-feat-dark h3,
.vp-feat-dark h3 * { color: #fff !important; }
.vp-feat-dark p,
.vp-feat-dark p * { color: #fff !important; }

.vp-feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.vp-feat h3 { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.vp-feat p  { font-size: 14px; color: #64748b; line-height: 1.6; }
.vp-feat-tag {
  display: inline-block; margin-top: 20px;
  padding: 5px 12px; background: #eff6ff; color: #2872fa;
  border-radius: 100px; font-size: 11px; font-weight: 700;
}
.vp-feat-tag-light {
  background: rgba(255,255,255,0.25); color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ── HOE WERKT HET ── */
.vp-how { padding: 110px 0; background: #fafbff; }
.vp-how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 20px; }
.vp-how-step { display: flex; flex-direction: column; align-items: flex-start; }
.vp-how-num {
  display: flex; align-items: center; margin-bottom: 24px; width: 100%;
}
.vp-how-num span {
  width: 48px; height: 48px; background: #0f172a; color: #fff;
  border-radius: 14px; font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vp-how-line {
  flex: 1; height: 2px; margin-left: 16px;
  background: linear-gradient(90deg, #e2e8f0 0%, transparent 100%);
}
.vp-how-content { padding: 28px; background: #fff; border-radius: 20px; border: 1px solid #f1f5f9; width: 100%; }
.vp-how-icon {
  width: 44px; height: 44px; background: #eff6ff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.vp-how-content h3 { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.vp-how-content p  { font-size: 14px; color: #64748b; line-height: 1.65; }

/* ── CTA ── */
.vp-cta { padding: 110px 0; background: #fff; }
.vp-cta-inner {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #2872fa 100%);
  border-radius: 28px; padding: 80px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.vp-cta-bg-orb {
  position: absolute; width: 500px; height: 500px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
  top: -200px; right: -150px; pointer-events: none;
}
.vp-cta-orb-2 { top: auto; right: auto; bottom: -200px; left: -150px; }
.vp-cta-icon-wrap {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.12); border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative; z-index: 1;
}
.vp-cta-h2 {
  font-size: clamp(26px, 4vw, 42px); font-weight: 900; color: #fff;
  letter-spacing: -0.8px; margin-bottom: 14px; position: relative; z-index: 1;
}
.vp-cta-p {
  font-size: 18px; color: rgba(255,255,255,0.7);
  margin-bottom: 40px; position: relative; z-index: 1;
}
.vp-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: #fff; color: #1e3a8a;
  border-radius: 14px; font-size: 16px; font-weight: 800; text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative; z-index: 1;
}
.vp-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); color: #1e3a8a; }
.vp-cta-contact {
  margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.45);
  position: relative; z-index: 1;
}
.vp-cta-contact a { color: rgba(255,255,255,0.65); text-underline-offset: 3px; }

/* ── FOOTER ── */
.vp-footer { background: #060d19; padding: 28px 0; }
.vp-footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.vp-footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: #fff;
}
.vp-footer-mid { font-size: 13px; color: #94a3b8; }
.vp-footer-right a { font-size: 13px; color: #fff; text-decoration: none; }
.vp-footer-right a:hover { color: #60a5fa; }
.vp-footer-right .vp-email a { font-size: 13px; color: #fff; text-decoration: none; }
.vp-footer-right .vp-email a:hover { color: #60a5fa; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .vp-hero-inner { grid-template-columns: 1fr; }
  .vp-hero-text { text-align: center; }
  .vp-hero-text .vp-pill { margin: 0 auto 24px; }
  .vp-hero-p { margin: 0 auto 36px; }
  .vp-hero-btns { justify-content: center; }
  .vp-trust { justify-content: center; }
  .vp-hero-preview { display: none; }
  .vp-features-grid { grid-template-columns: 1fr 1fr; }
  .vp-feat:nth-child(1), .vp-feat:nth-child(6) { grid-row: auto; }
  .vp-how-grid { grid-template-columns: 1fr; }
  .vp-how-line { display: none; }
  .vp-stats-inner { gap: 20px; }
  .vp-stat-item { padding: 0 24px; }
}
@media (max-width: 600px) {
  .vp-features-grid { grid-template-columns: 1fr; }
  .vp-feat:nth-child(1), .vp-feat:nth-child(6) { grid-row: auto; display: block; }
  .vp-cta-inner { padding: 48px 24px; }
  .vp-footer-inner { flex-direction: column; text-align: center; }
  .vp-nav-link { display: none; }
  .vp-stats-inner { flex-direction: column; gap: 28px; }
  .vp-stat-sep { width: 60px; height: 1px; }
}
