﻿:root {
  --ink: #07142d;
  --ink-2: #14233f;
  --muted: #56647a;
  --line: rgba(7, 20, 45, .12);
  --soft: #f5fbff;
  --white: #fff;
  --blue: #0797f2;
  --cyan: #12c3f4;
  --royal: #2454f5;
  --purple: #7a2be7;
  --shadow: 0 22px 60px rgba(7, 20, 45, .11);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(18, 195, 244, .14), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(122, 43, 231, .12), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--soft) 48%, #fff 100%);
  min-height: 100vh;
}

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

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .08em; }
.brand img, .brand .custom-logo { width: 54px; height: 54px; object-fit: contain; }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 8px; color: #fff; font-size: 24px !important; letter-spacing: 0 !important; background: linear-gradient(135deg, var(--cyan), var(--royal) 58%, var(--purple)); }
.brand span { font-size: 15px; }

.nav-links, .nav-links .menu { display: flex; align-items: center; gap: 6px; }
.nav-links .menu, .footer-links .menu { margin: 0; padding: 0; list-style: none; }
.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  border-radius: 999px;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: rgba(36, 84, 245, .08); }

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--blue), var(--royal) 58%, var(--purple));
  color: #fff;
  font-weight: 850;
  border: 0;
  box-shadow: 0 12px 30px rgba(36, 84, 245, .24);
}
.button.secondary { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }

.menu-button { display: none; border: 1px solid var(--line); background: #fff; width: 44px; height: 44px; border-radius: 999px; color: var(--ink); }
.menu-button span { display: block; width: 18px; height: 2px; background: currentColor; margin: 4px auto; }

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: clamp(54px, 9vw, 112px) 0 54px;
  overflow: hidden;
}
.hero.hero-bg {
  background:
    linear-gradient(90deg, rgba(7, 20, 45, .88) 0%, rgba(7, 20, 45, .68) 44%, rgba(7, 20, 45, .18) 100%),
    url("../images/index-background-ai-process.png") center / cover no-repeat;
}
.hero.hero-bg h1,
.hero.hero-bg .lead { color: #fff; }
.hero.hero-bg .eyebrow { color: #9fe9ff; }
.hero.hero-bg .button.secondary { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.26); backdrop-filter: blur(8px); }
.hero.hero-bg .gradient-text { background: linear-gradient(100deg, #12c3f4, #ffffff 46%, #b58cff); -webkit-background-clip: text; background-clip: text; }
.hero.hero-bg .hero-grid { grid-template-columns: minmax(0, .82fr) minmax(280px, .45fr); }
.hero.hero-bg .media-panel { display: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr); gap: clamp(36px, 7vw, 80px); align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 14px; color: var(--royal); font-size: 13px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 62px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--purple)); }
h1, h2, h3 { letter-spacing: 0; color: var(--ink); }
h1 { margin: 18px 0 0; font-size: clamp(36px, 5.6vw, 68px); line-height: 1.02; max-width: 920px; }
h2 { margin: 0; font-size: clamp(32px, 4.8vw, 56px); line-height: 1.02; }
h3 { margin: 0; font-size: 22px; line-height: 1.18; }
p { color: var(--muted); line-height: 1.7; font-size: 17px; }
.lead { font-size: clamp(18px, 2vw, 22px); max-width: 66ch; margin: 24px 0 0; }
.gradient-text { color: transparent; background: linear-gradient(100deg, var(--blue), var(--royal) 56%, var(--purple)); -webkit-background-clip: text; background-clip: text; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.media-panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.76);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media-panel img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,20,45,0) 42%, rgba(7,20,45,.62));
}
.media-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-weight: 850;
  line-height: 1.35;
}
.media-caption span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.card.media-card { padding: 0; overflow: hidden; }
.card.media-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card.media-card .card-body { padding: 24px; }

.section { padding: clamp(54px, 8vw, 96px) 0; }
.section.alt { background: rgba(255,255,255,.58); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: minmax(0, .75fr) minmax(280px, .55fr); gap: 34px; align-items: end; margin-bottom: 32px; }
.section-head p { margin: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(7,20,45,.06);
}
.card p { margin: 14px 0 0; }
.icon {
  width: 46px; height: 46px; border-radius: 8px; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(18,195,244,.18), rgba(122,43,231,.16));
  display: grid; place-items: center; color: var(--royal); font-weight: 950;
}
.list { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; }
.list li { padding-left: 28px; position: relative; color: var(--muted); line-height: 1.65; }
.list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 10px; height: 10px; border-radius: 999px; background: linear-gradient(135deg, var(--cyan), var(--purple)); }

.band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
  background: linear-gradient(115deg, rgba(7,151,242,.1), rgba(122,43,231,.1)), rgba(255,255,255,.78);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.page-hero { padding: clamp(44px, 7vw, 86px) 0 44px; }
.page-hero h1 { font-size: clamp(34px, 4.6vw, 56px); }
.page-hero p { max-width: 72ch; }

.case-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { display: inline-flex; align-items: center; min-height: 30px; padding: 0 10px; border-radius: 999px; background: rgba(36,84,245,.08); color: var(--royal); font-size: 13px; font-weight: 850; }

.contact-box { display: grid; grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr); gap: 24px; align-items: start; }
.contact-side { display: grid; gap: 18px; }
.form { display: grid; gap: 14px; }
label { display: grid; gap: 7px; color: var(--ink); font-weight: 800; font-size: 14px; }
input, textarea {
  width: 100%; min-height: 46px; border: 1px solid var(--line); border-radius: 8px;
  padding: 12px 14px; font: inherit; color: var(--ink); background: #fff;
}
textarea { min-height: 140px; resize: vertical; }

.site-footer { padding: 42px 0; border-top: 1px solid var(--line); background: rgba(255,255,255,.75); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: 14px; }
.footer-links .menu { display: flex; flex-wrap: wrap; gap: 14px; }
.notice { padding: 12px 14px; border-radius: 8px; font-weight: 700; }
.notice.success { color: #12613a; background: #e8f8ef; }
.notice.error { color: #8a2730; background: #fff0f1; }
.content-card { max-width: 850px; }

@media (max-width: 880px) {
  .container { width: min(100% - 28px, 1160px); }
  .menu-button { display: block; }
  .nav { min-height: 68px; }
  .nav-links {
    position: absolute; left: 14px; right: 14px; top: 76px; display: none; flex-direction: column; align-items: stretch;
    background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 10px; box-shadow: var(--shadow);
  }
  .nav-links .menu { flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding: 68px 0 58px; }
  .hero.hero-bg, .page-hero { background:
    linear-gradient(180deg, rgba(7, 20, 45, .88) 0%, rgba(7, 20, 45, .72) 54%, rgba(7, 20, 45, .3) 100%),
    url("../images/index-background-ai-process.png") center / cover no-repeat;
  }
  .hero-grid, .hero.hero-bg .hero-grid, .section-head, .grid-3, .grid-2, .band, .contact-box, .footer-grid { grid-template-columns: 1fr; }
  .media-panel { min-height: 280px; max-width: 520px; }
  h1 { font-size: clamp(34px, 10vw, 48px); }
  .band { align-items: start; }
}







.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  padding: clamp(62px, 9vw, 112px) 0 clamp(54px, 7vw, 86px);
  background:
    linear-gradient(90deg, rgba(7, 20, 45, .9) 0%, rgba(7, 20, 45, .68) 48%, rgba(7, 20, 45, .2) 100%),
    url("../images/index-background-ai-process.png") center / cover no-repeat;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(34px, 4.6vw, 56px); color: #fff; }
.page-hero p { max-width: 72ch; color: rgba(255,255,255,.86); }
.page-hero .eyebrow { color: #9fe9ff; }

@media (max-width: 880px) {
  .page-hero {
    min-height: 360px;
    padding: 58px 0 52px;
    background:
      linear-gradient(180deg, rgba(7, 20, 45, .88) 0%, rgba(7, 20, 45, .72) 54%, rgba(7, 20, 45, .3) 100%),
      url("../images/index-background-ai-process.png") center / cover no-repeat;
  }
}

body[data-active="diensten"] .page-hero,
body[data-active="over"] .page-hero {
  background:
    linear-gradient(90deg, rgba(7, 20, 45, .9) 0%, rgba(7, 20, 45, .68) 48%, rgba(7, 20, 45, .2) 100%),
    url("../images/ai-workflows.png") center / cover no-repeat;
}

body[data-active="resultaten"] .page-hero {
  background:
    linear-gradient(90deg, rgba(7, 20, 45, .9) 0%, rgba(7, 20, 45, .68) 48%, rgba(7, 20, 45, .2) 100%),
    url("../images/ai-results.png") center / cover no-repeat;
}

body[data-active="contact"] .page-hero {
  background:
    linear-gradient(90deg, rgba(7, 20, 45, .9) 0%, rgba(7, 20, 45, .68) 48%, rgba(7, 20, 45, .2) 100%),
    url("../images/hero-ai-process.png") center / cover no-repeat;
}

body[data-active="privacy"] .page-hero {
  background:
    linear-gradient(90deg, rgba(7, 20, 45, .92) 0%, rgba(7, 20, 45, .72) 52%, rgba(7, 20, 45, .28) 100%),
    url("../images/ai-workflows.png") center / cover no-repeat;
}

@media (max-width: 880px) {
  body[data-active="diensten"] .page-hero,
  body[data-active="over"] .page-hero,
  body[data-active="privacy"] .page-hero {
    background:
      linear-gradient(180deg, rgba(7, 20, 45, .88) 0%, rgba(7, 20, 45, .72) 54%, rgba(7, 20, 45, .3) 100%),
      url("../images/ai-workflows.png") center / cover no-repeat;
  }

  body[data-active="resultaten"] .page-hero {
    background:
      linear-gradient(180deg, rgba(7, 20, 45, .88) 0%, rgba(7, 20, 45, .72) 54%, rgba(7, 20, 45, .3) 100%),
      url("../images/ai-results.png") center / cover no-repeat;
  }

  body[data-active="contact"] .page-hero {
    background:
      linear-gradient(180deg, rgba(7, 20, 45, .88) 0%, rgba(7, 20, 45, .72) 54%, rgba(7, 20, 45, .3) 100%),
      url("../images/hero-ai-process.png") center / cover no-repeat;
  }
}

