/* ═══════════════════════════════════════════════════════════════
   MOLALABS — Main Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
  --color-bg:          #04060f;
  --color-bg-2:        #070b18;
  --color-bg-card:     rgba(255,255,255,.035);
  --color-border:      rgba(255,255,255,.07);
  --color-text:        #e8eaf2;
  --color-text-muted:  #7b82a0;
  --color-accent:      #4f7cff;
  --color-accent-2:    #8b5cf6;
  --color-accent-glow: rgba(79,124,255,.25);
  --color-white:       #ffffff;

  --font-family:       'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-title:        'Oswald', 'Space Grotesk', sans-serif;

  --nav-h:    72px;
  --radius:   12px;
  --radius-lg:20px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.45, 0, 0.55, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection {
  background: var(--color-accent);
  color: #fff;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--color-white);
  margin-bottom: 20px;
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.section {
  padding-block: clamp(80px, 10vw, 120px);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 64px;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-family);
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform .2s var(--ease-out-expo),
              box-shadow .2s var(--ease-out-expo),
              background .2s;
  text-decoration: none;
}
.btn svg { transition: transform .2s var(--ease-out-expo); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), #6d48ff);
  color: #fff;
  box-shadow: 0 0 0 0 var(--color-accent-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--color-accent-glow),
              0 0 0 1px rgba(79,124,255,.3);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.04);
  transform: translateY(-2px);
}

.btn--large {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .3s, backdrop-filter .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(4, 6, 15, .88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  /* geen vaste border — flame-lijn via ::after */
}

/* Brandende lijn onder de nav bij scrollen */
.nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent       0%,
    #4f7cff          15%,
    #8b5cf6          35%,
    #f59e0b          50%,
    #ef4444          58%,
    #f59e0b          65%,
    #8b5cf6          80%,
    #4f7cff          88%,
    transparent      100%
  );
  background-size: 250% 100%;
  opacity: 0;
  animation: flameSweep 2.8s linear infinite;
  box-shadow:
    0 0  6px rgba(245,158,11,.7),
    0 0 14px rgba(139,92,246,.5),
    0 0 22px rgba(79,124,255,.35);
  transition: opacity .4s;
  pointer-events: none;
}
.nav.scrolled::after {
  opacity: 1;
}

@keyframes flameSweep {
  0%   { background-position:  250% 0; }
  100% { background-position: -250% 0; }
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.nav__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color .2s;
}
.nav__links a:hover { color: var(--color-white); }

.nav__cta-btn {
  background: linear-gradient(135deg, var(--color-accent), #6d48ff) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: .85rem !important;
}
.nav__cta-btn:hover { opacity: .88; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  z-index: 999;
  background: rgba(4, 6, 15, .97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out-expo);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--color-accent); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
  z-index: 0;
}
.hero__video.playing { opacity: 1; }

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(79,124,255,.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139,92,246,.1) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(4,6,15,0) 60%, var(--color-bg) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: clamp(20px, 6vw, 80px);
  padding-top: var(--nav-h);
  max-width: 860px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,124,255,.1);
  border: 1px solid rgba(79,124,255,.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  animation: fadeDown .8s var(--ease-out-expo) both;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .06em;
  margin-bottom: 24px;
  min-height: 1.1em;           /* reserveer ruimte terwijl letters verschijnen */
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeDown .9s .1s var(--ease-out-expo) both;
}

/* Getypte tekst container */
.hero__title-typed {
  display: inline;
}

/* Individuele letters — JS voegt .letter toe */
.hero__letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px) scale(.92);
  transition: opacity .18s ease, transform .22s var(--ease-out-expo);
  /* Kleur wordt per letter bepaald door .letter--mola / .letter--labs */
}
.hero__letter.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* "Mola" in wit */
.hero__letter--mola {
  color: var(--color-white);
  text-shadow:
    0 0 40px rgba(255,255,255,.15),
    0 0 80px rgba(255,255,255,.06);
}

/* "Labs" in blauw/violet gradient via filter */
.hero__letter--labs {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(79,124,255,.55));
}

/* Knipperende cursor */
.hero__cursor {
  display: inline-block;
  font-family: var(--font-title);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--color-accent);
  margin-left: 2px;
  animation: cursorBlink .75s step-end infinite;
  vertical-align: baseline;
  text-shadow: 0 0 18px rgba(79,124,255,.8);
}
/* cursor blijft altijd knipperen — nooit verbergen */
.hero__cursor.hidden { /* intentionally empty */ }

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

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 500;
  color: #d4d9ee;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeDown .9s .2s var(--ease-out-expo) both;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
  animation: fadeDown .9s .3s var(--ease-out-expo) both;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeDown .9s .4s var(--ease-out-expo) both;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__stat > span:first-child,
.hero__stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}
.hero__stat > span:first-child + span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.hero__stat-label {
  font-size: .75rem;
  color: var(--color-text-muted);
  letter-spacing: .04em;
}
.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeDown .9s .6s var(--ease-out-expo) both;
}
.hero__scroll-label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-text-muted), transparent);
  animation: scrollLine 2s infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about {
  background: var(--color-bg-2);
}

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

.about__text .btn { margin-top: 32px; }

.about__body {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 500px;
}

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

.about__mini-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-text);
  transition: border-color .3s, background .3s, transform .3s;
}
.about__mini-card:hover {
  border-color: rgba(79,124,255,.3);
  background: rgba(79,124,255,.06);
  transform: translateY(-4px);
}
.about__mini-icon {
  font-size: 1.6rem;
  line-height: 1;
}

/* ─── SERVICES ───────────────────────────────────────────────── */
.services {
  background: var(--color-bg);
}

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

.service-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  overflow: hidden;
  cursor: default;
  transition: border-color .3s, background .3s, transform .3s, box-shadow .3s;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(79,124,255,.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.service-card:hover {
  border-color: rgba(79,124,255,.3);
  background: rgba(79,124,255,.04);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4),
              0 0 0 1px rgba(79,124,255,.15);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(79,124,255,.1);
  border: 1px solid rgba(79,124,255,.2);
  border-radius: 14px;
  color: var(--color-accent);
  margin-bottom: 20px;
  transition: background .3s, transform .3s;
}
.service-card:hover .service-card__icon {
  background: rgba(79,124,255,.18);
  transform: scale(1.05);
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.service-card__body {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-card__tags span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.service-card__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out-expo);
}
.service-card:hover .service-card__line { transform: scaleX(1); }

/* ─── WHY ────────────────────────────────────────────────────── */
.why {
  background: var(--color-bg-2);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why__intro {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why__item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  transition: padding-left .3s var(--ease-out-expo);
}
.why__item:last-child { border-bottom: none; }
.why__item:hover { padding-left: 8px; }

.why__item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(79,124,255,.1);
  border: 1px solid rgba(79,124,255,.2);
  border-radius: 10px;
  color: var(--color-accent);
  margin-top: 2px;
}

.why__item strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}
.why__item p {
  font-size: .875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ─── CTA ────────────────────────────────────────────────────── */
.cta {
  background: var(--color-bg);
  overflow: hidden;
}

.cta__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(79,124,255,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(139,92,246,.1) 0%, transparent 60%);
}

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

.cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.cta__title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 20px;
}

.cta__sub {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  padding-block: 56px 40px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  text-align: center;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}
.footer__logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.footer__tagline {
  font-size: .875rem;
  color: var(--color-text-muted);
}

.footer__mid {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.footer__nav {
  display: flex;
  gap: 32px;
}
.footer__nav a {
  font-size: .875rem;
  color: var(--color-text-muted);
  transition: color .2s;
}
.footer__nav a:hover { color: var(--color-white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.footer__bottom p {
  font-size: .8rem;
  color: var(--color-text-muted);
}

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: border-color .2s, color .2s, background .2s;
}
.footer__social-link:hover {
  border-color: rgba(79,124,255,.4);
  color: var(--color-accent);
  background: rgba(79,124,255,.08);
}

/* ─── HERO SUPPORTING LINE ───────────────────────────────────── */
.hero__supporting {
  font-size: clamp(.88rem, 1.6vw, 1rem);
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-top: -28px;
  margin-bottom: 36px;
  animation: fadeDown .9s .25s var(--ease-out-expo) both;
}
.br-desktop { display: none; }
@media (min-width: 640px) { .br-desktop { display: block; } }

/* ─── PROJECT KAART LOGO ─────────────────────────────────────── */
.project-card__logo {
  height: 52px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.project-card__logo-img {
  max-height: 48px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* Bekijk-knop op projectkaarten */
.project-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--color-accent);
  border: 1px solid rgba(79,124,255,.3);
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s, color .2s;
}
.project-card__btn svg { transition: transform .2s var(--ease-out-expo); }
.project-card__btn:hover {
  background: rgba(79,124,255,.1);
  border-color: rgba(79,124,255,.55);
  color: #fff;
  transform: translateY(-1px);
}
.project-card__btn:hover svg { transform: translateX(3px); }

/* ─── 3-KOLOMS GRID (projecten) ──────────────────────────────── */
.services__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .services__grid--3 { grid-template-columns: 1fr; }
}

/* ─── HOE WIJ WERKEN — STAPPEN ───────────────────────────────── */
.steps__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 16px;
  align-items: start;
}

.step-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.step-card:hover {
  border-color: rgba(79,124,255,.3);
  transform: translateY(-4px);
}
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out-expo);
}
.step-card:hover::after { transform: scaleX(1); }

.step-card__number {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.step-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}
.step-card__body {
  font-size: .88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.step-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  padding-top: 40px;
  opacity: .4;
}

@media (max-width: 900px) {
  .steps__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-card__arrow {
    transform: rotate(90deg);
    padding-top: 0;
    height: 32px;
  }
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}
.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  text-align: left;
  transition: color .2s;
}
.faq__question:hover { color: var(--color-accent); }

.faq__icon {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform .3s var(--ease-out-expo), color .2s;
}
.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s var(--ease-out-expo), padding .35s;
  padding: 0 4px;
}
.faq__answer.open {
  max-height: 200px;
  padding: 0 4px 20px;
}
.faq__answer p {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ─── CTA DUBBELE KNOPPEN ────────────────────────────────────── */
.cta__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── REVEAL ANIMATION ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease-out-expo),
              transform .75s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }

/* ─── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about__grid  { grid-template-columns: 1fr; gap: 48px; }
  .why__grid    { grid-template-columns: 1fr; gap: 48px; }
  .services__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__stats { gap: 20px; }
  .hero__stat-num,
  .hero__stat > span:first-child + span { font-size: 1.5rem; }

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

  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; width: 100%; }
  .hero__buttons .btn { width: 100%; justify-content: center; }

  .hero__stats { flex-direction: column; gap: 16px; }
  .hero__stat-divider { width: 40px; height: 1px; }

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

/* ─── ACCESSIBILITY ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Focus visible styles */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}
