/* =========================================================
   EliteRealMedia — Design System
   Cinematic dark luxury, built around the ER monogram violet.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root{
  /* Color */
  --bg:            #08070d;
  --bg-alt:        #0d0b17;
  --panel:         #14111f;
  --panel-2:       #1a1729;
  --line:          rgba(244,242,251,0.09);
  --line-strong:   rgba(244,242,251,0.16);

  --violet-900:    #1c0e4a;
  --violet-700:    #3c1c95;
  --violet-600:    #4a20b4;   /* logo core */
  --violet-500:    #6229d8;
  --violet-400:    #8752f0;
  --violet-300:    #a98bff;
  --violet-glow:   rgba(139,92,246,0.45);

  --gold:          #c9a961;
  --gold-soft:     #e8d9ae;

  --text-1:        #f5f3fa;
  --text-2:        #b3abc9;
  --text-3:        #766e91;

  --whatsapp:      #25d366;
  --whatsapp-dark: #1da851;

  /* Type */
  --f-display: 'Bricolage Grotesque', 'Inter', sans-serif;
  --f-body:    'Inter', sans-serif;
  --f-mono:    'JetBrains Mono', monospace;

  /* Layout */
  --max: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --ease: cubic-bezier(.16,.84,.32,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
h1,h2,h3,h4,p{ margin: 0; }

::selection{ background: var(--violet-500); color: #fff; }

:focus-visible{
  outline: 2px solid var(--violet-300);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Ambient background ---------- */
.grain{
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-scene{
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.orb{
  position: absolute; border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  will-change: transform;
}
.orb--a{ width: 46vw; height: 46vw; top: -18vw; left: -10vw; background: radial-gradient(circle, var(--violet-600), transparent 70%); }
.orb--b{ width: 38vw; height: 38vw; bottom: -14vw; right: -8vw; background: radial-gradient(circle, var(--violet-400), transparent 70%); opacity: .35; }
.orb--c{ width: 26vw; height: 26vw; top: 32%; right: 18%; background: radial-gradient(circle, var(--gold), transparent 72%); opacity: .12; }

.scanlines{
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px, transparent 1px, transparent 3px);
}

/* ---------- Cinebars (signature load / section reveal) ---------- */
.cinebars{ position: fixed; inset: 0; z-index: 60; pointer-events: none; }
.cinebar{
  position: absolute; left: 0; width: 100%; height: 50vh;
  background: #030209;
  transition: transform 1.15s var(--ease);
}
.cinebar--top{ top: 0; transform: translateY(0); }
.cinebar--bottom{ bottom: 0; transform: translateY(0); }
body.loaded .cinebar--top{ transform: translateY(calc(-100% + 6px)); }
body.loaded .cinebar--bottom{ transform: translateY(calc(100% - 6px)); }

/* ---------- Container ---------- */
.wrap{ max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); position: relative; z-index: 3; }

/* ---------- Timecode / REC chip ---------- */
.timecode{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em;
  color: var(--text-2); text-transform: uppercase;
}
.rec-dot{
  width: 7px; height: 7px; border-radius: 50%; background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255,77,77,.6);
  animation: recpulse 1.6s ease-in-out infinite;
}
@keyframes recpulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(255,77,77,.55); }
  50%{ box-shadow: 0 0 0 6px rgba(255,77,77,0); }
}

/* ---------- Eyebrow ---------- */
.eyebrow{
  font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--violet-300); display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before{ content:''; width: 22px; height: 1px; background: var(--violet-400); display:inline-block; }

/* ---------- Nav ---------- */
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: linear-gradient(to bottom, rgba(8,7,13,.85), rgba(8,7,13,0));
  backdrop-filter: blur(2px);
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  background: rgba(9,8,16,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding-top: 12px; padding-bottom: 12px;
}
.brand{ display: flex; align-items: center; gap: 12px; }
.brand img{ height: 30px; width: auto; }
.brand-name{ font-family: var(--f-display); font-weight: 700; font-size: 17px; letter-spacing: .01em; }
.brand-name span{ color: var(--violet-300); }

.nav-links{ display: flex; align-items: center; gap: 6px; }
.nav-links a{
  position: relative; padding: 9px 16px; font-size: 14.5px; font-weight: 500; color: var(--text-2);
  border-radius: 100px; transition: color .25s, background .25s;
}
.nav-links a:hover{ color: var(--text-1); background: rgba(255,255,255,.05); }
.nav-links a.active{ color: var(--text-1); }
.nav-links a.active::after{
  content:''; position: absolute; left: 16px; right: 16px; bottom: 3px; height: 1px; background: var(--violet-300);
}

.nav-right{ display: flex; align-items: center; gap: 14px; }

.wa-pill{
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #06210f; font-weight: 700; font-size: 13.5px;
  padding: 10px 18px 10px 14px; border-radius: 100px;
  box-shadow: 0 6px 20px -6px rgba(37,211,102,.55);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.wa-pill:hover{ transform: translateY(-2px); box-shadow: 0 10px 26px -6px rgba(37,211,102,.7); }
.wa-pill svg{ width: 17px; height: 17px; flex-shrink: 0; }

.burger{
  display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong);
  align-items: center; justify-content: center; background: rgba(255,255,255,.03); flex-shrink: 0;
}
.burger svg{ width: 18px; height: 18px; }
.mobile-nav{
  position: fixed; inset: 0; z-index: 65; background: rgba(6,5,11,.98); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.mobile-nav.open{ opacity: 1; pointer-events: auto; }
.mobile-nav a{ font-family: var(--f-display); font-size: 30px; font-weight: 700; padding: 14px 0; color: var(--text-2); }
.mobile-nav a.active{ color: var(--violet-300); }
.mobile-nav .btn-wa{ margin-top: 20px; }
.mobile-close{
  position: absolute; top: 20px; right: var(--pad); width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; color: var(--text-1);
}
.mobile-close svg{ width: 17px; height: 17px; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--violet-500), var(--violet-600) 60%, var(--violet-900));
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(98,41,216,.65), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 16px 36px -8px rgba(98,41,216,.8), inset 0 1px 0 rgba(255,255,255,.2); }
.btn-ghost{
  background: rgba(255,255,255,.03); color: var(--text-1); border-color: var(--line-strong);
}
.btn-ghost:hover{ background: rgba(255,255,255,.07); transform: translateY(-3px); border-color: var(--violet-300); }
.btn-wa{
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #052312; box-shadow: 0 10px 26px -8px rgba(37,211,102,.6);
}
.btn-wa:hover{ transform: translateY(-3px); box-shadow: 0 16px 32px -8px rgba(37,211,102,.75); }
.btn-wa svg{ width: 18px; height: 18px; }
.btn-block{ width: 100%; }

/* ---------- Sections generic ---------- */
section{ position: relative; z-index: 3; }
.section{ padding: clamp(64px, 10vw, 128px) 0; }
.section-head{ max-width: 640px; margin-bottom: 56px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.h2{ font-family: var(--f-display); font-size: clamp(30px, 4vw, 46px); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; }
.h2 em{ font-style: normal; color: var(--violet-300); }
.lead{ color: var(--text-2); font-size: 17px; margin-top: 16px; max-width: 54ch; }
.center .lead{ margin-left: auto; margin-right: auto; }

.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity: 1; transform: translateY(0); }
.reveal-delay-1.in{ transition-delay: .08s; }
.reveal-delay-2.in{ transition-delay: .16s; }
.reveal-delay-3.in{ transition-delay: .24s; }
.reveal-delay-4.in{ transition-delay: .32s; }

/* ---------- Hero (home) ---------- */
.hero{
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding-top: 140px; padding-bottom: 80px; position: relative;
}
.hero-grid{ display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero-grid--single{ grid-template-columns: 1fr; max-width: 800px; margin: 0 auto; text-align: center; }
.hero-grid--single .hero-lead{ margin-left: auto; margin-right: auto; }
.hero-grid--single .hero-cta{ justify-content: center; }
.hero-grid--single .hero-stats{ justify-content: center; }
.hero-title{
  font-family: var(--f-display); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(40px, 6vw, 78px); line-height: 1.02;
}
.hero-title .line{ display: block; overflow: hidden; }
.hero-title .line span{ display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease); }
body.loaded .hero-title .line span{ transform: translateY(0); }
.hero-title .line:nth-child(1) span{ transition-delay: .55s; }
.hero-title .line:nth-child(2) span{ transition-delay: .68s; }
.hero-title .line:nth-child(3) span{ transition-delay: .81s; }
.hero-title .grad{
  background: linear-gradient(100deg, var(--violet-300), var(--gold-soft) 60%, var(--violet-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 200% 100%;
  animation: sheen 7s linear infinite;
}
@keyframes sheen{ to{ background-position: -200% 0; } }

.hero-lead{ color: var(--text-2); font-size: 18px; max-width: 46ch; margin-top: 22px; }
.hero-cta{ display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

.hero-stats{ display: flex; gap: 34px; margin-top: 56px; flex-wrap: wrap; }
.stat b{ display: block; font-family: var(--f-mono); font-size: 26px; color: var(--text-1); font-weight: 600; }
.stat span{ font-size: 12.5px; color: var(--text-3); letter-spacing: .04em; text-transform: uppercase; }

/* Hero visual: floating monogram card w/ tilt */
.hero-visual{ position: relative; }
.tilt-card{
  position: relative; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(74,32,180,.35), rgba(20,17,31,.6) 55%, rgba(20,17,31,.85));
  border: 1px solid var(--line-strong);
  padding: 44px;
  transform-style: preserve-3d;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.7);
  overflow: hidden;
}
.tilt-card::before{
  content:''; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background: radial-gradient(500px circle at var(--mx,50%) var(--my,50%), rgba(167,139,255,.25), transparent 45%);
  transition: opacity .3s;
}
.tilt-card .tc-row{
  display: flex; justify-content: space-between; align-items: center; margin-top: 28px;
  transform: translateZ(30px);
}

/* ---------- Viewfinder HUD (hero signature) ---------- */
.viewfinder{
  position: relative; aspect-ratio: 4/5; border-radius: 14px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 30% 10%, rgba(139,92,246,.28), transparent 55%),
    radial-gradient(90% 70% at 80% 90%, rgba(201,169,97,.10), transparent 60%),
    linear-gradient(180deg, #150f28, #0a0714);
  transform: translateZ(30px);
}
.vf-grid{ position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.vf-grid span{ position: absolute; background: rgba(244,242,251,.14); }
.vf-grid .v1{ left: 33.33%; top: 0; width: 1px; height: 100%; }
.vf-grid .v2{ left: 66.66%; top: 0; width: 1px; height: 100%; }
.vf-grid .h1{ top: 33.33%; left: 0; height: 1px; width: 100%; }
.vf-grid .h2{ top: 66.66%; left: 0; height: 1px; width: 100%; }

.vf-corner{ position: absolute; width: 26px; height: 26px; border: 2px solid var(--violet-300); opacity: .85; }
.vf-corner.tl{ top: 16px; left: 16px; border-right: none; border-bottom: none; border-radius: 4px 0 0 0; }
.vf-corner.tr{ top: 16px; right: 16px; border-left: none; border-bottom: none; border-radius: 0 4px 0 0; }
.vf-corner.bl{ bottom: 16px; left: 16px; border-right: none; border-top: none; border-radius: 0 0 0 4px; }
.vf-corner.br{ bottom: 16px; right: 16px; border-left: none; border-top: none; border-radius: 0 0 4px 0; }

.vf-topbar{
  position: absolute; top: 16px; left: 52px; right: 52px; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono); font-size: 11px; color: var(--text-2); letter-spacing: .05em;
}
.vf-topbar .vf-batt{ display: flex; align-items: center; gap: 5px; }
.vf-topbar .vf-batt svg{ width: 14px; height: 14px; }

.vf-reticle{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 74px; height: 74px; border: 1px solid rgba(167,139,255,.55); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.vf-reticle::before, .vf-reticle::after{
  content:''; position: absolute; background: rgba(167,139,255,.55);
}
.vf-reticle::before{ width: 1px; height: 12px; top: -16px; }
.vf-reticle::after{ width: 1px; height: 12px; bottom: -16px; }
.vf-reticle span{ width: 5px; height: 5px; border-radius: 50%; background: var(--violet-300); animation: reticlepulse 2.2s ease-in-out infinite; }
@keyframes reticlepulse{ 0%,100%{ transform: scale(1); opacity: 1; } 50%{ transform: scale(1.6); opacity: .4; } }

.vf-botbar{
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: flex-end;
  background: linear-gradient(to top, rgba(4,3,9,.75), transparent);
}
.vf-specs{ display: flex; gap: 10px; font-family: var(--f-mono); font-size: 10.5px; color: var(--text-2); letter-spacing: .03em; }
.vf-brand{ display: flex; align-items: center; gap: 6px; }
.vf-brand img{ height: 13px; width: auto; opacity: .9; }
.vf-brand span{ font-family: var(--f-mono); font-size: 9.5px; letter-spacing: .1em; color: var(--text-3); }

/* ---------- Marquee ---------- */
.marquee-wrap{
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow: hidden; background: rgba(255,255,255,.015);
}
.marquee{ display: flex; width: max-content; animation: scroll-left 32s linear infinite; }
.marquee:hover{ animation-play-state: paused; }
.marquee span{
  font-family: var(--f-mono); font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-3); padding: 0 28px; white-space: nowrap; display: flex; align-items: center; gap: 28px;
}
.marquee span::after{ content: '◆'; color: var(--violet-500); font-size: 9px; }
@keyframes scroll-left{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ---------- Service overview cards (home) ---------- */
.split-cards{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ov-card{
  position: relative; border-radius: var(--radius-lg); padding: 44px 38px; min-height: 340px;
  background: var(--panel); border: 1px solid var(--line);
  overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .45s var(--ease), border-color .4s;
}
.ov-card::before{
  content:''; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx,30%) var(--my,20%), var(--violet-glow), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.ov-card:hover::before{ opacity: .5; }
.ov-card:hover{ transform: translateY(-6px); border-color: var(--line-strong); }
.ov-tag{ font-family: var(--f-mono); font-size: 12px; color: var(--violet-300); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; position: relative; z-index: 2;}
.ov-card h3{ font-family: var(--f-display); font-size: 30px; font-weight: 700; position: relative; z-index: 2; }
.ov-card p{ color: var(--text-2); margin-top: 12px; max-width: 42ch; position: relative; z-index: 2; }
.ov-arrow{
  position: absolute; top: 38px; right: 38px; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease), background .4s, border-color .4s; z-index: 2;
}
.ov-card:hover .ov-arrow{ transform: rotate(45deg) scale(1.08); background: var(--violet-500); border-color: var(--violet-500); }
.ov-arrow svg{ width: 18px; height: 18px; }

/* ---------- Process ---------- */
.process{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.proc-step{ border-top: 1px solid var(--line-strong); padding-top: 22px; }
.proc-code{ font-family: var(--f-mono); color: var(--violet-300); font-size: 13px; letter-spacing: .08em; }
.proc-step h4{ font-family: var(--f-display); font-size: 21px; margin-top: 14px; font-weight: 700; }
.proc-step p{ color: var(--text-2); margin-top: 10px; font-size: 15px; }

/* ---------- Diensten grid (icons) ---------- */
.services-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.svc-item{ background: var(--panel); padding: 30px 24px; transition: background .3s; }
.svc-item:hover{ background: var(--panel-2); }
.svc-icon{ width: 34px; height: 34px; color: var(--violet-300); margin-bottom: 18px; }
.svc-item h4{ font-size: 15.5px; font-weight: 600; }

/* ---------- Pricing ---------- */
.pricing-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card{
  position: relative;
  background: linear-gradient(165deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px 28px; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s var(--ease), background .4s;
  transform-style: preserve-3d;
}
.price-card:hover{
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.6);
  background: linear-gradient(165deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
}
.price-card.featured{
  border-color: rgba(201,169,97,.45);
  background: linear-gradient(170deg, rgba(98,41,216,.25), rgba(255,255,255,.03) 55%);
  box-shadow: 0 0 0 1px rgba(201,169,97,.16), 0 30px 70px -28px rgba(74,32,180,.5);
  transform: translateY(-6px) scale(1.015);
}
.price-card.featured:hover{
  box-shadow: 0 0 0 1px rgba(201,169,97,.28), 0 34px 76px -24px rgba(74,32,180,.65);
  transform: translateY(-12px) scale(1.015);
}
.price-badge{
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  color: #241a04; font-family: var(--f-mono); font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 15px; border-radius: 100px; box-shadow: 0 8px 18px -6px rgba(201,169,97,.6);
  white-space: nowrap;
}
.price-code{ font-family: var(--f-mono); font-size: 12px; color: var(--text-3); letter-spacing: .1em; }
.price-name{ font-family: var(--f-display); font-size: 22px; font-weight: 700; margin-top: 8px; }
.price-tagline{ color: var(--text-2); font-size: 13.5px; margin-top: 8px; line-height: 1.5; min-height: 40px; }
.price-amount{ display: flex; align-items: baseline; gap: 6px; margin-top: 18px; }
.price-from{ font-family: var(--f-mono); font-size: 11.5px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; align-self: flex-start; margin-top: 6px; }
.price-amount b{ font-family: var(--f-display); font-size: 38px; font-weight: 800; letter-spacing: -.02em; }
.price-amount span{ color: var(--text-3); font-size: 13px; }
.price-list{ margin-top: 22px; margin-bottom: 20px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-list li{ display: flex; gap: 10px; font-size: 14px; color: var(--text-2); align-items: flex-start; line-height: 1.4; }
.price-list svg{ width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--violet-300); }
.price-card.featured .price-list svg{ color: var(--gold); }
.price-ideal{
  font-size: 12.5px; color: var(--text-3); border-top: 1px solid var(--line); padding-top: 14px; margin-bottom: 18px; line-height: 1.5;
}
.price-ideal b{ color: var(--text-2); font-weight: 600; }

/* Custom-work note panel */
.custom-note{
  max-width: 720px; margin: 56px auto 0; text-align: center;
  background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 40px; backdrop-filter: blur(10px);
}
.custom-note h4{ font-family: var(--f-display); font-size: 20px; font-weight: 700; }
.custom-note p{ color: var(--text-2); font-size: 14.5px; margin-top: 10px; line-height: 1.6; }
.custom-note p.fine{ color: var(--text-3); font-size: 13px; margin-top: 12px; }

/* Add-on services list (B2B extras) */
.addon-panel{
  max-width: 720px; margin: 40px auto 0; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 8px 8px;
}
.addon-row{
  display: flex; justify-content: space-between; align-items: center; padding: 15px 22px;
  border-bottom: 1px solid var(--line); font-size: 14.5px;
}
.addon-row:last-child{ border-bottom: none; }
.addon-row span:first-child{ color: var(--text-1); }
.addon-row span:last-child{ font-family: var(--f-mono); color: var(--violet-300); font-weight: 600; white-space: nowrap; margin-left: 20px; }

/* Flow strip (B2B: filmen -> monteren -> content) */
.flow-strip{ display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; margin-top: 8px; }
.flow-step{ display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 0 28px; }
.flow-step .flow-ic{
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(255,255,255,.03);
  display: flex; align-items: center; justify-content: center; color: var(--violet-300);
}
.flow-step .flow-ic svg{ width: 22px; height: 22px; }
.flow-step span{ font-size: 13.5px; color: var(--text-2); font-weight: 500; max-width: 14ch; }
.flow-arrow{ color: var(--text-3); font-size: 20px; opacity: .5; }
@media (max-width: 640px){ .flow-arrow{ transform: rotate(90deg); } }

/* ---------- B2B audience tiles ---------- */
.aud-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.aud-tile{
  position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px 20px; text-align: center; overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s;
}
.aud-tile::before{
  content:''; position: absolute; inset: 0; background: linear-gradient(160deg, var(--violet-glow), transparent 65%);
  opacity: 0; transition: opacity .35s;
}
.aud-tile:hover{ transform: translateY(-5px) scale(1.02); border-color: var(--violet-400); }
.aud-tile:hover::before{ opacity: .35; }
.aud-tile svg{ width: 26px; height: 26px; color: var(--violet-300); margin: 0 auto 12px; position:relative; z-index:2; }
.aud-tile span{ font-size: 14px; font-weight: 600; position: relative; z-index: 2; }

/* ---------- Video showcase (vastgoed) ---------- */
.vh-grid{ display: grid; grid-template-columns: 1fr .72fr; gap: 64px; align-items: center; }
.video-frame{
  position: relative; border-radius: 26px; padding: 14px; margin: 0 auto; max-width: 340px;
  background: linear-gradient(160deg, rgba(74,32,180,.55), rgba(20,17,31,.9));
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px -30px rgba(74,32,180,.55), 0 0 0 1px rgba(255,255,255,.03);
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  transition: transform .5s var(--ease);
}
.video-frame:hover{ transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
.video-frame .screen{
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 9/16; background: #000;
}
.video-frame video{ width: 100%; height: 100%; object-fit: cover; display: block; }
.video-frame .rec-overlay{
  position: absolute; top: 14px; left: 14px; z-index: 4;
  background: rgba(4,3,8,.55); backdrop-filter: blur(4px);
  padding: 6px 10px; border-radius: 100px;
}
.video-frame .brand-overlay{
  position: absolute; bottom: 16px; left: 14px; right: 14px; z-index: 4; display: flex; align-items: center; gap: 8px;
}
.video-frame .brand-overlay img{ height: 16px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.6)); }
.video-frame .brand-overlay span{ font-family: var(--f-mono); font-size: 10.5px; color: rgba(255,255,255,.85); letter-spacing: .08em; }
.mute-btn{
  position: absolute; top: 14px; right: 14px; z-index: 4; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(4,3,8,.55); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; color: #fff; transition: background .25s;
}
.mute-btn:hover{ background: rgba(4,3,8,.8); }
.mute-btn svg{ width: 15px; height: 15px; }

.vh-notch{ position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 74px; height: 20px; background: #030209; border-radius: 0 0 14px 14px; z-index: 5; }

/* ---------- CTA banner ---------- */
.cta-banner{
  position: relative; border-radius: 28px; padding: clamp(48px, 6vw, 84px) clamp(28px, 6vw, 72px);
  background: linear-gradient(150deg, var(--violet-900), var(--bg-alt) 60%);
  border: 1px solid var(--line-strong); overflow: hidden; text-align: center;
}
.cta-banner::before{
  content:''; position: absolute; width: 60%; height: 140%; top: -20%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--violet-glow), transparent 65%); opacity: .5; pointer-events: none;
}
.cta-banner h2{ position: relative; z-index: 2; }
.cta-banner p{ position: relative; z-index: 2; margin-left: auto; margin-right: auto; }
.cta-banner .hero-cta{ justify-content: center; position: relative; z-index: 2; }

/* ---------- Footer ---------- */
footer{ border-top: 1px solid var(--line); padding: 64px 0 34px; position: relative; z-index: 3; }
.footer-grid{ display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.foot-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.foot-brand img{ height: 26px; }
.foot-brand span{ font-family: var(--f-display); font-weight: 700; font-size: 16px; }
.footer-grid p{ color: var(--text-2); font-size: 14.5px; max-width: 34ch; }
.foot-col h5{ font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.foot-col a, .foot-col .fc-line{ display: block; color: var(--text-2); font-size: 14.5px; margin-bottom: 11px; transition: color .25s; }
.foot-col a:hover{ color: var(--violet-300); }
.foot-bottom{ display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 26px; flex-wrap: wrap; gap: 14px; }
.foot-bottom p{ color: var(--text-3); font-size: 13px; }
.loc-pin{ display: inline-flex; align-items: center; gap: 7px; color: var(--text-2); font-size: 13.5px; }
.loc-pin svg{ width: 15px; height: 15px; color: var(--violet-300); flex-shrink: 0; }
.foot-col .fc-line.loc-pin{ display: inline-flex; margin-bottom: 11px; }

/* ---------- Floating WhatsApp FAB ---------- */
.wa-fab{
  position: fixed; right: 22px; bottom: calc(22px + env(safe-area-inset-bottom)); z-index: 70;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.65);
  transition: transform .3s var(--ease);
}
.wa-fab::before{
  content:''; position: absolute; inset: -6px; border-radius: 50%; border: 1.5px solid var(--whatsapp);
  opacity: .6; animation: fabring 2.4s ease-out infinite;
}
@keyframes fabring{ 0%{ transform: scale(.85); opacity: .7; } 100%{ transform: scale(1.5); opacity: 0; } }
.wa-fab svg{ width: 28px; height: 28px; color: #06210f; position: relative; z-index: 2; }
.wa-fab:hover{ transform: scale(1.08); }
.wa-fab .fab-tip{
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--panel-2); border: 1px solid var(--line-strong); color: var(--text-1);
  font-size: 13px; font-weight: 600; padding: 9px 14px; border-radius: 10px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
}
.wa-fab:hover .fab-tip{ opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- Utility ---------- */
.tag-row{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.tag{ font-family: var(--f-mono); font-size: 12px; letter-spacing: .05em; color: var(--text-2); border: 1px solid var(--line-strong); padding: 7px 13px; border-radius: 100px; display: flex; align-items: center; gap: 7px; }
.tag svg{ width: 13px; height: 13px; color: var(--violet-300); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px){
  .hero-grid, .vh-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; max-width: 420px; margin: 0 auto; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .aud-grid{ grid-template-columns: repeat(4, 1fr); }
  .pricing-grid{ grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .split-cards{ grid-template-columns: 1fr; }
  .process{ grid-template-columns: 1fr; gap: 32px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px){
  .nav-links{ display: none; }
  .burger{ display: flex; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .aud-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr; }
  .hero-stats{ gap: 22px; }
  .wa-pill span.wa-full{ display: none; }
  .custom-note{ padding: 28px 22px; }
  .addon-row{ padding: 14px 16px; }
  .flow-step{ padding: 0 14px; }
}
@media (max-width: 420px){
  .custom-note{ padding: 24px 18px; }
  .price-card{ padding: 30px 22px 24px; }
  .cta-banner{ padding: 44px 22px; }
}
