:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --border: #2a2a2a;
  --text: #f5f5f5;
  --muted: #9ca3af;
  --orange: #e85d2c;
  --orange-hover: #f07040;
  --font: 'Inter', system-ui, sans-serif;
  --container: min(1200px, 100% - 48px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: var(--container);
  margin-inline: auto;
}

.dot { color: var(--orange); }

/* Header — vast, niet transparant, geen overlap met hero */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav__link {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.15s;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
  border-color: var(--text);
}

.btn--lg { padding: 14px 32px; font-size: 1rem; }

/* Hero — 1920×1080 (16:9) full-width banner */
.hero--blend {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(420px, 56.25vw, 1080px);
  max-height: 1080px;
  aspect-ratio: 16 / 9;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #0a0a0a 0%,
    #0a0a0a 34%,
    rgba(10, 10, 10, 0.97) 42%,
    rgba(10, 10, 10, 0.88) 50%,
    rgba(10, 10, 10, 0.55) 62%,
    rgba(10, 10, 10, 0.2) 74%,
    rgba(10, 10, 10, 0) 88%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 0;
  padding: clamp(32px, 4vw, 56px) 0 clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__content {
  max-width: 560px;
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero__content h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__text {
  color: rgba(245, 245, 245, 0.82);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

.hero__highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: auto;
  padding-top: 32px;
}

.hero__highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.9);
}

.hero__highlights-icon {
  display: flex;
  color: var(--orange);
}

.clients {
  padding: 28px 0 36px;
  border-bottom: 1px solid var(--border);
}

.clients__label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.clients__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  list-style: none;
  font-size: 0.9375rem;
  color: #6b7280;
  font-weight: 500;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  max-width: 640px;
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: rgba(232, 93, 44, 0.4);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(232, 93, 44, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
}

.service-card__link:hover { text-decoration: underline; }

/* Work */
.work__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  min-height: 480px;
}

.work__stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.work-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  flex: 1;
  min-height: 200px;
  background: #1a1a1a;
}

.work-card--featured { min-height: 100%; }

.work-card img,
.work-card__ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.work-card__ph {
  background: linear-gradient(160deg, #222 0%, #3d2e22 100%);
  min-height: 100%;
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.work-card__overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.work-card--small .work-card__overlay h3 { font-size: 1rem; }

.work-card__overlay p {
  font-size: 0.8125rem;
  color: var(--muted);
}

.work-card__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

/* Process */
.process__row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.process__step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
}

.process__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
}

.process__step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.process__step p {
  font-size: 0.8125rem;
  color: var(--muted);
}

.process__arrow {
  color: var(--orange);
  font-size: 1.25rem;
  padding-top: 28px;
  flex-shrink: 0;
}

/* Proof */
.proof__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.testimonial {
  position: relative;
  padding-left: 8px;
}

.testimonial__mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.6;
  display: block;
  margin-bottom: -16px;
}

.testimonial p {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial cite span {
  font-size: 0.875rem;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.stat__value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--muted);
}

.clients__list--compact {
  gap: 24px 32px;
  font-size: 0.8125rem;
}

/* CTA */
.cta {
  padding: 100px 0 48px;
  text-align: center;
}

.cta__inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.cta__inner p {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 480px;
  margin-inline: auto;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__social a {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.footer__social a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__col ul { list-style: none; }

.footer__col li {
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a:hover { color: var(--text); }

@media (max-width: 1024px) {
  .hero__gradient {
    background: linear-gradient(
      180deg,
      #0a0a0a 0%,
      rgba(10, 10, 10, 0.92) 45%,
      rgba(10, 10, 10, 0.5) 70%,
      rgba(10, 10, 10, 0.15) 100%
    );
  }
  .hero__bg-img {
    object-position: center 30%;
  }
  .hero--blend {
    height: clamp(380px, 56.25vw, 1080px);
    aspect-ratio: 16 / 9;
  }
  .hero__highlights {
    padding-top: 20px;
  }
  .work__grid,
  .proof__grid {
    grid-template-columns: 1fr;
  }
  .work__grid { min-height: auto; }
  .services__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .process__arrow { display: none; }
  .process__row { gap: 24px; }
}

.demo-badge {
  position: fixed !important;
  right: 16px !important;
  bottom: 16px !important;
  left: auto !important;
  top: auto !important;
  z-index: 99999 !important;
  display: block !important;
  margin: 0 !important;
  padding: 10px 18px !important;
  background: #e85d2c !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45) !important;
  pointer-events: auto !important;
}

.demo-badge a {
  color: #fff !important;
  text-decoration: underline !important;
  margin-left: 4px;
}

.demo-badge a:hover {
  opacity: 0.92;
}

@media (max-width: 768px) {
  .header__inner { position: relative; }
  .nav { display: none; }
  .nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    z-index: 101;
  }
  .nav.is-open .nav__list { flex-direction: column; gap: 12px; }
  .nav-toggle { display: flex; }
  .stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}
