/* ============================================
   Rigy Visuals: luxe Apple-style videograaf site
   ============================================ */

/* Monument Extended: geladen vanuit lokale .otf bestanden in de projectmap */
@font-face {
  font-family: 'Monument Extended';
  src: url('MonumentExtended-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Monument Extended';
  src: url('MonumentExtended-Ultrabold.otf') format('opentype');
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #030712;
  --bg-2: #050d25;
  --ink: #eaf2ff;
  --ink-dim: #9db0cf;
  --blue: #2e6bff;
  --blue-soft: #4b8cff;
  --blue-glow: #3c7dff;
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-strong: rgba(255, 255, 255, 0.18);
  --card: rgba(255, 255, 255, 0.03);
  --card-hover: rgba(255, 255, 255, 0.06);
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1240px;

  --font-display: 'Archivo', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-wordmark: 'Monument Extended', 'Archivo', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; }

/* ===== Intro overlay ===== */
body.intro-active { overflow: hidden; height: 100vh; }
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    transform 1.4s cubic-bezier(.76,0,.24,1),
    filter   1.4s cubic-bezier(.76,0,.24,1),
    opacity  1.2s cubic-bezier(.76,0,.24,1);
  will-change: transform, filter, opacity;
}
.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.76,0,.24,1);
  will-change: transform;
}
.intro-skip {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s, opacity 0.4s;
  z-index: 2;
}
.intro-skip:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.45);
}
.intro-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #ffffff 0%, #4b8cff 25%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 0.35s ease-out;
}

/* Spectacular exit: zoom in + flash + blur out */
.intro-overlay.flashing .intro-flash { opacity: 1; }
.intro-overlay.out {
  transform: scale(1.8);
  filter: blur(40px);
  opacity: 0;
  pointer-events: none;
}
.intro-overlay.out .intro-video { transform: scale(1.25); }
.intro-overlay.out .intro-skip { opacity: 0; }
.intro-overlay.gone { display: none; }

/* Reveal animations when intro is done */
body.intro-active .nav,
body.intro-active .hero-inner > * {
  opacity: 0;
  transform: translateY(20px);
  animation: none !important;
}
body.intro-done .nav {
  animation: navDrop 0.9s cubic-bezier(.2,.7,.2,1) 0.1s both;
}
body.intro-done .hero-logo     { animation: heroReveal 1s cubic-bezier(.2,.7,.2,1) 0.2s both; }
body.intro-done .hero-title    { animation: heroReveal 1s cubic-bezier(.2,.7,.2,1) 0.45s both; }
body.intro-done .hero-sub      { animation: heroReveal 1s cubic-bezier(.2,.7,.2,1) 0.65s both; }
body.intro-done .hero-ctas     { animation: heroReveal 1s cubic-bezier(.2,.7,.2,1) 0.8s both; }
body.intro-done .hero-stats    { animation: heroReveal 1s cubic-bezier(.2,.7,.2,1) 0.95s both; }

@keyframes navDrop {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px) scale(0.96); filter: blur(12px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay, .intro-video { transition: opacity 0.3s linear !important; transform: none !important; }
  .intro-overlay.out { transform: none; filter: none; }
  body.intro-done .nav,
  body.intro-done .hero-inner > * { animation: none; opacity: 1; transform: none; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

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

/* ===== Ambient background ===== */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(46,107,255,0.18), transparent 60%),
    radial-gradient(900px 700px at 90% 10%, rgba(75,140,255,0.12), transparent 60%),
    linear-gradient(180deg, #020616 0%, #030a1d 50%, #02040e 100%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  animation: float 22s ease-in-out infinite;
}
.blob-1 { width: 520px; height: 520px; background: #2e6bff; top: -120px; left: -120px; }
.blob-2 { width: 420px; height: 420px; background: #4b8cff; top: 40%; right: -140px; animation-delay: -8s; }
.blob-3 { width: 380px; height: 380px; background: #1e4fd6; bottom: -160px; left: 30%; animation-delay: -14s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.1); }
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(3, 7, 18, 0.6);
  border-bottom: 1px solid var(--stroke);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(46,107,255,0.3));
}
.nav-wordmark {
  font-family: var(--font-wordmark);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #8fb4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.25s;
}
.nav-logo:hover .nav-wordmark { opacity: 0.85; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-dim);
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  color: var(--ink) !important;
  padding: 8px 16px;
  border: 1px solid var(--stroke-strong);
  border-radius: 999px;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--bg) !important;
  border-color: var(--ink);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-soft) 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(46,107,255,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(46,107,255,0.5), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  border-color: var(--stroke-strong);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 34px; font-size: 16px; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 28px 100px;
  position: relative;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.hero-logo {
  height: 180px;
  width: auto;
  margin: 0 auto 40px;
  filter: drop-shadow(0 12px 50px rgba(46,107,255,0.55));
  animation: fadeUp 1s ease both;
}
@media (max-width: 720px) {
  .hero-logo { height: 130px; }
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 1s 0.1s ease both;
}
.hero-title span {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #8fb4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-stretch: expanded;
}
.hero-title span:nth-child(2) {
  background: linear-gradient(180deg, #6ea0ff 0%, #2e6bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--ink-dim);
  font-size: clamp(15px, 1.5vw, 18px);
  animation: fadeUp 1s 0.2s ease both;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: fadeUp 1s 0.3s ease both;
}

/* ===== Stats ===== */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 22px 40px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1s 0.4s ease both;
}
.stat { text-align: center; min-width: 90px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #8fb4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.stat-num::after { content: '+'; }
.stat-num.no-plus::after { content: ''; }
.stat-label {
  margin-top: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-dim);
}
.stat-divider {
  width: 1px;
  height: 42px;
  background: var(--stroke-strong);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Clients / Trusted by marquee ===== */
.clients {
  padding: 40px 0 60px;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  background: rgba(255,255,255,0.015);
}
.clients-head {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 28px;
}
.clients-sub {
  margin-top: 10px;
  color: var(--ink-dim);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.logo-row {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0 28px;
  flex-shrink: 0;
}
/* Cel schaalt mee met logo-breedte, maar krijgt uniforme hoogte en ademruimte */
.logo-cell {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-cell img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  opacity: 0.78;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s, transform 0.3s;
}
.logo-cell:hover img {
  opacity: 1;
  transform: scale(1.06);
}

/* Lijpe heeft ~20% padding in z'n PNG, licht compenseren.
   Rebalance heeft asymmetrische padding onderin, iets opschalen.
   Andere logos hebben strakke bounding-box en renderen op exact 54px hoog. */
.logo-lijpe img     { transform: scale(1.22); }
.logo-rebalance img { transform: scale(1.2); }
.logo-lijpe:hover img     { transform: scale(1.29); }
.logo-rebalance:hover img { transform: scale(1.27); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px 28px;
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(75,140,255,0.3);
  border-radius: 999px;
  background: rgba(46,107,255,0.08);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #a8c2ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.section-sub {
  max-width: 600px;
  margin: 0 auto;
  color: var(--ink-dim);
  font-size: 16px;
}

/* ===== Grids & cards ===== */
.grid {
  display: grid;
  gap: 24px;
}
.grid-vertical {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.grid-horizontal {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}
/* Aftermovies: 3:4 portrait cards, 3 naast elkaar op desktop */
.grid-aftermovies {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}
/* Eén grote hero-card voor de premium sectie */
.grid-single {
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--stroke);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-color 0.3s, box-shadow 0.4s;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(75,140,255,0.4);
  box-shadow: 0 30px 60px -20px rgba(46,107,255,0.35);
}
.card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #0a1630, #050d25);
}
.card-vertical { aspect-ratio: 9 / 16; }
.card-horizontal { aspect-ratio: 16 / 9; }
.card-three-four { aspect-ratio: 3 / 4; }
/* Feature-card in premium sectie: iets vettere shadow en grotere caption */
.card-feature {
  box-shadow: 0 50px 120px -40px rgba(46,107,255,0.45);
}
.card-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 60px 140px -30px rgba(46,107,255,0.55);
}
.card-feature figcaption {
  font-size: 16px;
  padding: 22px 26px;
}

.card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.75) 100%);
  letter-spacing: 0.02em;
}

/* Placeholder visual wanneer er nog geen video is */
.card video:not([src])::-webkit-media-controls,
.card video::-webkit-media-controls { display: none !important; }

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(75,140,255,0.25), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(46,107,255,0.25), transparent 60%);
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.card:hover::before { opacity: 0.9; }
.card video { position: relative; z-index: 1; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.about-inner { text-align: left; }
.about-text {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-dim);
  line-height: 1.7;
  margin: 24px 0;
}
.about-text:last-of-type { margin-bottom: 32px; }
.about-text strong { color: var(--ink); font-weight: 600; }

/* Pillars: professioneel / impactvol / betrouwbaar */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 32px 0 36px;
}
.pillar {
  padding: 20px 20px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(75,140,255,0.06), rgba(46,107,255,0.02));
  border: 1px solid var(--stroke);
  transition: border-color 0.3s, transform 0.3s;
}
.pillar:hover {
  border-color: rgba(75,140,255,0.4);
  transform: translateY(-3px);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 10px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pillar-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-dim);
}

.about-photos {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
}
.about-photo {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--stroke-strong);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(75,140,255,0.15);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-1 {
  width: 66%;
  aspect-ratio: 4 / 5;
  top: 0;
  left: 0;
  z-index: 2;
  transform: rotate(-2deg);
}
.about-photo-2 {
  width: 58%;
  aspect-ratio: 3 / 4;
  bottom: 0;
  right: 0;
  z-index: 1;
  transform: rotate(3deg);
}
.about-photo-2 img {
  transform: scale(1.15);
  transform-origin: center;
}
.about-photos:hover .about-photo-1 { transform: rotate(-3deg) translate(-6px, -6px); }
.about-photos:hover .about-photo-2 { transform: rotate(4deg) translate(6px, 6px); }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photos { margin: 0 auto; max-width: 420px; width: 100%; }
  .about-inner { text-align: center; }
}

/* ===== Contact ===== */
.section-contact {
  text-align: center;
  padding: 120px 28px 140px;
  position: relative;
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(46,107,255,0.12), rgba(75,140,255,0.04));
  border: 1px solid var(--stroke-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.contact-sub {
  color: var(--ink-dim);
  margin: 20px 0 36px;
  font-size: 16px;
}
.contact-meta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--ink-dim);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== Footer ===== */
.footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 28px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--stroke);
  color: var(--ink-dim);
  font-size: 13px;
  text-align: center;
}
.footer img { height: 40px; opacity: 0.9; }

/* ===== WhatsApp floating button ===== */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  background-image: linear-gradient(135deg, #25D366 0%, #20BD5A 100%);
  color: #fff;
  border-radius: 50%;
  box-shadow:
    0 10px 30px rgba(37,211,102,0.35),
    0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s;
}
.wa-float::before {
  /* subtiele binnenste highlight voor premium finish */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.25), transparent 55%);
  pointer-events: none;
}
.wa-float .wa-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 16px 40px rgba(37,211,102,0.5),
    0 6px 18px rgba(0,0,0,0.3);
}
.wa-float:hover .wa-icon {
  transform: rotate(-8deg) scale(1.08);
}
.wa-float:active { transform: translateY(-2px) scale(1.02); }

/* Subtle pulse ring om aandacht te trekken */
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.55);
  animation: waPulse 2.4s cubic-bezier(.2,.7,.2,1) infinite;
  z-index: 1;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.7); opacity: 0;    }
  100% { transform: scale(1.7); opacity: 0;    }
}

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding-top: 120px; }
  .hero-logo { height: 130px; }
  .stat-divider { display: none; }
  .hero-stats { gap: 22px; padding: 20px 24px; }
  .wa-float { width: 56px; height: 56px; right: 18px; bottom: 18px; }
  .wa-float .wa-icon { width: 26px; height: 26px; }
  .contact-inner { padding: 40px 24px; }
  .section { padding: 70px 20px; }
}
