/* ============================================================
   LAGENCO WEBSITE â€” Premium Dark Theme
   ============================================================ */

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

:root {
  /* Kleuren */
  --bg-primary: #191D2A;
  --bg-secondary: #1F2333;
  --bg-tertiary: #252A3C;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --text-primary: #FFFFFF;
  --text-secondary: #C7CBD8;
  --text-muted: #8B8F9E;
  --accent: #FFFFFF;
  --accent-soft: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --glow: rgba(59, 130, 246, 0.15);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.25); }

/* === CONTAINER === */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   INTRO ANIMATIE
   ============================================================ */
#introOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--bg-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
#introOverlay::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: introGlow 2s ease-out forwards;
}
@keyframes introGlow {
  0%   { transform: scale(0.6); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: scale(1.4); opacity: 0.3; }
}

.intro-text {
  font-family: var(--font-sans);
  font-size: 96px;
  font-weight: 200;
  letter-spacing: 20px;
  color: #ffffff;
  text-transform: uppercase;
  padding-left: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: introTextShow 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  z-index: 2;
}
.intro-text .letter-l {
  font-weight: 700;
  letter-spacing: 24px;
  padding-right: 4px;
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes introTextShow {
  0%   { opacity: 0; transform: translateY(20px); letter-spacing: 32px; }
  35%  { opacity: 1; transform: translateY(0); letter-spacing: 20px; }
  55%  { opacity: 1; transform: translateY(0); letter-spacing: 20px; }
  80%  { opacity: 0; transform: translateY(-15px); letter-spacing: 28px; }
  100% { opacity: 0; transform: translateY(-25px); }
}

.intro-logo {
  position: absolute;
  opacity: 0;
  transform: scale(0.7);
  animation: introLogoShow 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1s;
  z-index: 2;
}
.intro-logo img {
  width: 160px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.2));
}
@keyframes introLogoShow {
  0%   { opacity: 0; transform: scale(0.7) rotate(-3deg); }
  40%  { opacity: 1; transform: scale(1) rotate(0deg); }
  75%  { opacity: 1; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}

#introOverlay.fade-out {
  animation: introOverlayFade 0.4s ease-out forwards;
  animation-delay: 1.85s;
}
@keyframes introOverlayFade {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

.intro-progress {
  position: absolute;
  bottom: 0; left: 0;
  width: 0%; height: 2px;
  background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
  animation: introProgress 1.85s ease-in-out forwards;
  z-index: 3;
}
@keyframes introProgress {
  0%   { width: 0%; opacity: 0; }
  20%  { opacity: 0.6; }
  100% { width: 100%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .intro-text, .intro-logo, #introOverlay.fade-out, .intro-progress, #introOverlay::before {
    animation-duration: 0.01s !important;
    animation-delay: 0s !important;
  }
}

/* Responsive intro */
@media (max-width: 768px) {
  .intro-text { font-size: 56px; letter-spacing: 12px; padding-left: 12px; }
  .intro-text .letter-l { letter-spacing: 16px; padding-right: 3px; }
  .intro-logo img { width: 110px; }
  #introOverlay::before { width: 500px; height: 500px; }
}
@media (max-width: 480px) {
  .intro-text { font-size: 42px; letter-spacing: 10px; padding-left: 10px; }
  .intro-text .letter-l { letter-spacing: 13px; }
  .intro-logo img { width: 90px; }
  #introOverlay::before { width: 400px; height: 400px; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(25, 29, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(25, 29, 42, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 20px;
  transition: var(--transition);
}
.nav-logo-img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
  transition: var(--transition);
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover {
  color: white;
  background: var(--accent-soft);
}
.nav-link.nav-cta {
  background: white;
  color: var(--bg-primary);
  font-weight: 600;
}
.nav-link.nav-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat 15s infinite linear;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-logo-wrap {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.hero-logo {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.25));
  animation: heroLogoFloat 4s ease-in-out infinite;
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero-title {
  font-size: clamp(48px, 9vw, 110px);
  font-weight: 200;
  letter-spacing: 12px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: white;
}
.hero-title .letter-l {
  font-weight: 700;
  letter-spacing: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #c7cbd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-tagline {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--text-muted) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.3); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: white;
  color: var(--bg-primary);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
}
.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--accent-soft);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
.btn-loader {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(25, 29, 42, 0.3);
  border-top-color: var(--bg-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   SECTIONS â€” Algemene stijl
   ============================================================ */
.section {
  padding: var(--section-padding);
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--accent-soft);
  border-radius: 100px;
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: white;
}
.section-title .accent {
  background: linear-gradient(135deg, #ffffff 0%, #8B8F9E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-line {
  width: 60px;
  height: 3px;
  background: white;
  margin: 0 auto;
  border-radius: 2px;
}
.section-subtitle {
  margin-top: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

/* ============================================================
   ABOUT SECTIE
   ============================================================ */
.about { background: var(--bg-secondary); }
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-text .about-lead {
  font-size: 22px;
  color: white;
  font-weight: 500;
  margin-bottom: 24px;
}
.about-text strong { color: white; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   DIENSTEN SECTIE
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  transition: var(--transition-slow);
  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.3), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  transition: var(--transition);
}
.service-icon svg {
  width: 28px;
  height: 28px;
}
.service-card:hover .service-icon {
  background: white;
  color: var(--bg-primary);
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: var(--transition);
}
.service-link:hover { transform: translateX(4px); }

/* ============================================================
   MILESTONES / TIJDLIJN
   ============================================================ */
.milestones { background: var(--bg-secondary); }
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--border-strong) 10%,
    var(--border-strong) 90%,
    transparent 100%);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 50px;
  margin-bottom: 20px;
}
.timeline-item:not(.right) {
  left: 0;
  text-align: right;
}
.timeline-item.right {
  left: 50%;
  text-align: left;
}
.timeline-dot {
  position: absolute;
  top: 40px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1);
  z-index: 2;
}
.timeline-item:not(.right) .timeline-dot { right: -8px; }
.timeline-item.right .timeline-dot { left: -8px; }
.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: var(--transition);
}
.timeline-content:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.timeline-icon {
  width: 48px;
  height: 48px;
  background: white;
  color: var(--bg-primary);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.timeline-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}
.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.timeline-image {
  position: relative;
  margin: -32px -32px 20px;
  height: 220px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.timeline-image:hover img { transform: scale(1.05); }
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-card) 100%);
}
.timeline-stat {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px;
  background: var(--accent-soft);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.timeline-item:not(.right) .timeline-stat { align-items: flex-end; }
.timeline-item.right .timeline-stat { align-items: flex-start; }
.stat-highlight {
  font-size: 22px;
  font-weight: 700;
  color: white;
}
.stat-sub {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   CONTACT SECTIE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: white;
  font-family: var(--font-sans);
  font-size: 15px;
  transition: var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}
.form-feedback {
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}
.form-feedback.success { color: #10b981; }
.form-feedback.error { color: #ef4444; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.info-card:hover {
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.info-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.info-icon svg {
  width: 20px;
  height: 20px;
}
.info-card h4 {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.info-card p {
  color: white;
  font-size: 15px;
}

.social-links h4 {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}
.social-link svg {
  width: 20px;
  height: 20px;
}
.social-link:hover {
  background: white;
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  height: 32px;
  width: auto;
}
.footer-name {
  font-size: 18px;
  font-weight: 600;
  color: white;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.footer-links a:hover { color: white; }
.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESULTATEN SECTIE
   ============================================================ */
.results { background: var(--bg-primary); }

.result-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.result-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  background: var(--bg-secondary);
}
.result-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.result-image-wrap:hover img { transform: scale(1.05); }

.result-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(25, 29, 42, 0.9) 100%);
  pointer-events: none;
}

.result-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bg-primary);
  padding: 14px 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.result-badge-value {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.result-badge-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.result-content {
  padding: 0 10px;
}
.result-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  padding: 6px 14px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-bottom: 18px;
}
.result-content h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.result-content p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.result-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.result-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.result-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
}
.result-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.result-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === DASHBOARD CAROUSEL === */
.dashboard-carousel-section {
  margin-top: 60px;
}
.carousel-header {
  text-align: center;
  margin-bottom: 40px;
}
.carousel-header h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.carousel-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}

.carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.carousel-btn svg {
  width: 22px;
  height: 22px;
}
.carousel-btn:hover {
  background: white;
  color: var(--bg-primary);
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}
.carousel-btn:active { transform: scale(1.05); }

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  aspect-ratio: 16 / 10;
  position: relative;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(25, 29, 42, 0.95) 100%);
  color: white;
  pointer-events: none;
}
.carousel-caption .slide-number {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.carousel-caption h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.carousel-caption p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.carousel-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--border-strong);
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active {
  background: white;
  width: 28px;
  border-radius: 4px;
}
.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   RESPONSIVE â€” Resultaten
   ============================================================ */
@media (max-width: 968px) {
  .result-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .result-content { padding: 0; }
  .result-stats {
    flex-wrap: wrap;
    gap: 12px;
  }
  .result-stat-divider { display: none; }
  .result-stat-item {
    flex: 1 1 30%;
    min-width: 80px;
  }
}

@media (max-width: 768px) {
  .carousel {
    gap: 8px;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }
  .carousel-caption {
    padding: 16px 20px;
  }
  .carousel-caption h4 { font-size: 16px; }
  .carousel-caption p { font-size: 12px; }
  .carousel-viewport { aspect-ratio: 4 / 3; }
}

@media (max-width: 480px) {
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
  .result-badge {
    padding: 10px 14px;
    bottom: 12px;
    left: 12px;
  }
  .result-badge-value { font-size: 18px; }
  .result-badge-label { font-size: 10px; }
  .result-stat-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  :root { --section-padding: 80px 0; }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-secondary);
    padding: 20px;
    gap: 8px;
    transform: translateY(-150%);
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.active { transform: translateY(0); }
  .nav-menu li { width: 100%; }
  .nav-link { display: block; text-align: center; }
  .nav-toggle { display: flex; }

  .section-header { margin-bottom: 50px; }
  .timeline-line { left: 20px; }
  .timeline-item,
  .timeline-item.right {
    width: 100%;
    left: 0;
    padding: 20px 20px 20px 60px;
    text-align: left !important;
  }
  .timeline-item .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 12px;
    right: auto;
  }
  .timeline-item:not(.right) .timeline-stat,
  .timeline-item.right .timeline-stat {
    align-items: flex-start;
  }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; gap: 8px; }
  .footer-brand p { margin: 0; padding: 0; border: none; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .hero-cta { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-cta .btn { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 80px 16px 40px; }
  .hero-subtitle { font-size: 16px; }
  .contact-form { padding: 24px; }
  .timeline-content { padding: 24px; }
  .timeline-image { margin: -24px -24px 16px; height: 180px; }
}  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.25); }

/* === CONTAINER === */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   INTRO ANIMATIE
   ============================================================ */
#introOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--bg-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
#introOverlay::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: introGlow 2s ease-out forwards;
}
@keyframes introGlow {
  0%   { transform: scale(0.6); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: scale(1.4); opacity: 0.3; }
}

.intro-text {
  font-family: var(--font-sans);
  font-size: 96px;
  font-weight: 200;
  letter-spacing: 20px;
  color: #ffffff;
  text-transform: uppercase;
  padding-left: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: introTextShow 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  z-index: 2;
}
.intro-text .letter-l {
  font-weight: 700;
  letter-spacing: 24px;
  padding-right: 4px;
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes introTextShow {
  0%   { opacity: 0; transform: translateY(20px); letter-spacing: 32px; }
  35%  { opacity: 1; transform: translateY(0); letter-spacing: 20px; }
  55%  { opacity: 1; transform: translateY(0); letter-spacing: 20px; }
  80%  { opacity: 0; transform: translateY(-15px); letter-spacing: 28px; }
  100% { opacity: 0; transform: translateY(-25px); }
}

.intro-logo {
  position: absolute;
  opacity: 0;
  transform: scale(0.7);
  animation: introLogoShow 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1s;
  z-index: 2;
}
.intro-logo img {
  width: 160px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.2));
}
@keyframes introLogoShow {
  0%   { opacity: 0; transform: scale(0.7) rotate(-3deg); }
  40%  { opacity: 1; transform: scale(1) rotate(0deg); }
  75%  { opacity: 1; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}

#introOverlay.fade-out {
  animation: introOverlayFade 0.4s ease-out forwards;
  animation-delay: 1.85s;
}
@keyframes introOverlayFade {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

.intro-progress {
  position: absolute;
  bottom: 0; left: 0;
  width: 0%; height: 2px;
  background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
  animation: introProgress 1.85s ease-in-out forwards;
  z-index: 3;
}
@keyframes introProgress {
  0%   { width: 0%; opacity: 0; }
  20%  { opacity: 0.6; }
  100% { width: 100%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .intro-text, .intro-logo, #introOverlay.fade-out, .intro-progress, #introOverlay::before {
    animation-duration: 0.01s !important;
    animation-delay: 0s !important;
  }
}

/* Responsive intro */
@media (max-width: 768px) {
  .intro-text { font-size: 56px; letter-spacing: 12px; padding-left: 12px; }
  .intro-text .letter-l { letter-spacing: 16px; padding-right: 3px; }
  .intro-logo img { width: 110px; }
  #introOverlay::before { width: 500px; height: 500px; }
}
@media (max-width: 480px) {
  .intro-text { font-size: 42px; letter-spacing: 10px; padding-left: 10px; }
  .intro-text .letter-l { letter-spacing: 13px; }
  .intro-logo img { width: 90px; }
  #introOverlay::before { width: 400px; height: 400px; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(25, 29, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(25, 29, 42, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 20px;
  transition: var(--transition);
}
.nav-logo-img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
  transition: var(--transition);
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover {
  color: white;
  background: var(--accent-soft);
}
.nav-link.nav-cta {
  background: white;
  color: var(--bg-primary);
  font-weight: 600;
}
.nav-link.nav-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat 15s infinite linear;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-logo-wrap {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.hero-logo {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.25));
  animation: heroLogoFloat 4s ease-in-out infinite;
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.hero-title {
  font-size: clamp(48px, 9vw, 110px);
  font-weight: 200;
  letter-spacing: 12px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: white;
}
.hero-title .letter-l {
  font-weight: 700;
  letter-spacing: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #c7cbd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-tagline {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--text-muted) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.3); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: white;
  color: var(--bg-primary);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
}
.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--accent-soft);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
.btn-loader {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(25, 29, 42, 0.3);
  border-top-color: var(--bg-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   SECTIONS — Algemene stijl
   ============================================================ */
.section {
  padding: var(--section-padding);
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--accent-soft);
  border-radius: 100px;
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: white;
}
.section-title .accent {
  background: linear-gradient(135deg, #ffffff 0%, #8B8F9E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-line {
  width: 60px;
  height: 3px;
  background: white;
  margin: 0 auto;
  border-radius: 2px;
}
.section-subtitle {
  margin-top: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

/* ============================================================
   ABOUT SECTIE
   ============================================================ */
.about { background: var(--bg-secondary); }
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-text .about-lead {
  font-size: 22px;
  color: white;
  font-weight: 500;
  margin-bottom: 24px;
}
.about-text strong { color: white; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   DIENSTEN SECTIE
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  transition: var(--transition-slow);
  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.3), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  transition: var(--transition);
}
.service-icon svg {
  width: 28px;
  height: 28px;
}
.service-card:hover .service-icon {
  background: white;
  color: var(--bg-primary);
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: var(--transition);
}
.service-link:hover { transform: translateX(4px); }

/* ============================================================
   MILESTONES / TIJDLIJN
   ============================================================ */
.milestones { background: var(--bg-secondary); }
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    var(--border-strong) 10%,
    var(--border-strong) 90%,
    transparent 100%);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 50px;
  margin-bottom: 20px;
}
.timeline-item:not(.right) {
  left: 0;
  text-align: right;
}
.timeline-item.right {
  left: 50%;
  text-align: left;
}
.timeline-dot {
  position: absolute;
  top: 40px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1);
  z-index: 2;
}
.timeline-item:not(.right) .timeline-dot { right: -8px; }
.timeline-item.right .timeline-dot { left: -8px; }
.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: var(--transition);
}
.timeline-content:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.timeline-icon {
  width: 48px;
  height: 48px;
  background: white;
  color: var(--bg-primary);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.timeline-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}
.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.timeline-image {
  position: relative;
  margin: -32px -32px 20px;
  height: 220px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.timeline-image:hover img { transform: scale(1.05); }
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-card) 100%);
}
.timeline-stat {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px;
  background: var(--accent-soft);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.timeline-item:not(.right) .timeline-stat { align-items: flex-end; }
.timeline-item.right .timeline-stat { align-items: flex-start; }
.stat-highlight {
  font-size: 22px;
  font-weight: 700;
  color: white;
}
.stat-sub {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   CONTACT SECTIE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: white;
  font-family: var(--font-sans);
  font-size: 15px;
  transition: var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}
.form-feedback {
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}
.form-feedback.success { color: #10b981; }
.form-feedback.error { color: #ef4444; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.info-card:hover {
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.info-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.info-icon svg {
  width: 20px;
  height: 20px;
}
.info-card h4 {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.info-card p {
  color: white;
  font-size: 15px;
}

.social-links h4 {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}
.social-link svg {
  width: 20px;
  height: 20px;
}
.social-link:hover {
  background: white;
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  height: 32px;
  width: auto;
}
.footer-name {
  font-size: 18px;
  font-weight: 600;
  color: white;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.footer-links a:hover { color: white; }
.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 80px 0; }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-secondary);
    padding: 20px;
    gap: 8px;
    transform: translateY(-150%);
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.active { transform: translateY(0); }
  .nav-menu li { width: 100%; }
  .nav-link { display: block; text-align: center; }
  .nav-toggle { display: flex; }

  .section-header { margin-bottom: 50px; }
  .timeline-line { left: 20px; }
  .timeline-item,
  .timeline-item.right {
    width: 100%;
    left: 0;
    padding: 20px 20px 20px 60px;
    text-align: left !important;
  }
  .timeline-item .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 12px;
    right: auto;
  }
  .timeline-item:not(.right) .timeline-stat,
  .timeline-item.right .timeline-stat {
    align-items: flex-start;
  }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; gap: 8px; }
  .footer-brand p { margin: 0; padding: 0; border: none; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .hero-cta { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-cta .btn { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 80px 16px 40px; }
  .hero-subtitle { font-size: 16px; }
  .contact-form { padding: 24px; }
  .timeline-content { padding: 24px; }
  .timeline-image { margin: -24px -24px 16px; height: 180px; }
}
