/* =========================================================
   ISA SCHENKEVELD -- SURPLUS SOLLICITATIE APP
   Apple HIG-geinspireerde styling, zorg-innovatie thema
   ========================================================= */

:root {
  /* Kleuren */
  --bg: #fbfcfe;
  --bg-muted: #f1f5f9;
  --bg-dark: #0f2433;
  --ink: #0e1f2c;
  --ink-soft: #3b5668;
  --ink-mute: #6b8096;
  --line: rgba(15, 36, 51, 0.08);

  --brand: #1e5f8e;
  --brand-deep: #113f60;
  --brand-soft: #dbeaf3;
  --accent: #3ea896;
  --accent-soft: #d7ede8;
  --highlight: #ffb86b;

  /* Typografie */
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Ruimte */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(15, 36, 51, 0.04), 0 2px 8px rgba(15, 36, 51, 0.04);
  --shadow: 0 4px 14px rgba(15, 36, 51, 0.06), 0 10px 30px rgba(15, 36, 51, 0.06);
  --shadow-lg: 0 10px 40px rgba(15, 36, 51, 0.12);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--brand-deep); }

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

strong { font-weight: 600; }

::selection { background: var(--brand-soft); color: var(--brand-deep); }

/* =========================================================
   NAVIGATIE
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(251, 252, 254, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav.scrolled {
  border-bottom-color: var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.nav-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 3px rgba(30, 95, 142, 0.08);
}

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

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
}

.nav-links a:hover { color: var(--ink); }

.nav-links .nav-cta {
  background: var(--ink);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 500;
}
.nav-links .nav-cta:hover { background: var(--brand); color: white; }

@media (max-width: 760px) {
  .nav { padding: 12px 18px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

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

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #6ec5e9, transparent 70%);
  top: -150px; left: -120px;
}
.orb-2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, #9ad9ca, transparent 70%);
  top: 20%; right: -140px;
  animation-delay: -7s;
}
.orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #ffd8a8, transparent 70%);
  bottom: -120px; left: 30%;
  animation-delay: -13s;
  opacity: 0.4;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  width: 100%;
  text-align: left;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero-title span { display: block; }
.hero-title .accent {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1rem;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--brand); color: white; box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: white;
  border-color: var(--ink-mute);
  color: var(--ink);
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--ink-mute), transparent);
  animation: scroll-hint 1.8s var(--ease) infinite;
}
@keyframes scroll-hint {
  0% { transform: scaleY(0.3); transform-origin: top; opacity: 0.3; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; transform: scaleY(0); opacity: 0; }
}

@media (max-width: 760px) {
  .hero-scroll { display: none; }
}

/* Reveal animations (initial state) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   SECTIES ALGEMEEN
   ========================================================= */
.section {
  padding: 100px 32px;
  position: relative;
}
.section-muted { background: var(--bg-muted); }
.section-dark {
  background: linear-gradient(180deg, #0f2433 0%, #14364b 100%);
  color: white;
}
.section-dark h2, .section-dark h3 { color: white; }
.on-dark { color: white; }

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--accent); }

.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 720px;
}
.section-lead { margin-bottom: 48px; }
.on-dark.lead { color: rgba(255, 255, 255, 0.82); }

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-media { max-width: 280px; }
}

.portrait {
  position: relative;
}
.portrait img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.portrait-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.portrait-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.pill {
  padding: 7px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* =========================================================
   STATS
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr; }
}
.stat {
  background: white;
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* =========================================================
   TIJDLIJN
   ========================================================= */
.timeline {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--line) 60px, var(--line) calc(100% - 60px), transparent);
  transform: translateX(-1px);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}
.timeline-item[data-side="right"] {
  left: 50%;
}
.timeline-item[data-side="left"] {
  text-align: right;
}

.timeline-dot {
  position: absolute;
  top: 36px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--brand);
  box-shadow: 0 0 0 5px rgba(30, 95, 142, 0.08);
  z-index: 1;
}
.timeline-item[data-side="right"] .timeline-dot { left: -8px; }
.timeline-item[data-side="left"] .timeline-dot { right: -8px; }

.timeline-card {
  background: white;
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.timeline-date {
  font-size: 0.82rem;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.timeline-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 12px;
  line-height: 1.55;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.timeline-item[data-side="left"] .timeline-tags {
  justify-content: flex-end;
}
.timeline-tags span {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  border-radius: 999px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item[data-side="right"] {
    width: 100%;
    left: 0;
    padding: 14px 0 14px 48px;
    text-align: left;
  }
  .timeline-item[data-side="left"] { text-align: left; }
  .timeline-item[data-side="right"] .timeline-dot,
  .timeline-item[data-side="left"] .timeline-dot {
    left: 12px; right: auto;
  }
  .timeline-item[data-side="left"] .timeline-tags {
    justify-content: flex-start;
  }
}

/* =========================================================
   PROCES (DESIGN THINKING)
   ========================================================= */

/* Desktop (> 860px): steps op rij 1, panel eronder op rij 2. */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 12px;
  row-gap: 32px;
  margin-bottom: 40px;
}
.process-item { display: contents; }

.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 20px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-row: 1;
}
.process-step:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
}
.process-step.active {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(30, 95, 142, 0.3);
}

.process-num {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.process-step.active .process-num { opacity: 0.9; }
.process-title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.process-panel {
  grid-row: 2;
  grid-column: 1 / -1;
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  animation: panel-in 0.4s var(--ease);
  color: rgba(255, 255, 255, 0.88);
}
.process-panel.active { display: block; }

/* Tablet / mobile (<= 860px): accordion, panel verschijnt direct onder step. */
@media (max-width: 860px) {
  .process {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .process-item {
    display: flex;
    flex-direction: column;
  }
  .process-step { grid-row: auto; }
  .process-step.active { border-radius: var(--radius) var(--radius) 0 0; }

  .process-panel {
    grid-row: auto;
    grid-column: auto;
    padding: 24px 22px 28px;
    border-radius: 0 0 var(--radius) var(--radius);
    border-top: none;
    margin-top: 0;
  }
  .process-panel.active { display: block; }
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.process-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #9ad9ca, #6ec5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.process-panel p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}
.process-panel ul {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
}
.process-panel li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: rgba(255, 255, 255, 0.75);
}
.process-panel li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* =========================================================
   CHAT
   ========================================================= */
.chat {
  margin-top: 40px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: white;
}
.chat-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.chat-avatar img { width: 100%; height: 100%; object-fit: cover; }

.chat-name { font-weight: 600; font-size: 1rem; }
.chat-status {
  font-size: 0.8rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.chat-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #52e09a;
  box-shadow: 0 0 0 3px rgba(82, 224, 154, 0.3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.chat-messages {
  padding: 24px 22px;
  min-height: 240px;
  max-height: 420px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(180deg, #f8fafc, white);
}

.chat-msg {
  display: flex;
  animation: msg-in 0.3s var(--ease);
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg.user { justify-content: flex-end; }

.chat-bubble {
  max-width: 85%;
  padding: 12px 18px;
  border-radius: 20px;
  font-size: 0.98rem;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
  white-space: pre-wrap;
  word-break: break-word;
}
.chat-msg.bot .chat-bubble {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 6px;
}
.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: white;
  border-bottom-right-radius: 6px;
}

.chat-bubble.typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 16px 18px;
}
.chat-bubble.typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink-mute);
  animation: typing 1.2s ease-in-out infinite;
}
.chat-bubble.typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-bubble.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-suggestions {
  padding: 8px 22px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--line);
  background: white;
}
.suggestion {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.suggestion:hover {
  background: var(--brand-soft);
  color: var(--brand-deep);
  border-color: var(--brand-soft);
  transform: translateY(-1px);
}

.chat-input {
  display: flex;
  gap: 10px;
  padding: 14px 18px;
  background: white;
  border-top: 1px solid var(--line);
  align-items: center;
}
.chat-input input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 1rem;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.chat-input input:focus {
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 3px rgba(30, 95, 142, 0.12);
}
.chat-input button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s var(--ease);
  flex-shrink: 0;
}
.chat-input button svg { width: 18px; height: 18px; }
.chat-input button:hover { transform: scale(1.08); }
.chat-input button:active { transform: scale(0.95); }
.chat-input button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.chat-footnote {
  padding: 10px 22px 14px;
  font-size: 0.75rem;
  color: var(--ink-mute);
  background: white;
  text-align: center;
  border-top: 1px solid var(--line);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { text-align: center; }
.contact h2 { max-width: 720px; margin-left: auto; margin-right: auto; }
.contact .lead { margin-left: auto; margin-right: auto; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
}
@media (max-width: 760px) {
  .contact-cards { grid-template-columns: 1fr; }
}

.contact-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  color: var(--ink);
  text-align: center;
  display: block;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
  color: var(--ink);
}

.contact-card-icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-soft), var(--accent-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}
.contact-card-icon svg { width: 24px; height: 24px; }

.contact-card-label {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
}
.contact-card-value {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.contact-ps {
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-style: italic;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 32px;
  font-size: 0.85rem;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-meta { color: rgba(255, 255, 255, 0.4); }

/* =========================================================
   ANIMATIE UTILITIES
   ========================================================= */
.anim-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.anim-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .orb { display: none; }
}
