:root {
  --bg: #0b1020;
  --bg-soft: #11182e;
  --surface: #ffffff;
  --ink: #0f172a;
  --ink-soft: #475569;
  --line: #e6e9f2;
  --brand: #4f46e5;
  --brand-2: #06b6d4;
  --accent: #f59e0b;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);
  --maxw: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 26px; border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-weight: 600; font-size: 15px; border: none; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 24px rgba(79, 70, 229, .35);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(79, 70, 229, .45); }
.btn--ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); box-shadow: none; }
.btn--ghost-light { color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); }
.btn--small { padding: 10px 20px; font-size: 14px; }
.btn--full { width: 100%; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.8); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(0,0,0,.04); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand__mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-size: 14px; font-weight: 800; letter-spacing: .5px;
}
.brand__name { font-size: 16px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-weight: 500; font-size: 15px; color: var(--ink-soft); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__links a.btn { color: #fff; }
.nav__lang {
  font-weight: 700; font-size: 13px; color: var(--ink-soft); border: 1.5px solid var(--line);
  padding: 6px 11px; border-radius: 999px; letter-spacing: .5px; transition: border-color .2s, color .2s;
}
.nav__lang:hover { border-color: var(--brand); color: var(--brand); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 110px 0 90px; background: var(--bg); color: #fff; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(6,182,212,.25), transparent 60%),
    radial-gradient(50% 50% at 10% 20%, rgba(79,70,229,.35), transparent 60%),
    var(--bg);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px; mask-image: linear-gradient(to bottom, #000, transparent 70%);
}
.hero__inner { position: relative; max-width: 820px; }
.hero__eyebrow {
  display: inline-block; font-size: 14px; font-weight: 600; letter-spacing: .5px;
  color: #c7d2fe; background: rgba(255,255,255,.08); padding: 7px 14px;
  border-radius: 999px; margin-bottom: 22px; border: 1px solid rgba(255,255,255,.12);
}
.hero__title { font-size: clamp(36px, 6vw, 62px); line-height: 1.05; font-weight: 800; letter-spacing: -1px; }
.grad { background: linear-gradient(120deg, #818cf8, #22d3ee); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: clamp(17px, 2.2vw, 20px); color: #cbd5e1; margin: 22px 0 32px; max-width: 620px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-size: 28px; font-weight: 800; color: #fff; }
.hero__stats span { font-size: 14px; color: #94a3b8; }

/* Trust */
.trust { background: var(--bg-soft); padding: 22px 0; text-align: center; }
.trust p { color: #94a3b8; font-size: 15px; }
.trust strong { color: #e2e8f0; font-weight: 600; }

/* Sections */
.section { padding: 90px 0; }
.section--alt { background: #f7f9fc; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.eyebrow--light { color: #a5b4fc; }
.section__head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.5px; }
.section__sub { color: var(--ink-soft); font-size: 18px; margin-top: 12px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  font-size: 26px; background: linear-gradient(135deg, #eef2ff, #ecfeff); margin-bottom: 18px;
}
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 15px; }

/* Work */
.work { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.work__item {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
}
.work__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.work__img { height: 220px; background-size: cover; background-position: center; }
.work__body { padding: 24px 26px 28px; }
.tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: var(--brand); background: #eef2ff;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.work__body h3 { font-size: 20px; margin-bottom: 8px; }
.work__body p { color: var(--ink-soft); font-size: 15px; }

/* Waarom kiezen */
.why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 36px; margin-bottom: 44px; }
.why__item { display: flex; gap: 16px; align-items: flex-start; }
.why__check {
  flex: none; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-weight: 800; font-size: 16px;
}
.why__item h3 { font-size: 18px; margin-bottom: 4px; }
.why__item p { color: var(--ink-soft); font-size: 15px; }
.guarantee {
  display: flex; align-items: center; gap: 18px; padding: 24px 28px; border-radius: var(--radius);
  background: linear-gradient(120deg, #eef2ff, #ecfeff); border: 1px solid #dbe4ff;
}
.guarantee__icon { font-size: 30px; flex: none; }
.guarantee p { font-size: 16px; color: var(--ink); }
.guarantee strong { color: var(--brand); }
@media (max-width: 760px) {
  .why { grid-template-columns: 1fr; }
  .guarantee { flex-direction: column; text-align: center; }
}

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column;
}
.price--featured {
  border-color: transparent; box-shadow: var(--shadow-lg); transform: scale(1.03);
  background: linear-gradient(180deg, #fff, #fbfcff);
  outline: 2px solid var(--brand);
}
.price__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff;
  font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 999px;
}
.price h3 { font-size: 20px; }
.price__tag { font-size: 32px; font-weight: 800; margin: 10px 0 4px; letter-spacing: -1px; }
.price__desc { color: var(--ink-soft); margin-bottom: 22px; font-size: 15px; }
.price ul { list-style: none; margin-bottom: 26px; flex: 1; }
.price li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: #334155; }
.price li::before { content: "✓"; color: var(--brand); font-weight: 800; margin-right: 10px; }
.pricing__note { text-align: center; color: var(--ink-soft); margin-top: 28px; font-size: 15px; }

/* About */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about__img { width: 100%; max-width: 340px; aspect-ratio: 3 / 4; margin: 0 auto; border-radius: var(--radius); background-size: cover; background-position: center top; box-shadow: var(--shadow-lg); }
.about__body h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 18px; letter-spacing: -.5px; }
.about__body p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16px; }
.about__list { list-style: none; margin-top: 22px; }
.about__list li { font-weight: 600; padding: 7px 0; color: var(--ink); }

/* Contact */
.contact { background: #fff; }
.contact__card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.contact__text {
  background: var(--bg); color: #fff; padding: 50px 46px;
  position: relative; overflow: hidden;
}
.contact__text::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(79,70,229,.5), transparent 60%);
}
.contact__text > * { position: relative; }
.contact__text h2 { font-size: 30px; margin-bottom: 14px; letter-spacing: -.5px; }
.contact__text p { color: #cbd5e1; }
.contact__info { list-style: none; margin-top: 28px; }
.contact__info li { padding: 8px 0; color: #e2e8f0; }
.contact__form { padding: 50px 46px; display: flex; flex-direction: column; gap: 16px; }
.contact__form label { display: flex; flex-direction: column; gap: 7px; font-size: 14px; font-weight: 600; color: var(--ink); }
.contact__form input, .contact__form textarea {
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.contact__form input:focus, .contact__form textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(79,70,229,.12);
}
.hidden-field { position: absolute; left: -9999px; visibility: hidden; }

/* Footer */
.footer { background: var(--bg); color: #94a3b8; padding: 44px 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer .brand__name { color: #fff; }
.footer p { font-size: 14px; }
.footer__credit { font-size: 12px; color: #64748b; }

/* Responsive */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about__img { max-width: 300px; }
}
@media (max-width: 760px) {
  .nav__links {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-120%); transition: transform .3s ease;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__toggle { display: flex; }
  .work, .pricing { grid-template-columns: 1fr; }
  .price--featured { transform: none; }
  .contact__card { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
}
