/* ================================================================
   HINS — style.css
   Industrieel, strak, premium dark.
   ================================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:      #07080e;
  --bg1:     #0b0d16;
  --bg2:     #10121e;
  --panel:       rgba(255,255,255,.050);
  --panel-hover: rgba(255,255,255,.078);
  --stroke:      rgba(255,255,255,.10);
  --stroke2:     rgba(255,255,255,.16);
  --text:    rgba(255,255,255,.93);
  --muted:   rgba(255,255,255,.60);
  --muted2:  rgba(255,255,255,.38);
  --blue:    #2F7EFF;
  --blue2:   #1252CC;
  --orange:  #FF6B2B;
  --orange2: #CC4800;
  --green:   #1EC868;
  --gold:    #C8A040;
  --accent:  #FF6B2B;
  --r:  16px;
  --r2: 24px;
  --r3: 32px;
  --shadow:    0 20px 50px rgba(0,0,0,.55);
  --shadow-sm: 0 8px 24px rgba(0,0,0,.40);
  --max:    1160px;
  --nav-h:  70px;
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NOISE OVERLAY ──────────────────────────────────────────────── */
.noise {
  pointer-events: none;
  position: fixed; inset: -40%;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  transform: rotate(6deg);
  mix-blend-mode: overlay;
  z-index: 9999;
}

/* ── LAYOUT HELPERS ─────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── NAVIGATIE ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 14px; left: 0; right: 0;
  z-index: 200;
  pointer-events: none;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 14px;
  display: flex; align-items: center; gap: 12px;
  height: 54px;
  background: rgba(7,8,14,.62);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  pointer-events: all;
  opacity: 0;
  transform: translateY(-8px);
  transition: background .3s, opacity .4s ease, transform .4s ease;
}
.nav.is-scrolled .nav__inner {
  background: rgba(7,8,14,.82);
  opacity: 1;
  transform: translateY(0);
}

.nav__logo {
  width: 92px; height: auto;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}
.nav__brand { display: flex; align-items: center; gap: 10px; min-width: 200px; }
.nav__brand-text strong { display: block; font-size: 13px; font-weight: 800; letter-spacing: .06em; }
.nav__brand-text em     { font-style: normal; font-size: 11px; color: var(--muted2); }

.nav__links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav__link {
  padding: 7px 11px; border-radius: 999px;
  font-size: 13px; color: var(--muted);
  border: 1px solid transparent;
  transition: color .2s, border-color .2s, background .2s;
}
.nav__link:hover, .nav__link.is-active {
  color: var(--text); border-color: var(--stroke2); background: var(--panel);
}
.nav__cta { margin-left: auto; white-space: nowrap; }

/* Hamburger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border: none; background: none; cursor: pointer; margin-left: auto;
}
.nav__burger span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px; transition: .25s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg);  }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  max-width: var(--max); margin: 8px auto 0; padding: 10px 14px;
  background: rgba(7,8,14,.92);
  border: 1px solid var(--stroke); border-radius: 20px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  pointer-events: all;
}
.nav__mobile.is-open { display: flex; flex-direction: column; gap: 2px; }
.nav__mobile a {
  padding: 12px 14px; border-radius: 12px;
  font-size: 16px; color: var(--muted);
  transition: background .15s, color .15s;
}
.nav__mobile a:hover { background: var(--panel); color: var(--text); }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .14s ease, background .2s, border-color .2s, box-shadow .2s;
  user-select: none; white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: scale(.97); opacity: .88; }

.btn--primary {
  background: linear-gradient(145deg, var(--orange), var(--orange2));
  color: #fff;
  box-shadow: 0 4px 18px rgba(255,107,43,.38);
}
.btn--primary:hover { box-shadow: 0 6px 26px rgba(255,107,43,.52); }

.btn--ghost {
  background: var(--panel); border-color: var(--stroke); color: var(--text);
}
.btn--ghost:hover { background: var(--panel-hover); border-color: var(--stroke2); }

.btn--outline {
  background: transparent; border-color: var(--stroke2); color: var(--text);
}
.btn--outline:hover { border-color: rgba(255,255,255,.35); background: var(--panel); }

.btn__live {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(30,200,104,.22);
  animation: pulse-live 1.8s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse-live {
  0%,100% { box-shadow: 0 0 0 3px rgba(30,200,104,.25); }
  50%      { box-shadow: 0 0 0 7px rgba(30,200,104,.08); }
}

/* ── KICKER ─────────────────────────────────────────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 13px; border-radius: 999px;
  border: 1px solid var(--stroke2); background: var(--panel);
  font-size: 12px; font-weight: 600; letter-spacing: .07em; color: var(--muted);
  width: fit-content; margin-bottom: 16px;
}
.kicker__pip {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(255,107,43,.18); flex-shrink: 0;
}
.kicker__pip--blue   { background: var(--blue);   box-shadow: 0 0 0 4px rgba(47,126,255,.18); }
.kicker__pip--orange { background: var(--orange);  box-shadow: 0 0 0 4px rgba(255,107,43,.18); }
.kicker__pip--green  { background: var(--green);   box-shadow: 0 0 0 4px rgba(30,200,104,.18); }

.tag {
  display: inline-block; padding: 7px 12px; border-radius: 999px;
  border: 1px solid var(--stroke); background: var(--panel);
  font-size: 12px; color: var(--muted2);
}

/* ── SECTIONS ───────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section--alt { background: var(--bg1); }
.section__head { margin-bottom: 48px; max-width: 680px; }
.section__head h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800; line-height: 1.12; letter-spacing: -.02em; margin-bottom: 14px;
}
.section__lead { color: var(--muted); font-size: clamp(15px,1.4vw,17px); line-height: 1.65; }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 80px 0 80px;
  background:
    radial-gradient(900px 600px at 15% 20%,  rgba(47,126,255,.13), transparent 55%),
    radial-gradient(800px 500px at 88% 15%,  rgba(30,200,104,.11), transparent 55%),
    radial-gradient(700px 500px at 70% 90%,  rgba(255,107,43,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg1));
}
.hero__inner {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 32px;
}
.hero__logo-top {
  max-width: 460px; width: 100%;
}
.hero__logo-top .hero__logo-img {
  width: 100%; border-radius: var(--r2);
  box-shadow: var(--shadow);
}
.hero__h1 {
  font-size: clamp(30px,4.4vw,58px);
  font-weight: 900; line-height: 1.06; letter-spacing: -.025em; margin-bottom: 20px;
}
.hero__accent { color: var(--orange); }
.hero__lead {
  color: var(--muted); font-size: clamp(16px,1.5vw,19px);
  line-height: 1.65; max-width: 56ch; margin-bottom: 28px;
  margin-left: auto; margin-right: auto;
}
.hero__ctas  { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; justify-content: center; }
.hero__tags  { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }

.hero__logo-card {
  background: var(--panel); border: 1px solid var(--stroke2);
  border-radius: var(--r2); padding: 20px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero__logo-glow {
  position: absolute; inset: -30%;
  background:
    radial-gradient(400px 300px at 40% 40%, rgba(255,107,43,.16), transparent 55%),
    radial-gradient(400px 300px at 65% 70%, rgba(47,126,255,.14), transparent 55%);
  filter: blur(16px); pointer-events: none;
}
.hero__logo-img {
  position: relative; width: 100%; border-radius: var(--r);
}

.scroll-hint {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px; color: var(--muted2); font-size: 12px;
}
.scroll-hint__mouse {
  width: 18px; height: 28px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.28); position: relative;
}
.scroll-hint__wheel {
  width: 4px; height: 6px; border-radius: 999px;
  background: rgba(255,255,255,.55);
  position: absolute; left: 50%; top: 6px; transform: translateX(-50%);
  animation: wheel-scroll 1.4s ease-in-out infinite;
}
@keyframes wheel-scroll {
  0%   { transform: translate(-50%,0);   opacity: .22; }
  50%  { transform: translate(-50%,9px); opacity: .88; }
  100% { transform: translate(-50%,0);   opacity: .22; }
}

/* ── CARDS ──────────────────────────────────────────────────────── */
.card-grid    { display: grid; gap: 16px; }
.card-grid--4 { grid-template-columns: repeat(4,1fr); }
.card-grid--3 { grid-template-columns: repeat(3,1fr); }

.card {
  background: var(--panel); border: 1px solid var(--stroke);
  border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm);
  transition: border-color .2s, transform .2s, background .2s;
}
.card:hover { border-color: var(--stroke2); background: var(--panel-hover); transform: translateY(-2px); }
.card__icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card__icon--blue   { background: rgba(47,126,255,.14); color: var(--blue); }
.card__icon--orange { background: rgba(255,107,43,.14); color: var(--orange); }
.card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.card p  { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── SEAL BADGES ────────────────────────────────────────────────── */
.seal-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.seal-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--stroke2); background: var(--panel);
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.seal-badge__icon { font-size: 16px; }

/* ── SCENE ──────────────────────────────────────────────────────── */
.scene-wrap { background: var(--bg2); overflow: hidden; }
.scene-stage { max-width: var(--max); margin: 0 auto; padding: 40px 24px 24px; }
.scene-header { margin-bottom: 20px; }
.scene-title {
  font-size: clamp(15px,2vw,22px);
  font-weight: 700; letter-spacing: -.01em; margin-bottom: 6px;
}
.scene-sub { color: var(--muted2); font-size: 13px; }

.scene-canvas {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--stroke); background: rgba(0,0,0,.25);
}
.scene-canvas svg { display: block; width: 100%; height: auto; }

.scene-steps { display: flex; gap: 8px; flex-wrap: wrap; padding: 16px 0 8px; }
.scene-step {
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--stroke);
  font-size: 12px; font-weight: 600; color: var(--muted2);
  transition: border-color .2s, color .2s, background .2s;
}
.scene-step.is-active {
  border-color: var(--accent); color: var(--orange);
  background: rgba(255,107,43,.10);
}

/* ── SECTOREN ───────────────────────────────────────────────────── */
.sectors-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.sector-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--panel); border: 1px solid var(--stroke);
  border-radius: var(--r); padding: 22px;
  transition: border-color .2s, background .2s, transform .2s;
}
.sector-card:hover { border-color: var(--stroke2); background: var(--panel-hover); transform: translateY(-2px); }
.sector-card__icon { font-size: 28px; flex-shrink: 0; }
.sector-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.sector-card p  { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── WERKWIJZE ──────────────────────────────────────────────────── */
.proc-steps {
  display: flex; flex-direction: column;
  border: 1px solid var(--stroke); border-radius: var(--r2); overflow: hidden;
}
.proc-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px; border-bottom: 1px solid var(--stroke);
  transition: background .2s;
}
.proc-step:last-child { border-bottom: none; }
.proc-step:hover { background: var(--panel); }
.proc-step__num {
  font-size: 28px; font-weight: 900; letter-spacing: -.02em;
  color: var(--accent); opacity: .55;
  min-width: 52px; flex-shrink: 0; line-height: 1.2;
}
.proc-step__body h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.proc-step__body p  { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ── TRUST ──────────────────────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.trust-card {
  background: var(--panel); border: 1px solid var(--stroke);
  border-radius: var(--r); padding: 24px;
  transition: border-color .2s, background .2s, transform .2s;
}
.trust-card:hover { border-color: var(--stroke2); background: var(--panel-hover); transform: translateY(-2px); }
.trust-card__icon { font-size: 28px; margin-bottom: 14px; }
.trust-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.trust-card p  { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── CONTACT ────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--panel); border: 1px solid var(--stroke);
  border-radius: var(--r); padding: 18px 20px;
  transition: border-color .2s, background .2s, transform .2s;
}
.contact-card:hover         { border-color: var(--stroke2); background: var(--panel-hover); transform: translateX(4px); }
.contact-card--green:hover  { border-color: rgba(30,200,104,.40); }
.contact-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--panel); color: var(--orange); flex-shrink: 0;
}
.contact-card__icon--green  { color: var(--green); }
.contact-card__body         { flex: 1; }
.contact-card__body strong  { display: block; font-size: 15px; font-weight: 700; }
.contact-card__body span    { font-size: 13px; color: var(--muted); }
.contact-card__arrow        { color: var(--muted2); font-size: 18px; transition: transform .2s; }
.contact-card:hover .contact-card__arrow { transform: translateX(4px); color: var(--text); }

.contact-info {
  background: var(--panel); border: 1px solid var(--stroke);
  border-radius: var(--r); padding: 28px;
}
.contact-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.contact-info p  { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.contact-tags    { display: flex; flex-direction: column; gap: 8px; }
.info-tag {
  padding: 10px 14px; border-radius: 10px;
  background: var(--bg2); border: 1px solid var(--stroke);
  font-size: 13px; color: var(--muted);
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--stroke); padding: 40px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__logo  { width: 200px; height: auto; border-radius: 10px; }
.footer__brand strong { display: block; font-size: 15px; font-weight: 800; letter-spacing: .06em; }
.footer__brand em     { font-style: normal; font-size: 12px; color: var(--muted2); }
.footer__meta  { display: flex; gap: 20px; flex-wrap: wrap; font-size: 12px; color: var(--muted2); }

/* ── REVEAL ANIMATION ───────────────────────────────────────────── */
/* Start: verborgen. JS voegt .is-visible toe via IntersectionObserver */
.reveal { opacity: 0; transform: translateY(22px); will-change: transform, opacity; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .card-grid--4 { grid-template-columns: repeat(2,1fr); }
  .trust-grid   { grid-template-columns: repeat(2,1fr); }
  .hero__inner  { grid-template-columns: 1fr; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .nav__links   { display: none; }
  .nav__cta     { display: none; }
  .nav__burger  { display: flex; }
}
@media (max-width: 720px) {
  .section          { padding: 64px 0; }
  .section__head    { margin-bottom: 32px; }
  .section__head h2 { font-size: clamp(20px, 5.5vw, 30px); }
  .section__lead    { font-size: 15px; }
  .card-grid--3     { grid-template-columns: 1fr; }
  .card-grid--4     { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid     { grid-template-columns: 1fr; }
  .trust-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-grid     { grid-template-columns: 1fr; }
  .proc-step        { padding: 18px 16px; gap: 16px; }
  .proc-step__num   { font-size: 22px; min-width: 38px; }
  .scene-title      { font-size: clamp(12px, 2.8vw, 18px); }
  .hero__h1         { font-size: clamp(28px, 7vw, 48px); }
  .hero__lead       { font-size: 16px; }
  .hero__logo-card  { max-width: 480px; margin: 0 auto; }
  .nav__logo        { width: 76px; }
  .footer__logo     { width: 100px; }
  .footer__inner    { flex-direction: column; align-items: flex-start; gap: 16px; }
  .seal-row         { gap: 8px; }
  .seal-badge       { font-size: 12px; padding: 8px 12px; }
}

/* ── PHONE: max-width 480px ─────────────────────────────────────── */
@media (max-width: 480px) {
  .wrap            { padding: 0 16px; }
  .section         { padding: 52px 0; }
  .section__head   { margin-bottom: 24px; }

  /* Hero */
  .hero            { padding: calc(var(--nav-h) + 32px) 0 52px; }
  .hero__h1        { font-size: 26px; letter-spacing: -.02em; margin-bottom: 16px; }
  .hero__lead      { font-size: 15px; margin-bottom: 22px; }
  .hero__ctas      { gap: 8px; flex-direction: column; }
  .hero__ctas .btn { min-height: 50px; padding: 13px 22px; font-size: 15px; width: 100%; justify-content: center; }
  .hero__tags      { gap: 6px; }

  /* Kaarten */
  .card-grid--4 { grid-template-columns: 1fr; }
  .trust-grid   { grid-template-columns: 1fr; }
  .card         { padding: 18px; }
  .card h3      { font-size: 15px; }
  .card p       { font-size: 14px; }

  /* Sectoren */
  .sector-card        { padding: 16px; gap: 12px; }
  .sector-card__icon  { font-size: 24px; }
  .sector-card h3     { font-size: 15px; }

  /* Werkwijze */
  .proc-step      { padding: 16px 14px; gap: 12px; }
  .proc-step__num { font-size: 18px; min-width: 30px; }
  .proc-step__body h3 { font-size: 15px; }

  /* Trust */
  .trust-card { padding: 18px; }

  /* Contact */
  .contact-card  { padding: 14px 16px; gap: 12px; }
  .contact-info  { padding: 20px; }

  /* Scene */
  .scene-stage  { padding: 20px 14px 14px; }
  .scene-title  { font-size: 12px; }

  /* Nav */
  .nav__inner  { padding: 0 12px; height: 50px; }
  .nav__logo   { width: 62px; }
  .nav__brand  { min-width: 0; }
  .nav__brand-text em { display: none; }

  /* Footer */
  .footer__logo { width: 80px; }
  .footer__meta { gap: 10px; font-size: 11px; }
}

/* ── PREFERS-REDUCED-MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .scroll-hint__wheel,
  .btn__live { animation: none; }
  * { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
