/* ── LEGAL PAGES (PP / TOS) ─────────────────── */
.legal-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 80px 24px 120px;
  box-sizing: border-box;
}

.legal-inner {
  width: min(720px, 100%);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.legal-inner h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: -1.5px;
  color: #fff;
  margin: 0 0 12px;
}

.legal-inner .legal-meta {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin: 0 0 56px;
}

.legal-inner h2 {
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 48px 0 12px;
  letter-spacing: -0.3px;
}

.legal-inner p {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin: 0 0 14px;
}

.legal-inner a {
  color: #2D7DD2;
  text-decoration: none;
}

.legal-inner a:hover { text-decoration: underline; }

.legal-inner ul {
  margin: 0 0 14px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-inner ul li {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}

.legal-footer-note {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── PAGE HERO ───────────────────────────────── */
.page-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(70, 70, 80, 0.50) 0%,
    rgba(40, 40, 45, 0.20) 50%,
    transparent 72%
  );
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D7DD2;
  margin-bottom: 24px;
}

.page-hero-heading {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1.05;
  color: #fff;
  font-style: normal;
  margin-bottom: 28px;
  max-width: 860px;
}

.page-hero-heading em {
  font-style: normal;
}

.page-hero-sub {
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
}

.page-hero-cta {
  display: inline-flex;
  align-items: center;
  background: #2D7DD2;
  color: #fff;
  text-decoration: none;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 999px;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.page-hero-cta:hover {
  background: #3a8de0;
  box-shadow: 0 0 24px rgba(45,125,210,0.45);
}

/* ── SERVICE SECTIES ─────────────────────────── */
.service-section {
  width: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.service-section.alt-bg {
  background: linear-gradient(180deg,
    #080809 0%,
    #141418 18%,
    #1c1c22 50%,
    #141418 82%,
    #080809 100%
  );
}

.service-inner {
  width: 60vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-inner.reverse { direction: rtl; }
.service-inner.reverse > * { direction: ltr; }

.service-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  text-align: left;
}

.service-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D7DD2;
}

.service-heading {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  color: #fff;
}

.service-heading em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #2D7DD2;
}

.service-desc {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #fff;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2D7DD2;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 999px;
  width: fit-content;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.service-link:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.4);
}

/* ── VISUEEL BLOK ────────────────────────────── */
.service-visual {
  aspect-ratio: unset;
  align-self: center;
  height: auto;
  max-height: 420px;
  min-height: unset;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-visual::before {
  display: none;
}

.service-visual svg {
  width: 64px;
  height: 64px;
  stroke: rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(22,24,30,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 16px;
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  z-index: 2;
}

/* ── PERFORMANCE: backdrop-filter uit op mobiel ── */
@media (max-width: 768px) {
  .visual-tag {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(22,24,30,0.96);
  }
}

.visual-tag strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

/* ── PAGE CTA ────────────────────────────────── */
.page-cta {
  width: 60vw;
  margin: 0 auto;
  padding: 160px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  position: relative;
  overflow: visible;
}

.page-cta::before {
  content: '';
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(180, 225, 255, 0.30) 30%,
    rgba(126, 200, 227, 0.12) 55%,
    transparent 72%
  );
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.page-cta > * { position: relative; z-index: 1; }

.page-cta-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2D7DD2;
}

.page-cta-heading {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -2px;
}

.page-cta-heading em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #2D7DD2;
}

.page-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #2D7DD2;
  color: #fff;
  text-decoration: none;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 999px;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.page-cta-btn:hover {
  background: #3a8de0;
  box-shadow: 0 0 40px rgba(45,125,210,0.55);
}

/* ── OVER ONS — VERHAAL VISUAL ───────────────── */
.about-photo {
  aspect-ratio: 4/3;
  max-height: 380px;
  border-radius: 24px;
  margin-top: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%,
    rgba(45,125,210,0.12) 0%,
    transparent 70%
  );
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.about-photo-placeholder-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-photo-placeholder-inner svg {
  width: 64px;
  height: 64px;
  stroke: rgba(255,255,255,0.15);
}

.about-photo-placeholder-inner p {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ── TEAM SECTIE ─────────────────────────────── */
.team-section {
  width: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.team-inner {
  width: 60vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D7DD2;
  margin-bottom: 16px;
}

.team-heading {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.team-heading em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.team-sub {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 64px;
}

.team-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
  transition: background 0.2s ease;
}

.team-card:hover {
  background: rgba(255,255,255,0.07);
}

.team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.12);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-photo--empty {
  background-color: #15171d;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.07) 0px,
    rgba(255,255,255,0.07) 1px,
    transparent 1px,
    transparent 10px
  );
}

.team-name {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 6px;
}

.team-role {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

.team-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #a0c4ff;
  background: rgba(45, 125, 210, 0.18);
  border: 1px solid rgba(45, 125, 210, 0.35);
}

.team-card--join {
  position: relative;
  overflow: hidden;
  justify-content: center;
  text-align: center;
  min-height: 262px;
  background: linear-gradient(135deg,
    #080c14 0%,
    #0d1e38 40%,
    #1a4a7a 75%,
    #2D7DD2 100%
  );
  border-color: rgba(126,200,227,0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-card--join:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(71,159,248,0.3);
  border-color: rgba(71,159,248,0.7);
}

.team-card--join::after {
  content: '';
  position: absolute;
  bottom: -12%;
  right: -7%;
  width: 68%;
  height: 128%;
  background-image: url('../images/junlogy/icon-white.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  opacity: 0.12;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.team-card--join:hover::after {
  opacity: 0.22;
}

.team-join-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
}

.team-card--join .team-name,
.team-card--join .team-role {
  position: relative;
  z-index: 1;
  color: #fff;
}

.team-join-arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.team-card--join:hover .team-join-arrow {
  transform: translateX(4px);
}

.team-photo--join {
  background-color: rgba(255,255,255,0.08);
  background-image: none;
}

/* ── VACATURES SECTIE ────────────────────────── */
.vacatures-section {
  width: 100%;
  padding: 0 0 120px;
  margin-top: -100px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.vacatures-inner {
  width: 60vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vacatures-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 0;
  text-align: left;
}

.vacature-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.vacature-card:hover { transform: translateY(-4px); }

.vacature-thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c111b;
}

/* achtergrond: donker → blauw gradient + grote logo watermark */
.vacature-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    #080c14 0%,
    #0d1e38 40%,
    #1a4a7a 75%,
    #2D7DD2 100%
  );
}

.vacature-thumb::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -6%;
  width: 70%;
  height: 130%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='%23ffffff'%3E%3Cpath d='M13 2L4.5 13.5H11L10 22L20 10H13.5L13 2Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  opacity: 0.08;
}

.vacature-title {
  position: relative;
  z-index: 1;
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  text-align: center;
  padding: 0 24px;
}

.vacature-meta {
  padding: 20px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vacature-meta-name {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.vacature-meta-type {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

/* FORCE-OVERRIDE: page text white and team join card */
.page-nav .nav-logo {
  width: 36px !important;
  height: 36px !important;
  justify-content: center;
}

.page-nav .nav-links a,
.page-hero-sub,
.service-desc,
.service-features li,
.team-sub,
.team-role,
.vacature-meta-type {
  color: #fff !important;
}

.team-card {
  text-decoration: none;
}

/* nav handled by nav.css */

/* ── desktop: verberg nav-small, toon nav-big ── */
@media (min-width: 1025px) {
  .nav-small { display: none !important; }

  /* nav-big staat statisch op subpagina's — geen animatie */
  .nav-big {
    clip-path: none !important;
    transition: none !important;
  }
  .nav-big .nav-logo,
  .nav-big .nav-links a,
  .nav-big .nav-cta {
    opacity: 1 !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
}

/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  /* Page hero */
  .page-hero {
    padding: 120px 20px 40px;
    min-height: unset;
  }
  .page-hero::before {
    display: none;
  }
  .page-hero-heading {
    font-size: clamp(36px, 9vw, 60px);
    letter-spacing: -1px;
  }
  .page-hero-sub {
    font-size: 15px;
  }

  /* Service tekst: mobiel gecentreerd */
  .service-text {
    align-items: center;
    text-align: center;
  }

  /* Service secties: naast elkaar → onder elkaar */
  .service-inner {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-inner.reverse { direction: ltr; }
  .service-text {
    align-items: center;
    text-align: left;
  }
  .service-label {
    align-self: center;
    text-align: center;
    width: 100%;
  }
  .service-heading {
    text-align: center;
  }
  .service-features {
    align-self: flex-start;
    width: 100%;
  }
  .service-visual {
    min-height: 240px;
  }
  .service-section {
    padding: 60px 0;
  }

  /* Team grid: 3 → 1 kolom */
  .team-inner,
  .vacatures-inner {
    width: calc(100% - 40px);
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card--join {
    grid-column: 1;
  }
  .team-section {
    padding: 60px 0;
  }
  .team-heading {
    font-size: clamp(28px, 7vw, 48px);
  }

  /* Vacatures grid: 2 → 1 kolom */
  .vacatures-grid {
    grid-template-columns: 1fr;
  }
  .vacatures-section {
    padding: 0 0 60px;
  }

  /* Page CTA */
  .page-cta {
    width: calc(100% - 48px);
    padding: 80px 0 0;
    margin-bottom: 80px;
  }
  .page-cta-heading {
    font-size: clamp(28px, 7vw, 48px);
    letter-spacing: -1px;
  }
  .page-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

.team-card--join {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
    #080c14 0%,
    #0d1e38 40%,
    #1a4a7a 75%,
    #2D7DD2 100%
  ) !important;
  border-color: rgba(126,200,227,0.35) !important;
}

.team-card--join::after {
  content: '';
  position: absolute;
  bottom: -12%;
  right: -7%;
  width: 68%;
  height: 128%;
  background-image: url('../images/junlogy/icon-white.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  opacity: 0.12;
  pointer-events: none;
}

.team-card--join .team-name,
.team-card--join .team-role {
  position: relative;
  z-index: 1;
  color: #fff !important;
}

.team-photo--join {
  background-color: rgba(255,255,255,0.08) !important;
  background-image: none !important;
}
