/* ═══════════════════════════════════════════════════
   JURIANTECH — style.css
   Premium dark agency homepage
   Font: Syne (display) + DM Sans (body)
   Theme: Deep navy · Electric blue · Crisp white
═══════════════════════════════════════════════════ */

/* ── RESET & ROOT ──────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --bg:           #060c1a;
  --bg-2:         #0b1325;
  --bg-3:         #101c35;
  --card:         #0f1a30;
  --card-border:  rgba(255,255,255,0.06);
  --text:         #e8eeff;
  --muted:        #8a9bc2;
  --muted-2:      #5c6e96;
  --accent:       #4f8cff;
  --accent-2:     #6c6fff;
  --accent-glow:  rgba(79,140,255,0.18);
  --green:        #3ecf8e;
  --green-glow:   rgba(62,207,142,0.15);
  --white:        #ffffff;
  --border:       rgba(255,255,255,0.07);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-pad:  110px;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

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

/* ── NOISE CANVAS ──────────────────────────────── */
.noise-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
}

/* ── CURSOR GLOW ───────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(79,140,255,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

/* ── CONTAINER ─────────────────────────────────── */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ── SECTION HELPERS ───────────────────────────── */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-dark {
  background: var(--bg-2);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(79,140,255,0.25);
  border-radius: 999px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
}

/* ── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(79,140,255,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(79,140,255,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

.btn-large {
  padding: 18px 32px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── REVEAL ANIMATION ──────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="100"]  { transition-delay: 0.10s; }
[data-delay="200"]  { transition-delay: 0.20s; }
[data-delay="300"]  { transition-delay: 0.30s; }
[data-delay="400"]  { transition-delay: 0.40s; }
[data-delay="500"]  { transition-delay: 0.50s; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(6,12,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 10px 20px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(79,140,255,0.25);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(79,140,255,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 901;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(6,12,26,0.97);
  backdrop-filter: blur(20px);
  z-index: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s;
}

.mobile-link:hover { color: var(--white); }

.mobile-cta {
  margin-top: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 14px 40px;
  border-radius: 14px;
  font-size: 20px;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(79,140,255,0.35), transparent 70%);
}

.orb-2 {
  width: 500px; height: 500px;
  top: 200px; right: -150px;
  background: radial-gradient(circle, rgba(108,111,255,0.25), transparent 70%);
}

.orb-3 {
  width: 300px; height: 300px;
  bottom: 100px; left: 30%;
  background: radial-gradient(circle, rgba(62,207,142,0.10), transparent 70%);
}

.grid-svg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.02);
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  overflow: hidden;
}

.hero-title .line {
  display: block;
  animation: slideUp 0.8s cubic-bezier(.16,1,.3,1) both;
}

.hero-title .line[data-line="1"] { animation-delay: 0.1s; }
.hero-title .line[data-line="2"] { animation-delay: 0.2s; }
.hero-title .line[data-line="3"] { animation-delay: 0.3s; }

.line-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
  animation: slideUp 0.8s cubic-bezier(.16,1,.3,1) 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: slideUp 0.8s cubic-bezier(.16,1,.3,1) 0.5s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 52px;
  animation: slideUp 0.8s cubic-bezier(.16,1,.3,1) 0.6s both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Photo */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-frame {
  position: relative;
  max-width: 420px;
  width: 100%;
  animation: fadeIn 1s ease 0.4s both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.photo-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(79,140,255,0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.photo-wrapper {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.photo-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.photo-img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--bg-3), var(--card));
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--muted-2);
}

.photo-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: rgba(11,19,37,0.92);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.photo-badge svg { color: var(--accent); flex-shrink: 0; }

.photo-badge-1 {
  top: 10%; left: -30px;
  animation: float 3s ease-in-out infinite;
}

.photo-badge-2 {
  top: 45%; right: -30px;
  animation: float 3s ease-in-out 1s infinite;
}

.photo-badge-3 {
  bottom: 12%; left: -20px;
  animation: float 3s ease-in-out 2s infinite;
}

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

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollAnim 1.5s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════ */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
  overflow: hidden;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

.trust-logos::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none;
}

.trust-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-2);
  white-space: nowrap;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  transition: color 0.2s, border-color 0.2s;
}

.trust-item:hover {
  color: var(--muted);
  border-color: rgba(255,255,255,0.15);
}

/* ═══════════════════════════════════════════════
   DIENSTEN
═══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.services-grid > *:nth-child(1) { grid-column: span 2; }
.services-grid > *:nth-child(5) { grid-column: span 2; }

.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.service-card:hover {
  border-color: rgba(79,140,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.service-featured {
  background: linear-gradient(135deg, rgba(79,140,255,0.08), rgba(108,111,255,0.04));
  border-color: rgba(79,140,255,0.2);
}

.service-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(79,140,255,0.06), transparent 60%);
  pointer-events: none;
}

.service-icon {
  width: 52px; height: 52px;
  background: rgba(79,140,255,0.1);
  border: 1px solid rgba(79,140,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}

.service-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(79,140,255,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.service-list li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}

.service-link:hover { gap: 10px; }

.service-cta-card {
  background: linear-gradient(135deg, rgba(79,140,255,0.12), rgba(108,111,255,0.06));
  border: 1px dashed rgba(79,140,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 280px;
}

.service-cta-card:hover { transform: none; }

.service-cta-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-cta-content p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════
   WHY JURIANTECH
═══════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.why-item:first-child { padding-top: 0; }
.why-item:last-child  { border-bottom: none; }

.why-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
  padding-top: 4px;
  width: 28px;
}

.why-body h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.why-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   PROJECTEN
═══════════════════════════════════════════════ */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.project-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 40px;
  transition: border-color 0.3s;
}

.project-item:hover {
  border-color: rgba(79,140,255,0.2);
}

.project-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.project-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(79,140,255,0.1);
  border: 1px solid rgba(79,140,255,0.2);
  padding: 5px 12px;
  border-radius: 999px;
}

.project-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.project-info h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.project-info p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.project-features li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-features li::before {
  content: '✓';
  font-weight: 700;
  color: var(--green);
  font-size: 13px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}

.project-link:hover { gap: 10px; }

/* Browser mockup */
.project-screen {
  background: #0a1020;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }

.screen-url {
  font-size: 11px;
  color: var(--muted-2);
  margin-left: 8px;
  background: rgba(255,255,255,0.04);
  padding: 3px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.05);
}

.screen-content {
  padding: 20px;
}

.screen-header-block {
  height: 40px;
  background: linear-gradient(90deg, rgba(79,140,255,0.15), rgba(108,111,255,0.08));
  border-radius: 6px;
  margin-bottom: 16px;
}

.screen-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.screen-row {
  height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
}

.screen-row-short { width: 65%; }

.screen-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.screen-card {
  height: 56px;
  background: rgba(79,140,255,0.08);
  border-radius: 8px;
  border: 1px solid rgba(79,140,255,0.12);
}

/* Dashboard mockup */
.screen-dashboard {
  display: flex;
  gap: 0;
  padding: 0;
}

.screen-sidebar {
  width: 50px;
  background: rgba(0,0,0,0.2);
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-item {
  height: 28px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
}

.sidebar-item.active {
  background: rgba(79,140,255,0.2);
}

.screen-main {
  flex: 1;
  padding: 16px;
}

.dash-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.dash-stat {
  flex: 1;
  height: 40px;
  background: rgba(79,140,255,0.08);
  border-radius: 6px;
  border: 1px solid rgba(79,140,255,0.1);
}

.dash-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-row-t {
  height: 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════
   KERKPLATFORM SHOWCASE
═══════════════════════════════════════════════ */
.kerk-section {
  position: relative;
  overflow: hidden;
}

.kerk-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb-green {
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(62,207,142,0.10), transparent 70%);
  filter: blur(80px);
}

.kerk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.kerk-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
}

.kerk-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.kerk-feature-icon {
  width: 40px; height: 40px;
  background: rgba(62,207,142,0.08);
  border: 1px solid rgba(62,207,142,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.kerk-feature > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.kerk-feature strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.kerk-feature span {
  font-size: 13px;
  color: var(--muted);
}

/* Kerk visual cards */
.kerk-visual {
  position: relative;
  height: 480px;
}

.kerk-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(11,19,37,0.92);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(16px);
  padding: 16px 20px;
  border-radius: var(--r-md);
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
  min-width: 260px;
  transition: transform 0.3s;
}

.kerk-card:hover { transform: scale(1.02); }

.kerk-card-1 { top: 0%;    left: 0;    animation: float 4s ease-in-out infinite; }
.kerk-card-2 { top: 22%;   right: 0;   animation: float 4s ease-in-out 1s infinite; }
.kerk-card-3 { top: 50%;   left: 5%;   animation: float 4s ease-in-out 2s infinite; }
.kerk-card-4 { bottom: 0%; right: 5%;  animation: float 4s ease-in-out 3s infinite; }

.kerk-card-icon { font-size: 24px; flex-shrink: 0; }

.kerk-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.kerk-card-body strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.kerk-card-body span {
  font-size: 12px;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   PROCES TIJDLIJN
═══════════════════════════════════════════════ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 60px;
}

.timeline-track {
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), rgba(79,140,255,0.1));
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -54px;
  width: 42px; height: 42px;
  background: var(--card);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(79,140,255,0.08);
}

.timeline-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-md);
  padding: 24px 28px;
  flex: 1;
  position: relative;
  transition: border-color 0.3s;
}

.timeline-card:hover { border-color: rgba(79,140,255,0.2); }

.timeline-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.timeline-time {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════
   STACK
═══════════════════════════════════════════════ */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stack-category {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color 0.3s;
}

.stack-category:hover { border-color: rgba(79,140,255,0.2); }

.stack-cat-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.8;
}

.stack-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stack-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}

.stack-item:last-child { border-bottom: none; }
.stack-item:hover { color: var(--text); }

.stack-icon {
  width: 30px;
  text-align: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   HOSTING
═══════════════════════════════════════════════ */
.hosting-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.hosting-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hosting-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-md);
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.hosting-card:hover {
  border-color: rgba(79,140,255,0.2);
  transform: translateY(-3px);
}

.hosting-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  margin-bottom: 12px;
}

.hosting-card-header h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.hosting-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--accent); }

.faq-arrow {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s ease;
}

.faq-q[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-a p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   OVER
═══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.about-photo-frame {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 12px;
  margin-bottom: 20px;
}

.about-photo {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--bg-3), var(--card));
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--muted-2);
}

.about-placeholder.show { display: flex; }

.about-quote {
  background: linear-gradient(135deg, rgba(79,140,255,0.08), rgba(108,111,255,0.04));
  border: 1px solid rgba(79,140,255,0.15);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex;
  gap: 14px;
}

.about-quote svg { color: var(--accent); flex-shrink: 0; margin-top: 4px; }

.about-quote p {
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.65;
}

.about-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
}

.about-fact svg { color: var(--accent); flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb-cta-1 {
  width: 500px; height: 500px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(79,140,255,0.2), transparent 70%);
  filter: blur(60px);
}

.orb-cta-2 {
  width: 400px; height: 400px;
  bottom: -150px; right: 0;
  background: radial-gradient(circle, rgba(108,111,255,0.15), transparent 70%);
  filter: blur(60px);
}

.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 16px 0 20px;
}

.cta-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted-2);
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-md);
  transition: border-color 0.2s;
}

.contact-method:hover { border-color: rgba(79,140,255,0.2); }

.contact-method-icon {
  width: 44px; height: 44px;
  background: rgba(79,140,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-2);
  margin-bottom: 3px;
}

.contact-method span {
  font-size: 15px;
  color: var(--text);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(79,140,255,0.04);
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(62,207,142,0.08);
  border: 1px solid rgba(62,207,142,0.2);
  border-radius: var(--r-sm);
  font-size: 15px;
  color: var(--green);
  text-align: center;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: var(--bg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted-2);
  margin-top: 14px;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}

.footer-col a,
.footer-col span {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted-2);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--muted-2);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--muted); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid   { gap: 48px; }
  .kerk-grid  { gap: 48px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 70px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-sub   { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .photo-badge { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid > *:nth-child(1),
  .services-grid > *:nth-child(5) { grid-column: span 1; }

  .why-grid       { grid-template-columns: 1fr; }
  .project-body   { grid-template-columns: 1fr; }
  .kerk-grid      { grid-template-columns: 1fr; }
  .kerk-visual    { height: 320px; }
  .hosting-grid   { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid       { grid-template-columns: 1fr; }
  .about-grid     { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }

  .trust-bar .container { flex-direction: column; gap: 16px; }
}

@media (max-width: 640px) {
  .hero-title { text-align: left; }
  .hero-badge { font-size: 12px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .hosting-cards { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .timeline { padding-left: 48px; }
  .kerk-card { min-width: 200px; font-size: 13px; }
}
