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

:root {
  --cyan: #00d4ff;
  --cyan-dark: #00a8cc;
  --blue-deep: #1a3a5c;
  --dark: #3d444a;
  --dark-light: #4d5359;
  --white: #ffffff;
  --gray-light: #f4f6f8;
  --gray-mid: #e0e4e8;
  --text: #2c2c2c;
  --text-light: #6b7280;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg transform='rotate(35 16 16)'%3E%3Crect x='13' y='1' width='6' height='14' rx='1' fill='%23c4972a'/%3E%3Crect x='13' y='1' width='6' height='3.5' rx='1' fill='%23A8A8A8'/%3E%3Crect x='14' y='1.5' width='4' height='2' rx='0.5' fill='%23C0C0C0'/%3E%3Crect x='12' y='15' width='8' height='11' rx='1' fill='%2300d4ff'/%3E%3Cpath d='M12 20c1-1 2 1 4 0s2-1 4-1' stroke='%2300a8cc' stroke-width='0.7' fill='none'/%3E%3Cpath d='M12 23c2-1 3 1 4 0s3 0 4-1' stroke='%2300a8cc' stroke-width='0.5' fill='none'/%3E%3Cpath d='M14 26q2 2 4 0' stroke='%2300b8d9' stroke-width='1' fill='none' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E") 28 28, auto;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow 0.4s ease;
}

/*
 * De blur-achtergrond staat op een pseudo-element in plaats van op .navbar
 * zelf. Een backdrop-filter/transform/filter op .navbar zou .navbar tot
 * containing block maken voor position:fixed-kinderen (zoals het mobiele
 * .nav-links-menu) - waardoor dat menu ineens t.o.v. de ~80px hoge navbar
 * i.p.v. het viewport wordt gepositioneerd en 'afgeknipt' oogt zodra je
 * gescrolld hebt en het menu opent.
 */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(42, 47, 51, 0.95);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.navbar.scrolled::before {
  opacity: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: auto;
  width: 200px;
  margin-left: -26px;
}

@media (min-width: 769px) {
  .nav-logo img {
    width: 280px;
    margin-left: -37px;
  }
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 20px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(0, 212, 255, 0.1);
}

.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark)) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark)) !important;
  color: var(--white) !important;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

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

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 212, 255, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(0, 168, 204, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, #2a2f33 0%, #3d444a 40%, #2c3e50 70%, #1a2a3a 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: 50%;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  animation: spin-slow 30s linear infinite;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 10%;
  border-color: rgba(0, 212, 255, 0.05);
  animation: spin-slow 25s linear infinite reverse;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 15%;
  border-color: rgba(0, 212, 255, 0.06);
  animation: float 6s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, rgba(0, 212, 255, 0.03) 40%, transparent 70%);
  filter: blur(40px);
  animation: glow-pulse 5s ease-in-out infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.1); }
}

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

/* Bewegende fotocollage in de hero-achtergrond */
.hero-collage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  opacity: 0.22;
  overflow: hidden;
}

.hero-collage-row {
  overflow: hidden;
}

.hero-collage-track {
  display: flex;
  width: max-content;
  animation: collage-scroll 70s linear infinite;
}

.hero-collage-track img {
  width: 300px;
  height: 200px;
  margin-right: 18px;
  object-fit: cover;
  border-radius: 14px;
  filter: grayscale(0.25) contrast(1.05);
}

.hero-collage-row.reverse .hero-collage-track {
  animation-duration: 90s;
  animation-direction: reverse;
}

@keyframes collage-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Scrim zodat de tekst leesbaar blijft over de collage heen */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 43, 47, 0.96) 0%, rgba(38, 43, 47, 0.82) 40%, rgba(38, 43, 47, 0.45) 75%, rgba(26, 42, 58, 0.55) 100%),
    linear-gradient(to bottom, rgba(30, 34, 38, 0.6) 0%, transparent 25%, transparent 70%, rgba(26, 42, 58, 0.7) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-collage-track {
    animation: none;
  }
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--cyan), #00e5ff, var(--cyan-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
}


.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.hero-stat-card:hover {
  background: rgba(0, 212, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.15);
  transform: translateY(-4px);
}

.hero-stat-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 168, 204, 0.04));
  border-color: rgba(0, 212, 255, 0.12);
}

.hero-stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.hero-trust-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.hero-trust p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  max-width: unset;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

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

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}


/* ===== PAINT SPLASHES ===== */
.section {
  position: relative;
}

.section::before,
.section::after {
  pointer-events: none;
}

.paint-splash {
  position: relative;
  overflow: hidden;
}

.paint-splash::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  top: -40px;
  right: -60px;
  opacity: 0.06;
  pointer-events: none;
  background: url('../public/images/verfstreek.png') no-repeat center;
  background-size: contain;
  transform: rotate(-20deg);
}

.paint-splash::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  bottom: -30px;
  left: -40px;
  opacity: 0.04;
  pointer-events: none;
  background: url('../public/images/verfstreek.png') no-repeat center;
  background-size: contain;
  transform: rotate(160deg) scaleX(-1);
}

.paint-splash-alt::before {
  top: auto;
  bottom: -30px;
  right: auto;
  left: -40px;
  transform: rotate(30deg);
}

.paint-splash-alt::after {
  bottom: auto;
  top: -30px;
  left: auto;
  right: -50px;
  transform: rotate(-45deg) scaleX(-1);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-gray {
  background: var(--gray-light);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== SERVICES (Homepage) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 36px;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 168, 204, 0.04));
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: var(--transition);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 168, 204, 0.08));
  border-color: rgba(0, 212, 255, 0.2);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ===== WHY US ===== */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.why-card {
  position: relative;
  border-radius: 16px;
  padding: 40px 28px 36px;
  transition: var(--transition);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 2px 0;
}

.why-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 212, 255, 0.05);
}

.why-card:hover::before {
  width: 100%;
}

.why-card:hover::after {
  top: -30%;
  right: -30%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
}

.why-card-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), rgba(0, 212, 255, 0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.why-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cyan);
}

.why-card:hover .why-card-icon {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.25);
  transform: scale(1.08);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.why-card p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.why-card:hover p {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner h2 span {
  background: linear-gradient(135deg, var(--cyan), #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
  position: relative;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  padding: 16px 40px;
  font-size: 1rem;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.cta-banner .btn-primary:hover {
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.35);
}

/* ===== PROJECTS ===== */
.projects-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 24px;
  border-radius: 50px;
  border: 2px solid var(--gray-mid);
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  color: var(--text-light);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 212, 255, 0.05);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: none;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.project-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.project-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #2c3e50 0%, var(--dark) 50%, #1a2a3a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 168, 204, 0.04) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.project-image img,
.project-image video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image img,
.project-card:hover .project-image video {
  transform: scale(1.05);
}

/* Play-badge op projecten met video */
.project-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}

.project-play svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
  margin-left: 3px;
}

.project-card:hover .project-play {
  transform: translate(-50%, -50%) scale(1.12);
}

.project-image-icon {
  font-size: 2.2rem;
  opacity: 0.12;
  position: relative;
  z-index: 1;
}

.project-image .placeholder-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.project-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 212, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 2;
}

.project-info {
  padding: 24px 28px;
}

.project-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.project-info p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
}

.project-meta {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-mid);
}

.project-meta span {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--gray-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 500;
}

/* ===== PROJECT DETAIL ===== */
.project-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.project-gallery-main {
  border-radius: 16px;
  background: linear-gradient(135deg, #2c3e50 0%, var(--dark) 50%, #1a2a3a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

/*
 * Foto's zijn deels staand, deels liggend. Met een vast 16:10-kader en
 * object-fit:contain bleef er bij staande foto's lege ruimte over links en
 * rechts van de foto - precies waar de bladerpijltjes dan los in kwamen te
 * hangen. Door het kader exact rond de (geschaalde) foto te laten krimpen
 * i.p.v. een vaste doos te vullen, blijft er geen lege letterbox-ruimte over
 * en sluiten de pijltjes altijd mooi aan op de echte fotorand.
 */
.project-gallery-main:not(.is-video) {
  width: fit-content;
  max-width: 100%;
  max-height: 640px;
}

.project-gallery-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
}

.project-gallery-main img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 640px;
}

.project-gallery-main video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.project-gallery-main.is-video {
  width: 100%;
  aspect-ratio: 16/9;
}

/*
 * Sleepbare/swipebare strook van steeds 3 zichtbare thumbnails, op elk
 * schermformaat (was eerst een grid met alle thumbnails op desktop, maar dat
 * geeft bij veel foto's een lange, rommelige rij - dit oogt rustiger en werkt
 * hetzelfde als op mobiel).
 */
.project-gallery-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.project-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.project-gallery-thumbs {
  scrollbar-width: none;
}

.project-thumb {
  flex: 0 0 calc((100% - 24px) / 3);
  scroll-snap-align: start;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #2c3e50, var(--dark));
  border: none;
  padding: 0;
  display: block;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-thumb:hover img {
  transform: scale(1.08);
}

.project-thumb.active {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* Badge "+N" op de laatst zichtbare thumbnail in de sleepbalk - geeft aan
   hoeveel foto's nog verborgen zitten. */
.project-thumb-more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 24, 28, 0.62);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  pointer-events: none;
}

.project-gallery-hint {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.project-gallery-hint-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-gallery-hint svg {
  width: 15px;
  height: 15px;
  stroke: var(--cyan-dark);
  fill: none;
  stroke-width: 1.6;
}

/* Prev/next-knoppen op de hoofdfoto zelf, waarmee je door alle foto's kunt
   bladeren zonder de thumbnails aan te raken. */
.project-gallery-main-prev,
.project-gallery-main-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(20, 24, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.project-gallery-main-prev svg,
.project-gallery-main-next svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-gallery-main-prev { left: 16px; }
.project-gallery-main-next { right: 16px; }

.project-gallery-main-prev:hover,
.project-gallery-main-next:hover {
  background: rgba(0, 212, 255, 0.85);
  border-color: rgba(0, 212, 255, 0.9);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 22px rgba(0, 212, 255, 0.35);
}

.project-gallery-main-prev:active,
.project-gallery-main-next:active {
  transform: translateY(-50%) scale(0.96);
}

@media (max-width: 480px) {
  .project-gallery-main-prev,
  .project-gallery-main-next {
    width: 38px;
    height: 38px;
  }

  .project-gallery-main-prev svg,
  .project-gallery-main-next svg {
    width: 16px;
    height: 16px;
  }
}

/* Opsomming van uitgevoerde werkzaamheden */
.project-detail-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.project-detail-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.7;
}

.project-detail-list li strong {
  color: var(--text);
  font-weight: 600;
}

.project-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.35);
}

.project-detail-list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan-dark);
}

.project-detail-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-detail-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.project-detail-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.project-tag-inline {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15);
  color: var(--cyan-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-mid);
}

.spec-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.spec-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 168, 204, 0.04));
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--cyan);
}

.spec-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.spec-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.project-back {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-mid);
}

@media (max-width: 768px) {
  .project-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .project-detail-specs {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 86vw;
  max-height: 84vh;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 86vw;
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-placeholder {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  font-family: inherit;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
}

.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== ABOUT PAGE ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-split-text h2 {
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-split-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-split-image {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: linear-gradient(135deg, #2c3e50 0%, var(--dark) 50%, #1a2a3a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-split-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 168, 204, 0.04) 0%, transparent 50%);
}

.about-split-image .placeholder-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.about-split-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.value-icon {
  width: 72px;
  height: 72px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--cyan);
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.value-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* History bar */
.history-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.history-item {
  padding: 0 24px;
  position: relative;
}

.history-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.history-dot {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}

.history-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.history-item p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .history-bar {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .history-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 28px;
  }
}

/* Team row layout */
.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-member {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px 28px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.team-member-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 168, 204, 0.04));
  border: 1px solid rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.team-member-icon svg {
  width: 24px;
  height: 24px;
}

.team-member-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-member-info .role {
  display: block;
  color: var(--cyan-dark);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.team-member-info p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .team-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 36px;
  color: var(--text);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-card > p {
  color: var(--text-light);
  margin-bottom: 36px;
  font-size: 0.9rem;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 168, 204, 0.04));
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--cyan);
}

.contact-detail-text h4 {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-detail-text p,
.contact-detail-text a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
}

.contact-detail-text a:hover {
  color: var(--cyan-dark);
}

.contact-hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-mid);
}

.contact-hours h4 {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--cyan-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.88rem;
}

.hours-row span:first-child {
  color: var(--text-light);
}

.hours-row span:last-child {
  font-weight: 600;
  color: var(--text);
}

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 36px;
  border: none;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.contact-form-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-card > p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 0.9rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--gray-mid);
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--gray-light);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  margin-top: 8px;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, #2a2f33 0%, var(--dark) 40%, #2c3e50 70%, #1a2a3a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 40%, rgba(0, 212, 255, 0.07) 0%, transparent 70%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 500px;
  margin: 0 auto;
}

.page-hero-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
  margin: 24px auto 0;
  border-radius: 2px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--cyan);
  transition: var(--transition);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: #1e2226;
  padding: 0;
  color: var(--white);
  position: relative;
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark), transparent);
}

.footer-main {
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
}

.footer-about .nav-logo {
  margin-bottom: 20px;
}

.footer-about .nav-logo img {
  width: 220px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  padding: 7px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.footer-contact-item .icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 0.85rem;
}

.footer-contact-item p,
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.2);
}

.footer-social a:hover svg {
  fill: var(--cyan);
}

.credit-divider {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 4px;
}

.credit-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

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

.credit-icon {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.credit-link:hover .credit-icon {
  transform: rotate(360deg);
}

.credit-text {
  position: relative;
}

.credit-default,
.credit-hover {
  transition: opacity 0.3s ease;
}

.credit-hover {
  position: absolute;
  left: 0;
  opacity: 0;
  white-space: nowrap;
}

.credit-link:hover .credit-default {
  opacity: 0;
}

.credit-link:hover .credit-hover {
  opacity: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.85rem;
}

.testimonial-author-info h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== GOOGLE REVIEWS ===== */
.reviews-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
}

.reviews-summary {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.07), rgba(0, 168, 204, 0.03));
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}

.reviews-summary .google-mark {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
}

.reviews-score {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan), #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reviews-summary .testimonial-stars {
  margin: 10px 0 6px;
}

.reviews-summary p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 22px;
}

.reviews-summary .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.85rem;
}

.reviews-rail-wrap {
  position: relative;
  min-width: 0;
}

.reviews-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.reviews-rail::-webkit-scrollbar {
  display: none;
}

.reviews-rail {
  scrollbar-width: none;
}

.reviews-rail .testimonial-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.reviews-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
}

.reviews-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.1rem;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.reviews-nav button:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.35);
}

@media (max-width: 900px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .reviews-rail .testimonial-card {
    flex: 0 0 85%;
  }

  .reviews-nav {
    display: none;
  }
}

/*
 * Samenvattingsbalk bovenaan de losse reviews-pagina: een horizontale strook
 * i.p.v. de smalle, vierkante kaart die naast de rail op de homepage staat.
 * Die kaart oogde hier als een losse, willekeurig geplaatste doos in een
 * verder lege ruimte - een balk over de volle breedte leest duidelijker als
 * een samenvattingsregel boven de lijst met reviews.
 */
.reviews-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.reviews-summary-bar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.reviews-summary-bar .google-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.reviews-summary-bar-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
}

.reviews-summary-bar-score .testimonial-stars {
  font-size: 0.85rem;
}

.reviews-summary-bar-left p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 2px;
}

.reviews-summary-bar .btn {
  flex-shrink: 0;
  padding: 12px 24px;
  font-size: 0.88rem;
}

@media (max-width: 600px) {
  .reviews-summary-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px 24px;
  }

  .reviews-summary-bar-left {
    flex-direction: column;
  }

  .reviews-summary-bar .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Volledig overzicht van reviews: gewone grid die op mobiel netjes onder
   elkaar stapelt (in tegenstelling tot .testimonials-grid, die op de
   homepage bewust een horizontaal scrollende rail wordt). */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/*
 * De reviews-pagina (.reviews-page) gebruikt een lichte achtergrond, zoals
 * elke andere overzichtspagina (Projecten, Contact) na de donkere page-hero -
 * anders staan er twee donkere vlakken direct achter elkaar. De testimonial-
 * kaart en summary-kaart zijn origineel voor een donkere achtergrond
 * ontworpen (witte tekst); hier krijgen ze daarom een lichte kaartstijl.
 */
.reviews-page .testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow);
}

.reviews-page .testimonial-card blockquote {
  color: var(--text);
}

.reviews-page .testimonial-author-info h5 {
  color: var(--text);
}

.reviews-page .testimonial-author-info p {
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SPECIALISMEN ===== */
.specialismen {
  margin-top: 44px;
  text-align: center;
}

.specialismen h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.specialismen-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.specialismen-list span {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  padding: 44px 28px;
  border: none;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.team-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 168, 204, 0.04));
  border: 1px solid rgba(0, 212, 255, 0.1);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  transition: var(--transition);
}

.team-icon svg {
  width: 32px;
  height: 32px;
}

.team-card:hover .team-icon {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 168, 204, 0.08));
  border-color: rgba(0, 212, 255, 0.2);
  transform: scale(1.05);
}

.team-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-card .role {
  color: var(--cyan-dark);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stat-card.featured {
    grid-column: span 1;
  }

  .services-grid,
  .projects-grid,
  .testimonials-grid,
  .values-grid,
  .team-grid,
  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .team-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, #1e2226 0%, #2a2f33 40%, #1a2a3a 100%);
    flex-direction: column;
    padding: 120px 40px 40px;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
    z-index: -1; /* zit binnen .navbar's eigen stacking context (z-index 1000), dus dit blijft boven de rest van de pagina */
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--white);
    background: none;
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-cta {
    margin-top: 24px;
    width: 100%;
    text-align: center;
    padding: 18px 24px !important;
    font-size: 1.1rem !important;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-scroll {
    display: none;
  }

  .hero-right {
    display: none;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
  }

  .hero-collage {
    opacity: 0.16;
  }

  .hero-collage-track img {
    width: 190px;
    height: 130px;
    margin-right: 12px;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(38, 43, 47, 0.92) 0%, rgba(38, 43, 47, 0.8) 60%, rgba(26, 42, 58, 0.85) 100%);
  }

  .services-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .why-cards-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
  }

  .why-cards-grid::-webkit-scrollbar {
    display: none;
  }

  .why-cards-grid .why-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }

  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonials-grid .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .projects-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
  }

  .projects-grid::-webkit-scrollbar {
    display: none;
  }

  .projects-grid .project-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .page-hero {
    padding: 130px 0 60px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 28px 20px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
  }

  .btn {
    justify-content: center;
  }

  .about-split-image {
    aspect-ratio: 16/9;
  }

  .history-bar {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }

  .history-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 24px;
  }

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

  .team-member {
    padding: 24px 20px;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .footer-about .nav-logo img {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .nav-logo img {
    width: 240px;
    margin-left: -28px;
  }

  .hero {
    padding: 120px 0 50px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .page-hero {
    padding: 120px 0 50px;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 16px;
  }

  .why-card,
  .service-card {
    padding: 28px 20px;
  }

  .project-info {
    padding: 20px;
  }
}
