/* ============================================
   4DigiSolutions — Dark / Tech Edition
   ============================================ */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }

/* ---- Tokens ---- */
:root {
  /* Brand */
  --orange: #F5A623;
  --orange-bright: #FFB838;
  --orange-deep: #C9821A;
  --blue: #4A90E2;
  --blue-bright: #5DA0F0;
  --blue-deep: #1E5BA8;

  /* Background — donkere tinten */
  --bg: #0A0A0B;
  --bg-2: #0F0F11;
  --bg-3: #16161A;
  --bg-4: #1C1C22;
  --bg-card: #131318;

  /* Ink */
  --ink: #F5F5F7;
  --ink-2: #B8B8C0;
  --ink-3: #7E7E88;
  --ink-4: #4A4A52;
  --ink-5: #2A2A30;

  /* Lines */
  --line: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.10);
  --line-3: rgba(255, 255, 255, 0.18);

  /* Glow / accenten */
  --glow-orange: rgba(245, 166, 35, 0.20);
  --glow-blue: rgba(74, 144, 226, 0.18);

  /* Product accenten */
  --swim-fg: #5DA0F0;
  --swim-bg: rgba(74, 144, 226, 0.12);
  --swim-border: rgba(74, 144, 226, 0.32);

  --safety-fg: #4ECDC4;
  --safety-bg: rgba(78, 205, 196, 0.10);
  --safety-border: rgba(78, 205, 196, 0.30);

  --plan-fg: #B794F4;
  --plan-bg: rgba(183, 148, 244, 0.10);
  --plan-border: rgba(183, 148, 244, 0.28);

  /* Type */
  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Geist Mono', ui-monospace, 'SF Mono', Consolas, monospace;

  /* Layout */
  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 48px);
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 20px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Body ---- */
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 0%, transparent 70%);
}

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

.section {
  padding: clamp(72px, 10vw, 130px) 0;
  position: relative;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 18px 0;
  flex-shrink: 0;
}

.logo-img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(245, 166, 35, 0.15));
  transition: filter 0.3s var(--ease);
}

.logo-link:hover .logo-img {
  filter: drop-shadow(0 0 24px rgba(245, 166, 35, 0.35));
}

.primary-nav {
  display: flex;
  gap: clamp(20px, 2.5vw, 36px);
  align-items: center;
}

.primary-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}

.primary-nav a::before {
  content: '◆ ';
  color: var(--ink-5);
  margin-right: 6px;
  font-size: 8px;
  vertical-align: middle;
  transition: color 0.2s var(--ease);
}

.primary-nav a:hover {
  color: var(--ink);
}

.primary-nav a:hover::before {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 8vw, 96px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--glow-orange) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: float 22s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow-blue) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: float 26s ease-in-out infinite reverse;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-prompt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-3);
  margin-bottom: 36px;
  animation: fadeUp 0.7s var(--ease-out) both;
}

.hero-prompt .prompt-mark {
  color: var(--orange);
  font-weight: 600;
}

.hero-prompt .prompt-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--orange);
  margin-left: 4px;
  animation: blink 1.1s steps(2) infinite;
  vertical-align: middle;
}

.hero-title {
  font-size: clamp(40px, 6.6vw, 88px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.038em;
  color: var(--ink);
  margin-bottom: 32px;
  animation: fadeUp 0.9s 0.1s var(--ease-out) both;
}

.hero-title .accent {
  color: var(--orange);
  font-weight: 500;
}

.hero-emph {
  display: block;
  color: var(--ink-3);
  font-style: italic;
  font-weight: 400;
  font-size: 0.78em;
  margin-top: 0.15em;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 40px;
  animation: fadeUp 0.9s 0.2s var(--ease-out) both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  animation: fadeUp 0.9s 0.3s var(--ease-out) both;
}

.hero-meta {
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  animation: fadeUp 0.9s 0.4s var(--ease-out) both;
}

.meta-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-4);
}

.meta-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.meta-value .dot {
  color: var(--orange);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1s 0.4s var(--ease-out) both;
}

.code-panel {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  position: relative;
}

.code-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(245, 166, 35, 0.06), transparent 50%);
  pointer-events: none;
}

.code-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-3);
}

.code-dots {
  display: flex;
  gap: 6px;
}

.code-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.code-dot:nth-child(1) { background: #FF5F57; }
.code-dot:nth-child(2) { background: #FEBC2E; }
.code-dot:nth-child(3) { background: #28C840; }

.code-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-left: 12px;
  letter-spacing: 0.02em;
}

.code-body {
  padding: 24px 22px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-2);
  position: relative;
  z-index: 1;
}

.code-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
}

.code-line .num {
  display: inline-block;
  width: 28px;
  color: var(--ink-5);
  user-select: none;
}

.tok-key { color: #C792EA; }
.tok-str { color: #C3E88D; }
.tok-fn  { color: #82AAFF; }
.tok-com { color: var(--ink-4); font-style: italic; }
.tok-num { color: #F78C6C; }
.tok-pct { color: var(--orange); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.3s var(--ease);
}

.btn::after {
  content: '→';
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  transition: transform 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--orange);
  color: #1A1206;
  border-color: var(--orange);
  box-shadow: 0 0 0 0 var(--glow-orange), 0 8px 24px -8px rgba(245, 166, 35, 0.5);
}

.btn-primary:hover {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px var(--glow-orange), 0 12px 32px -8px rgba(245, 166, 35, 0.6);
}

.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-3);
}

.btn-ghost:hover {
  background: var(--bg-3);
  border-color: var(--ink-3);
  transform: translateY(-2px);
}

.btn-ghost:hover::after { transform: translateX(4px); }

.btn-noarrow::after { content: none; }

/* ============================================
   SECTION HEADS
   ============================================ */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(48px, 5vw, 72px);
  align-items: start;
  max-width: 920px;
}

.section-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-4);
  letter-spacing: 0.06em;
  padding-top: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.section-num::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--ink-5);
}

.section-num::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid var(--orange);
  transform: rotate(45deg);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.032em;
  color: var(--ink);
  margin-bottom: 18px;
}

.section-title .accent { color: var(--orange); }

.section-lead {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 640px;
}

/* ============================================
   PRODUCTEN
   ============================================ */
.section-products {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.product-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.product-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px clamp(24px, 3vw, 44px);
  background: var(--bg-card);
  position: relative;
  transition: background 0.3s var(--ease);
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent, var(--orange));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-out);
}

.product-card:hover { background: var(--bg-3); }
.product-card:hover::before { transform: scaleY(1); }

.product-swim    { --accent: var(--swim-fg); }
.product-safety  { --accent: var(--safety-fg); }
.product-planning { --accent: var(--plan-fg); }

.product-mark {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mark-bg, var(--bg-4));
  border: 1px solid var(--mark-border, var(--line-2));
  color: var(--accent);
  transition: transform 0.4s var(--ease-out);
}

.product-swim    .product-mark { background: var(--swim-bg);   border-color: var(--swim-border); }
.product-safety  .product-mark { background: var(--safety-bg); border-color: var(--safety-border); }
.product-planning .product-mark { background: var(--plan-bg);   border-color: var(--plan-border); }

.product-mark svg { width: 28px; height: 28px; }

.product-card:hover .product-mark { transform: rotate(-6deg) scale(1.06); }

.product-card-body {
  max-width: 680px;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.product-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
}

.product-id {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
}

.product-name {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  color: var(--ink);
}

.product-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 16px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-features li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  padding: 4px 10px;
  background: var(--bg-4);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}

.product-features li::before {
  content: '· ';
  color: var(--accent);
  font-weight: bold;
}

.product-card-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  white-space: nowrap;
}

.product-link {
  color: var(--accent);
  font-size: 12.5px;
}

.product-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--ink-2);
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}

.product-card:hover .product-arrow {
  transform: translate(4px, -4px) rotate(-45deg);
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg-4);
}

/* ============================================
   WAT WE MAKEN
   ============================================ */
.section-make {
  background: var(--bg);
  position: relative;
}

.make-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.make-item {
  background: var(--bg-card);
  padding: 38px 32px;
  transition: background 0.3s var(--ease);
  position: relative;
}

.make-item::after {
  content: attr(data-num);
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-5);
  letter-spacing: 0.06em;
}

.make-item:hover {
  background: var(--bg-3);
}

.make-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--bg-4);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 24px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.make-icon svg { width: 22px; height: 22px; }

.make-item:hover .make-icon {
  background: rgba(245, 166, 35, 0.12);
  border-color: rgba(245, 166, 35, 0.40);
}

.make-item h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--ink);
}

.make-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ============================================
   CTA
   ============================================ */
.section-cta {
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(44px, 6vw, 80px) clamp(28px, 4vw, 64px);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--glow-orange) 0%, transparent 60%);
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--glow-blue) 0%, transparent 60%);
  pointer-events: none;
  animation: float 28s ease-in-out infinite reverse;
}

.cta-card > * { position: relative; z-index: 1; }

.cta-card .section-num { display: inline-flex; margin-bottom: 28px; padding-top: 0; }

.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin-bottom: 20px;
  max-width: 760px;
}

.cta-lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 600px;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-2);
  color: var(--ink-2);
  padding-top: 80px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: 60px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 22px;
}

.footer-tag {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-3);
  margin-bottom: 20px;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28C840;
  box-shadow: 0 0 0 3px rgba(40, 200, 64, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--ink-3);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-4);
  letter-spacing: 0.02em;
}

/* ============================================
   PRODUCTPAGINA
   ============================================ */
.product-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--hero-glow, var(--glow-orange)) 0%, transparent 60%);
  pointer-events: none;
}

.product-hero.hero-swim    { --hero-glow: rgba(74, 144, 226, 0.18); }
.product-hero.hero-safety  { --hero-glow: rgba(78, 205, 196, 0.16); }
.product-hero.hero-planning { --hero-glow: rgba(183, 148, 244, 0.16); }

.product-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.product-crumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-4);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.product-crumbs a {
  color: var(--ink-3);
  transition: color 0.2s var(--ease);
}

.product-crumbs a:hover { color: var(--orange); }

.product-crumbs .sep {
  margin: 0 10px;
  color: var(--ink-5);
}

.product-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--tag-border);
  background: var(--tag-bg);
  color: var(--tag-fg);
  margin-bottom: 28px;
}

.tag-swim    { --tag-fg: var(--swim-fg);   --tag-bg: var(--swim-bg);   --tag-border: var(--swim-border); }
.tag-safety  { --tag-fg: var(--safety-fg); --tag-bg: var(--safety-bg); --tag-border: var(--safety-border); }
.tag-planning { --tag-fg: var(--plan-fg);   --tag-bg: var(--plan-bg);   --tag-border: var(--plan-border); }

.product-hero h1 {
  font-size: clamp(36px, 5.6vw, 68px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.034em;
  margin-bottom: 24px;
  color: var(--ink);
}

.product-hero-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 720px;
  margin-bottom: 36px;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-section { padding: clamp(64px, 9vw, 110px) 0; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.roles-section   { padding: clamp(64px, 9vw, 110px) 0; background: var(--bg);   border-bottom: 1px solid var(--line); }
.access-section  { padding: clamp(64px, 9vw, 110px) 0; background: var(--bg-2); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.feature-item {
  background: var(--bg-card);
  padding: 32px 28px;
  transition: background 0.3s var(--ease);
}

.feature-item:hover { background: var(--bg-3); }

.feature-item h3 {
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: -0.012em;
  margin-bottom: 10px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.feature-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.feature-item p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-2);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.role-card {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.role-card:hover {
  border-color: var(--line-3);
  transform: translateY(-2px);
}

.role-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--line-2);
}

.role-icon svg { width: 22px; height: 22px; }

.role-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.role-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.access-card {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 36px 32px;
}

.access-card h3 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.access-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 18px;
}

.access-card a.inline-link {
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s var(--ease);
}

.access-card a.inline-link:hover { color: var(--orange); }

/* ============================================
   OVER ONS
   ============================================ */
.over-hero {
  padding: clamp(56px, 8vw, 110px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.over-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow-orange) 0%, transparent 60%);
  pointer-events: none;
}

.over-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.over-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.036em;
  margin-bottom: 32px;
  color: var(--ink);
}

.over-lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 28px;
}

.over-prose {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-2);
}

.over-prose p {
  margin-bottom: 20px;
}

.over-prose strong { color: var(--ink); font-weight: 500; }

.over-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  margin-top: 56px;
  overflow: hidden;
}

.stat {
  background: var(--bg-card);
  padding: 32px 28px;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-hero {
  padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow-orange) 0%, transparent 60%);
  pointer-events: none;
}

.contact-hero > .container { position: relative; z-index: 1; }

.contact-hero h1 {
  font-size: clamp(36px, 5.4vw, 68px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.036em;
  margin-bottom: 24px;
  color: var(--ink);
}

.contact-hero p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 640px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(48px, 7vw, 96px) 0 clamp(72px, 10vw, 130px);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-block {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 28px;
}

.contact-block h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  margin-bottom: 14px;
  font-weight: 500;
}

.contact-block .big {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
  word-break: break-word;
}

.contact-block .big a {
  color: var(--orange);
  transition: color 0.2s var(--ease);
}

.contact-block .big a:hover { color: var(--orange-bright); }

.contact-block p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

.contact-block .product-mini {
  font-size: 13px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-block .product-mini:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.contact-block .product-mini strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-block .product-mini a {
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: 12.5px;
  transition: color 0.2s var(--ease);
}

.contact-block .product-mini a:hover { color: var(--orange); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
}

.contact-form h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}

.contact-form .form-intro {
  font-size: 14.5px;
  color: var(--ink-2);
  margin-bottom: 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink-3);
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  font: inherit;
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: var(--bg-3);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--ink-4); }

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--bg-4);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.14);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.form-note {
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 16px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.form-success,
.form-error {
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
  margin-bottom: 18px;
  display: none;
}

.form-success {
  background: rgba(40, 200, 64, 0.10);
  color: #5DEC85;
  border: 1px solid rgba(40, 200, 64, 0.25);
}

.form-error {
  background: rgba(255, 95, 87, 0.10);
  color: #FF8B85;
  border: 1px solid rgba(255, 95, 87, 0.25);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-card-foot { flex-direction: row; align-items: center; justify-content: space-between; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 16px var(--pad);
  }
  .primary-nav.is-open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .primary-nav.is-open a:last-child { border-bottom: none; }

  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; }

  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .header-inner { height: 76px; }
  .logo-img { height: 52px; }
  .primary-nav.is-open { top: 76px; }
}

/* ============================================
   ANIMATIES
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(40, 200, 64, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(40, 200, 64, 0.05); }
}

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

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

::selection {
  background: var(--orange);
  color: #1A1206;
}

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

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-4);
  border-radius: 6px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ink-5);
}
