/* ==========================================================================
   styles.css — Online met Stijn
   VSCode Dark+ inspired design system
   ========================================================================== */

/* 1. Custom Properties
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Neon Dusk — deep indigo backgrounds, electric violet accent */

  /* Backgrounds: neutral gray → deep indigo-tinted darks */
  --bg: #131313;
  /* cards / modals                     */
  --bg-panel: #262625;
  /* nav bar, panels                    */
  --bg-hover: #272840;
  /* hover state                        */
  --bg-active: #31334f;
  /* active / selected                  */
  --bg-input: #252638;
  /* inputs                             */

  /* Borders: invisible → clearly present */
  --border: #4b4a48;
  --border-light: #292929;

  /* Text: flat gray → blue-tinted near-whites */
  --text: #ffffff;
  --text-muted: #a4a4a4;
  --text-faint: #efd395;

  /* Accent: corporate blue → electric violet (dark enough for white text) */
  --accent: #d26e41;
  --accent-hover: #daa84b;
  --accent-dim: rgba(247, 92, 92, 0.13);
  --accent-glow: rgba(107, 92, 247, 0.38);

  /* Semantic: washed-out → Dracula-saturated */
  --green: #50fa7b;
  /* vivid lime-green                   */
  --green-bg: rgba(80, 250, 123, 0.07);
  --red: #ff5f6e;
  /* coral-red, not flat tomato         */
  --red-bg: rgba(255, 95, 110, 0.08);
  --yellow: #ffd866;
  /* warm golden                        */
  --orange: #ffb86c;
  /* amber                              */
  --purple: #bd93f9;
  /* bright lavender                    */
  --comment: #6272a4;
  /* blue-slate (Dracula comment)       */

  /* Layout */
  --nav-h: 48px;
  --max-w: 1200px;
  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  /* Typography */
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  --font-body: 'Outfit', sans-serif;

  /* Transitions */
  --t-fast: 0.12s ease;
  --t-med: 0.22s ease;
  --t-slow: 0.38s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.55);
}

/* 2. Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--t-fast);
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
  color: var(--accent-hover);
}

button {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ul {
  list-style: none;
}

/* 3. Typography
   ========================================================================== */

h1,
h2,
h3,
h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ebebeb;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
  max-width: 68ch;
  color: var(--text);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.85em;
}

.label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* 4. Navigation  (VSCode tab-bar style)
   ========================================================================== */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  overflow: hidden;
}

/* TODO:overflows fixen */

.site-nav.scrolled {
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: stretch;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand-logo {
  height: var(--nav-h);
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.brand-name {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: #ebebeb;
  white-space: nowrap;
}

.brand-name span {
  color: var(--accent);
}

.nav-brand:hover .brand-name {
  color: #ffffff;
}

/* Desktop tabs */
.nav-tabs {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex: 1;
}

.nav-tab {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--t-slow), background var(--t-slow);
  user-select: none;
}

/* The VSCode active-tab top indicator */
.nav-tab::before {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: transparent;
  transition: background var(--t-slow);
}

.nav-tab.active {
  color: var(--text);
}

.nav-tab.active::before {
  background: var(--accent);
}

.nav-tab:hover:not(.active) {
  color: var(--text);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  height: var(--nav-h);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-fast), width var(--t-med);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-med), opacity var(--t-med);
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-mobile .nav-tab {
  display: flex;
  width: 100%;
  padding: 13px 28px;
  border-right: none;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.nav-mobile .nav-tab::before {
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
}

/* 5. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast),
    border-color var(--t-fast), box-shadow var(--t-fast),
    transform var(--t-fast);
  white-space: nowrap;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #ffffff;
}

.btn-ghost {
  background: black;
  color: var(--text);
  border-color: var(--border-light);
}

.btn-ghost:hover {
  background: var(--bg-hover);
  border-color: var(--text-muted);
  color: #ebebeb;
}

/* 6. Hero
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 32px);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.60) 50%,
      rgba(0, 0, 0, 0.40) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 32px;
  text-align: left;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease 0.2s forwards;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.35s forwards;
}

h1 span {
  color: var(--accent);
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(212, 212, 212, 0.85);
  margin-bottom: 36px;
  max-width: 54ch;
  line-height: 1.75;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.7s ease 0.65s forwards;
}

/* 7. Page Layout & Sections
   ========================================================================== */

.page-wrap {
  padding-top: var(--nav-h);
  display: flex;
  /* add */
  flex-direction: column;
  /* add */
}

.section {
  max-width: var(--max-w);
  margin: 1rem auto;
}

.section-header .label {
  display: block;
  margin-bottom: 10px;
}

.section-header h1 {
  margin-bottom: 1.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  display: none;
}

.centered-section {
  text-align: center;
  max-width: 768px;
  margin: 3rem auto 0 auto;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* 8. Services / Pricing
   ========================================================================== */

.section-title {
  margin-block: 2rem 1rem;
}

/* ── Shared card scaffold ── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pkg-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 16px;
  position: relative;
  transition: border-color var(--t-med), box-shadow var(--t-med), transform var(--t-med);
}

.pkg-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.pkg-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}

.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

.pkg-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pkg-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ebebeb;
  line-height: 1;
  margin-bottom: 4px;
}

.pkg-price sup {
  font-size: 1.1rem;
  font-weight: 500;
  vertical-align: super;
  line-height: 0;
  color: var(--text-muted);
}

.pkg-description {
  font-size: 0.8rem;
  margin-block: 0.5rem;
}

.pkg-divider {
  height: 1px;
  background: white;
  margin: 20px 0 24px;
}

.pkg-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 28px;
}

.pricing-note {
  max-width: 100%;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ── Variant A: Cards with icon rows ── */
.variant-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--comment);
  margin-bottom: 32px;
}

.variant-label::before {
  content: '//';
  color: var(--text-faint);
}

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  min-height: 26px;
}

.feat-row .feat-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.feat-icon.yes {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid rgba(78, 201, 176, 0.25);
}

.feat-icon.no {
  background: var(--red-bg);
  color: var(--red);
  border: 1px solid rgba(241, 76, 76, 0.25);
}

.feat-icon.val {
  background: rgba(220, 220, 170, 0.08);
  color: var(--yellow);
  border: 1px solid rgba(220, 220, 170, 0.2);
  width: auto;
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 500;
}

.feat-icon.dash {
  background: transparent;
  color: var(--text-faint);
  border: 1px solid var(--border);
}

.feat-row.included {
  color: var(--text);
}

/* ── Variant B: Comparison Table ── */
.cmp-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cmp-table th,
.cmp-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.cmp-table td:first-child,
.cmp-table th:first-child {
  text-align: left;
  color: var(--text-muted);
  font-size: 0.86rem;
  width: 38%;
  padding-left: 28px;
}

.cmp-table thead tr {
  background: var(--bg-panel);
}

.cmp-table thead th {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}

.cmp-table thead th.col-featured {
  color: #ffffff;
  background: rgba(0, 122, 204, 0.1);
  border-top: 2px solid var(--accent);
}

.cmp-table thead th:first-child {
  background: transparent;
}

.cmp-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.015);
}

.cmp-table tbody tr:last-child td {
  border-bottom: none;
}

.cmp-table td.col-featured {
  background: rgba(0, 122, 204, 0.04);
}

.cmp-table .th-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ebebeb;
  line-height: 1;
}

.cmp-table .th-name {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.tbl-yes {
  color: var(--green);
  font-size: 1.1rem;
}

.tbl-no {
  color: var(--red);
  font-size: 1.1rem;
}

.tbl-dash {
  color: var(--text-faint);
}

.tbl-val {
  display: inline-block;
  background: rgba(220, 220, 170, 0.08);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(220, 220, 170, 0.18);
}

/* ── Variant C: Feature chips ── */
.chip-feat-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 4px;
}

.chip-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.4;
}

.chip-included {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid rgba(78, 201, 176, 0.22);
}

.chip-excluded {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-faint);
  border: 1px solid var(--border);
  text-decoration: line-through;
  text-decoration-color: var(--text-faint);
}

.chip-value {
  background: rgba(220, 220, 170, 0.07);
  color: var(--yellow);
  border: 1px solid rgba(220, 220, 170, 0.18);
  font-family: var(--font-mono);
}

.chip-accent {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0, 122, 204, 0.22);
}

/* 9. Portfolio
   ========================================================================== */

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

.project-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--t-med), box-shadow var(--t-med), transform var(--t-med);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.project-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-thumb-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Individual thumbnail gradients */
.thumb-1 {
  background: linear-gradient(145deg, #1a0e2e 0%, #35195e 50%, #1a0e2e 100%);
}

/* deep violet  */
.thumb-2 {
  background: linear-gradient(145deg, #081428 0%, #0e2650 50%, #081428 100%);
}

/* deep navy    */
.thumb-3 {
  background: linear-gradient(145deg, #081a12 0%, #103224 50%, #081a12 100%);
}

/* deep emerald */
.thumb-4 {
  background: linear-gradient(145deg, #161624 0%, #24243e 50%, #161624 100%);
}

/* dark indigo  */
.thumb-5 {
  background: linear-gradient(145deg, #200830 0%, #42126a 50%, #200830 100%);
}

/* vivid purple */
.thumb-6 {
  background: linear-gradient(145deg, #0c0c1e 0%, #161636 50%, #0c0c1e 100%);
}

/* midnight     */

/* Logo-badge: toont het klantlogo op de gradient-achtergrond van de kaart */
.project-logo-frame {
  width: 42%;
  aspect-ratio: 1 / 1;
  max-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14%;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.project-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 1.02rem;
  font-weight: 600;
  color: #ebebeb;
  margin-bottom: 10px;
}

.project-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
  max-width: 100%;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.project-url {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--t-fast);
}

.project-url:hover {
  color: var(--accent-hover);
}

/* Geblurde, niet-klikbare URL voor projecten die nog in ontwikkeling zijn */
.project-url--blurred {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
  cursor: default;
}

.project-url--blurred:hover {
  color: var(--accent);
}

/* Statusbadge (bv. "In ontwikkeling") op projectkaarten */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-badge--wip {
  color: var(--yellow);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

.project-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 3px;
  background: var(--bg-active);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* 10. About
   ========================================================================== */

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 3rem;
}

.about-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 32px);

  position: static;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.about-portrait {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  border-radius: 10%;
  overflow: hidden;
  margin-bottom: 24px;
}

.about-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ebebeb;
  margin-bottom: 4px;
}

.about-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.about-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.about-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.about-meta-icon {
  width: 20px;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.9rem;
}

.about-content h3 {
  margin-top: 36px;
  margin-bottom: 14px;
  color: #ebebeb;
}

.about-content h3:first-child {
  margin-top: 0;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 72ch;
  line-height: 1.8;
}

/* 11. Footer (VSCode status bar inspired)
   ========================================================================== */

.site-footer {
  height: 2rem;
  background: var(--accent);
  color: rgba(255, 255, 255, 0.9);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  margin-top: auto;
}

.site-footer a {
  color: white;
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

/* 12. Reveal Animations
   ========================================================================== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 900px) {

  [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
  }

  [data-reveal][data-delay="1"] {
    transition-delay: 0.08s;
  }

  [data-reveal][data-delay="2"] {
    transition-delay: 0.16s;
  }

  [data-reveal][data-delay="3"] {
    transition-delay: 0.24s;
  }

  [data-reveal][data-delay="4"] {
    transition-delay: 0.32s;
  }
}

/* 13. Utilities
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

/* 14. Responsive
   ========================================================================== */

@media (max-width: 900px) {

  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-sidebar {
    display: none;
  }

  .about-avatar {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {

  body {
    min-height: 100svh;
  }

  .nav-inner {
    padding-inline: 0.5rem;
  }

  .nav-tabs {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    display: block;
  }

  .hero-content {
    text-align: center;
  }

  .hero-text {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .section {
    padding: 0rem 1.5rem 1rem 1.5rem;
  }

  .site-footer a {
    color: white;
  }

  .footer-right {
    font-size: 0.7rem;
  }

}

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

  .pkg-card {
    padding: 24px 20px;
  }

  .cmp-table th,
  .cmp-table td {
    padding: 12px 12px;
    font-size: 0.82rem;
  }
}

.form-page {
  max-width: var(--max-w);
  margin: 0 auto;
}

.form-page h2 {
  margin-bottom: 1rem;
}

.form-page__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.form-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem;
  max-width: 640px;
  margin-inline: auto;
}

/* ── Fields ───────────────────────────────────── */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.field label .req {
  color: var(--accent);
  margin-left: 2px;
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-panel);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #A0AEBF;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A6B7B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.field-row .field {
  margin-bottom: 0;
}

/* ── Submit ───────────────────────────────────── */
.form-submit {
  margin-top: 1.5rem;
}

.btn--submit {
  width: 100%;
  justify-content: center;
  padding: 0.95rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

.form-submit__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.65rem;
}

/* ── Pakket tile selector ─────────────────────── */
/* Append after .form-submit__note in styles.css  */

.pakket-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.pakket-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  aspect-ratio: 1 / 1;
  padding: 0.75rem;
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  color: var(--text-muted);
  cursor: pointer;
  transition:
    background var(--t-fast),
    border-color var(--t-fast),
    color var(--t-fast),
    box-shadow var(--t-fast);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.3;
  font-family: var(--font-body);
}

.pakket-tile:hover {
  background: var(--bg-hover);
  border-color: var(--accent);
  color: var(--text);
}

.pakket-tile.is-active {
  background: var(--bg-active);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.pakket-tile__icon {
  display: flex;
  flex-shrink: 0;
}

/* Inside the existing @media (max-width: 560px) block, or append separately: */
@media (max-width: 520px) {
  .pakket-tiles {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .pakket-tile {
    width: 17.5vw;
    height: 17.5vw;
    font-size: 1rem;
    font-weight: 500;
  }
}

/* ==========================================================================
   15. Toegankelijkheid: skip-link, focus, reduced motion   (toegevoegd)
   ========================================================================== */

/* Skip-link: onzichtbaar tot 'ie focus krijgt via Tab */
.skip-link {
  position: absolute;
  top: -60px;
  left: 8px;
  z-index: 2000;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  transition: top var(--t-fast);
}

.skip-link:focus {
  top: 8px;
  color: #fff;
}

/* Zichtbare focus-indicator voor toetsenbordgebruikers */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Respecteer de voorkeur voor minder beweging */
@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   16. Kruimelpad (breadcrumbs)   (toegevoegd)
   ========================================================================== */

.breadcrumb {
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: var(--text-faint);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb [aria-current="page"] {
  color: var(--text);
}

/* ==========================================================================
   17. Dienst-detailpagina's   (toegevoegd)
   ========================================================================== */

.svc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}

.svc-main {
  min-width: 0;
}

.svc-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 65ch;
}

.svc-block {
  margin-bottom: 2rem;
}

.svc-block h2 {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.svc-block p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.svc-block .feat-list {
  gap: 12px;
}

/* Accent-callout onderaan de dienstpagina */
.svc-note {
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 100%;
}

/* Samenvattingskaart blijft meescrollen op desktop */
.svc-aside {
  position: static;
}

.svc-aside .pkg-card:hover {
  transform: none;
}

/* Desktop: twee kolommen met sticky samenvatting */
@media (min-width: 901px) {
  .section-header p {
    color: var(--text-muted);
    font-size: 1.02rem;
  }

  .svc-layout {
    grid-template-columns: 1fr 320px;
    gap: 3rem;
  }

  .svc-aside {
    position: sticky;
    top: calc(var(--nav-h) + 24px);
  }
}

/* ==========================================================================
   18. Proces-tijdlijn (Hoe werkt het?)   (toegevoegd)
   ========================================================================== */

.timeline {
  position: relative;
  max-width: 760px;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding-bottom: 2.25rem;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

/* Verbindingslijn tussen de stappen */
.timeline-step::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--accent), var(--border));
}

.timeline-step:last-child::before {
  display: none;
}

.timeline-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg-panel);
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 0 4px var(--bg);
  /* maskeert de lijn achter het bolletje */
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.timeline-body {
  padding-top: 0.35rem;
}

.timeline-phase {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.timeline-body h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.timeline-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 60ch;
}

.timeline-cta {
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 760px;
}

@media (max-width: 560px) {
  .timeline-step {
    grid-template-columns: 44px 1fr;
    gap: 1rem;
  }

  .timeline-num {
    width: 44px;
    height: 44px;
    font-size: 0.85rem;
  }

  .timeline-step::before {
    left: 21px;
    top: 44px;
  }
}

/* ==========================================================================
   19. Formulier-validatie & losse acties   (toegevoegd)
   ========================================================================== */

.field-error {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.1rem;
}

.field-error[hidden] {
  display: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--red);
}

.field.has-error input:focus,
.field.has-error select:focus,
.field.has-error textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-bg);
}

/* Formulierbrede foutmelding (bij mislukt verzenden) */
.form-error {
  text-align: center;
  margin-top: 0.75rem;
}

/* Gecentreerde actieknop op o.a. de bedankpagina */
.centered-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}