@charset "utf-8";
/* CSS Document */

/* --- LICHT THEMA VARIABELEN --- */
:root {
  --bg-main: #e5e9f2;
  --bg-alt: #ffffff;
  --bg-card: #ffffff;
  --accent: #ff6600;
  --accent-soft: rgba(255, 102, 0, 0.18);
--accent-blue: #2563eb; /* NIEUW: zachte maar duidelijke blauwtoon */
  --text-main: #000000;
  --text-muted: #333a45;
  --border-soft: #e2e6ee;
  --danger: #ff3366;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1120px;
  --transition-fast: 0.18s ease-out;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.15);
  --radius-lg: 18px;
  --radius-pill: 999px;
}

/* Reset / basis */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background: var(--bg-main); /* LICHT ipv donkere gradient */
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

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

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

/* Layout helpers */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

@media (min-width: 900px) {
  section {
    padding: 5rem 0;
  }
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 0.75rem;
  letter-spacing: 0.03em;
}

/* Alle sectietitels + hero-title compacter op mobiel */
@media (max-width: 600px) {
  .section-title,
  .hero-title {
    font-size: 1.35rem;
    line-height: 1.25;
  }
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-intro {
  max-width: 28rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Header / Nav */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);

  /* NIEUW: dieper zwartblauw + subtiel glansje */
  background: linear-gradient(
    to bottom,
    rgba(8, 12, 22, 0.95),
    rgba(12, 18, 32, 0.94) 55%,
    rgba(16, 24, 42, 0.96)
  );

  border-bottom: 1px solid rgba(255, 102, 0, 0.22); /* zacht oranje accent */

  /* luxe schaduw die het laat zweven */
  box-shadow:
    0 1px 0 rgba(255,255,255,0.03) inset,
    0 18px 45px rgba(0,0,0,0.45);
}




.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.nav-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.1rem;
}

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

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-tagline {
  display: block;
  font-size: 0.78rem;
  color: rgba(249, 250, 251, 0.7); /* lichtere tekst op donkere header */
}


.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: rgba(249, 250, 251, 0.9); /* licht */
  position: relative;
  padding-bottom: 0.15rem;
}


.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform-origin: center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--danger));
  transition: transform var(--transition-fast);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta-desktop {
  display: none;
  gap: 0.75rem;
  align-items: center;
}

.nav-cta-desktop .btn-outline {
  padding-inline: 1rem;
  font-size: 0.85rem;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .nav-cta-desktop {
    display: flex;
  }
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55); /* NEUTRAAL ipv fel blauw */
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
}

@media (max-width: 899px) {
  .nav-toggle {
    display: inline-flex;
  }
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f9fafb;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f9fafb;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}



.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle.open span {
  background: transparent;
}

.nav-toggle.open span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  padding-bottom: 0.75rem;
  background: linear-gradient(to bottom, #020617, #020617);
  border-top: 1px solid rgba(30, 41, 59, 0.9);
}


.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.nav-mobile-links a {
  color: rgba(249, 250, 251, 0.9);
}


.nav-mobile-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

header .btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  background: transparent;
  color: #e5e7eb;
}

header .btn-outline:hover {
  border-color: var(--accent);
  background: rgba(148, 163, 184, 0.2);
  box-shadow: 0 0 0 1px var(--accent-soft);
}


@media (max-width: 899px) {
  .nav-mobile-menu.open {
    display: block;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.2rem;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-fast), transform var(--transition-fast),
    box-shadow var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: radial-gradient(circle at top left, var(--accent), #cc5200);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 102, 0, 0.25), 0 12px 30px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 102, 0, 0.4), 0 16px 40px rgba(0, 0, 0, 0.22);
}

.btn-outline {
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.9);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--bg-alt);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

.btn-ghost {
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--accent);
}

.btn-small {
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;

  background-image: url("images/escape-room-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  min-height: 50vh;
  padding: 0;
}

@media (max-width: 768px) {
  .hero {
    min-height: 40vh;
    background-image: url("images/escape-room-bg-mobile.jpg");
    background-position: center top;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero::before {
    background: radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.45) 50%,
      rgba(0, 0, 0, 0.1) 100%
    );
  }
}


.hero-quote {
  padding-top: 30vh;
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  padding: 35vh 1rem 2rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

/* Content onder hero-beeld */

.hero-content {
  padding: 2.75rem 0 3.5rem;
  background: var(--bg-main); /* LICHT ipv #05070a */
}

.hero-content .hero-subtitle {
  color: var(--text-main);
}

.hero-inner {
  display: grid;
  gap: 2.2rem;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 0.9fr;
    align-items: center;
  }

  .hero-main {
    padding-right: 2rem;
  }

  .hero-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 2rem;
  line-height: 1.12;
  margin: 0 0 0.75rem;
}

@media (min-width: 600px) {
  .hero-title {
    font-size: 2.3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.7rem;
  }
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-badge {
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--danger));
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.7);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.hero-extra {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

/* Rotary / hero-card */

.hero-card {
  border-radius: 26px;
  padding: 1.1rem 1.1rem 1.25rem;

  background: radial-gradient(
    circle at 0 0,
    rgba(255, 102, 0, 0.48), /* was 0.28 → nu dieper */
    #ffffff
  );

  border: 1px solid rgba(255, 102, 0, 0.55); /* was 0.35 → iets steviger */

  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.28);

  position: relative;
  overflow: hidden;
}


.hero-card-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--accent-soft);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.hero-card-main {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 0.75rem;
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: stretch;
}

.hero-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%, var(--accent-soft), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-card-main-left {
  flex: 1.2;
  position: relative;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
}

.hero-card-main-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.hero-card-main-right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Maakt het beeld intenser */
  filter: contrast(1.18) saturate(1.12) brightness(1.03);
  transform: scale(1.03);

  transition:
    transform var(--transition-fast),
    filter var(--transition-fast);
}

/* Kleine hover-boost voor extra “wow” bij muisbeweging */
.hero-card:hover .hero-card-main-right img {
  transform: scale(1.06);
  filter: contrast(1.25) saturate(1.18) brightness(1.04);
}


.hero-card-main-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 0, rgba(255, 255, 255, 0.15), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  mix-blend-mode: screen;
}


.hero-strip {
  position: absolute;
  inset: 12% -10% auto;
  height: 40%;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 35%),
    repeating-linear-gradient(
      -60deg,
      rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0.08) 1px,
      transparent 1px,
      transparent 6px
    );
  opacity: 0.15;
  transform: skewX(-12deg);
  pointer-events: none;
}

.hero-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.hero-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.hero-card-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
}

.hero-card-kpi {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-muted);
}

.hero-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-card-foot-pill {
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.9);
}

.hero-card-foot-score {
  font-weight: 600;
  color: var(--accent);
}

.hero-card-minirow {
  display: flex;
  gap: 0.75rem;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.hero-card-mini {
  flex: 1;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  padding: 0.45rem 0.6rem;
  background: rgba(255, 255, 255, 0.95);
}

.hero-card-mini strong {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.1rem;
  color: var(--text-main);
}

.hero-card-highlight {
  font-size: 0.72rem; /* net kleiner */
  line-height: 1.3;
  color: var(--text-muted); /* iets subtieler */
  margin-bottom: 0.45rem;
  display: block;
}


/* Stats: 'In het kort' + Rotary naast elkaar */

.stats-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .stats-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: stretch;
  }
}

.stats-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.stat-card { border-radius: var(--radius-lg); padding: 1rem; font-size: 0.9rem; /* Licht blauw-wit verloop */ background: linear-gradient( 135deg, rgba(37, 99, 235, 0.08), #ffffff ); border: 1px solid rgba(37, 99, 235, 0.25); box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12); } 

.stat-value {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
  color: var(--accent); /* oranje */
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.stat-extra {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* Services */

.services {
  background: var(--bg-alt); /* licht blok */
}

.services-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 800px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(255, 102, 0, 0.32), transparent 60%),
    linear-gradient(135deg, rgba(255, 102, 0, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  pointer-events: none;
  transform: scale(1);
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1.02); /* heel lichte “pop” */
}


.service-card:hover::before {
  opacity: 1;
}
.service-card:hover .service-title {
  color: var(--accent);
}

.service-pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.service-title {
  font-size: 1rem;
  margin: 0.15rem 0;
}

.service-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-foot {
  font-size: 0.8rem;
  margin-top: 0.4rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

/* --- Service popup (overlay) --- */

.service-card {
  cursor: pointer; /* alleen visuele hint dat ze klikbaar zijn */
}

/* Donkere achtergrond over de pagina */
.service-modal-backdrop {
  position: fixed;
  inset: 0;
   background: rgba(15, 23, 42, 0.9);
  display: none; /* standaard onzichtbaar */
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  z-index: 80;
}

/* Klasse 'open' gaan we straks met JS toevoegen */
.service-modal-backdrop.open {
  display: flex;
}

/* De kaart zelf */
.service-modal {
  max-width: 520px;
  width: 100%;
  border-radius: 24px;
 background: var(--bg-card);
  border: 1px solid rgba(255, 102, 0, 0.4);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.service-modal-content {
  padding: 1.5rem 1.4rem 1.25rem;
}

.service-modal h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.service-modal p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.service-modal ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.88rem;
   color: var(--text-main);
}

.service-modal li + li {
  margin-top: 0.25rem;
}

.service-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-modal-close {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
}




/* Portfolio */

.portfolio {
  background: var(--bg-main);
}

.portfolio-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

@media (min-width: 800px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 210px;

  /* Lichte kaart als basis */
  background: var(--bg-card);
  border: 1px solid rgba(15, 23, 42, 0.18);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.22);
}


.project-content {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;

  /* Donkerblauwe tint, maar iets minder “teerbekken” */
  background: linear-gradient(
    135deg,
    #0f172a,
    #1d2a3f
  );
  color: #e5e7eb;
}



.project-media {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 16/9;
}


.project-name {
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff; /* titel echt wit */
}

.project-meta {
  font-size: 0.78rem;
  color: rgba(226, 232, 240, 0.9); /* licht grijs/blauw */
}

.project-score {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent); /* oranje zoals nu */
}

.project-links {
  margin-top: 0.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.chip {
  font-size: 0.74rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.9);

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.chip-accent {
  border-color: rgba(255, 102, 0, 0.95);
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(255, 102, 0, 0.9),
    rgba(255, 159, 64, 0.95)
  );
}



/* Process */

.process {
  background: var(--bg-alt);
}

.process-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.step-card {
  border-radius: var(--radius-lg);
  padding: 0.9rem;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}

/* Nieuwe layout voor werkwijze-kaarten */

.step-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}


.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: radial-gradient(circle at top left, var(--accent-soft), #ffffff);
  border: 1px solid rgba(255, 102, 0, 0.35);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
  flex-shrink: 0;
}

.step-meta {
  flex: 1;
  min-width: 0;
}

.step-number {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.1rem;
}

.step-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0;
}

.step-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(248, 250, 252, 0.95);
  color: var(--text-muted);
}

.step-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Kleine hover-boost */
.step-card {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
  border-color: rgba(255, 102, 0, 0.35);
}


.step-number {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.step-title {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.step-body {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -40%;
  height: 40%;
  background: linear-gradient(120deg, var(--accent-soft), transparent);
  opacity: 0.4;
  pointer-events: none;
}

/* About */

.about {
  background: var(--bg-main);
}

.about-inner {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .about-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: center;
  }
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.9rem;
  font-size: 0.85rem;
}

.about-chip {
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  padding: 0.3rem 0.75rem;
  color: var(--text-muted);
}

.about-media {
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at 0 0, var(--accent-soft), var(--bg-card));
  padding: 1rem;
  min-height: 180px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 10% 5% auto;
  height: 40%;
  border-radius: 999px;
  border: 1px dashed rgba(164, 175, 196, 0.32);
  opacity: 0.7;
}

.about-media h3 {
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
}

/* Contact CTA */

.contact-cta {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-soft);
}

.contact-box {
  border-radius: 24px;
  background: radial-gradient(circle at top left, var(--accent-soft), var(--bg-card));
  border: 1px solid rgba(255, 102, 0, 0.35);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 800px) {
  .contact-box {
    padding: 1.8rem 2.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
  }
}

.contact-text h2 {
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}

.contact-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* knoppen: Bel / Mail / WhatsApp in één rij, ook mobiel */
.contact-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.contact-actions .btn {
  flex: 1 1 0;
  justify-content: center;
  text-align: center;
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
}

/* Footer */

footer {
  border-top: 1px solid var(--border-soft);
  padding: 1.5rem 0 2.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-alt);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Alleen op mobiel: foto's iets oplichten */
@media (max-width: 768px) {
  img {
    filter: brightness(1.18) contrast(1.03);
  }

  /* Logo in de header NIET aanpassen */
  .nav-logo img {
    filter: none;
  }
}
@media (max-width: 768px) {
  .hero-card-main-right img {
    filter: contrast(1.05) saturate(1.05) brightness(1.7);
  }

  .project-media {
    filter: brightness(1.7) contrast(1.05);
  }
}

