/* ===== Future Dynamics — huisstijl (dark) ===== */
:root {
  --teal: #00989E;
  --teal-bright: #00c9d1;
  --teal-dark: #00767b;
  --purple: #821FA0;
  --black: #07090a;
  --black-soft: #0c1011;
  --surface: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.62);
  --radius: 18px;
  --glow: 0 0 40px rgba(0, 152, 158, 0.3);
  --font: "Montserrat", -apple-system, "Segoe UI", sans-serif;
  --grad: linear-gradient(100deg, var(--teal), var(--teal-bright));
  --grad-deep: linear-gradient(120deg, var(--purple), var(--teal));
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--black);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Typografie ===== */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; overflow-wrap: break-word; hyphens: auto; color: var(--white); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.015em; margin-bottom: 0.6em; }
h3 { font-size: 1.3rem; margin-bottom: 0.5em; }
p { color: var(--muted); }
p + p { margin-top: 1em; }
strong { color: var(--text); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 1.4em;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.lead { font-size: 1.16rem; }

/* Gradient-nummers (i.p.v. iconen) */
.num {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

/* ===== Knoppen ===== */
.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 152, 158, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 36px rgba(0, 152, 158, 0.55); }
.btn-outline { border-color: rgba(255, 255, 255, 0.4); color: var(--white); }
.btn-outline:hover { border-color: var(--teal-bright); color: var(--teal-bright); box-shadow: var(--glow); }
.btn-outline-dark { border-color: rgba(255, 255, 255, 0.4); color: var(--white); }
.btn-outline-dark:hover { border-color: var(--teal-bright); color: var(--teal-bright); box-shadow: var(--glow); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 10, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.site-header .logo img { height: 30px; width: auto; }
.site-nav { display: flex; gap: 32px; align-items: center; }
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--teal-bright); }
.site-nav .btn { padding: 11px 24px; font-size: 0.9rem; color: var(--white); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 1.7rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/hero.webp") center/cover no-repeat;
  opacity: 0.2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 15% 20%, rgba(0, 152, 158, 0.3), transparent 70%),
    radial-gradient(700px 500px at 85% 80%, rgba(130, 31, 160, 0.24), transparent 70%);
  animation: glow-drift 12s ease-in-out infinite alternate;
}
@keyframes glow-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(0, -30px, 0) scale(1.08); }
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 150px;
  max-width: 920px;
  text-align: center;
}
.hero p {
  margin: 1.6em auto 2.4em;
  max-width: 660px;
  font-size: 1.18rem;
}
.hero .btn + .btn { margin-left: 16px; }

/* Ticker / marquee */
.ticker {
  position: relative;
  z-index: 2;
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
}
.ticker .track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker span {
  white-space: nowrap;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 28px;
}
.ticker span::after {
  content: "✦";
  color: var(--teal-bright);
  margin-left: 56px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Sub-hero voor binnenpagina's */
.page-hero {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 350px at 80% 10%, rgba(0, 152, 158, 0.24), transparent 70%),
    radial-gradient(500px 400px at 5% 90%, rgba(130, 31, 160, 0.16), transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero p { max-width: 680px; margin-top: 1em; font-size: 1.12rem; }

/* ===== Secties ===== */
section { position: relative; padding: 120px 0; }
section .container { position: relative; z-index: 2; }
section.soft { background: var(--black-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.glow-r::after,
section.glow-l::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
section.glow-r::after { background: radial-gradient(700px 500px at 88% 12%, rgba(0, 152, 158, 0.14), transparent 70%); }
section.glow-l::after { background: radial-gradient(700px 500px at 10% 85%, rgba(130, 31, 160, 0.12), transparent 70%); }

.section-head { max-width: 720px; margin-bottom: 72px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }

/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero::after, .ticker .track { animation: none; }
}

/* ===== Grids & kaarten ===== */
.grid { display: grid; gap: 40px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card, .glass {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px 38px;
  backdrop-filter: blur(10px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover, .glass:hover {
  border-color: rgba(0, 201, 209, 0.45);
  transform: translateY(-6px);
  box-shadow: var(--glow);
}
.card p, .glass p { font-size: 0.98rem; }

/* Zorgen / herkenning-lijst */
.pain-list { list-style: none; display: grid; gap: 20px; }
.pain-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: 12px;
  padding: 22px 26px;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pain-list li:hover { transform: translateX(6px); border-left-color: var(--teal-bright); box-shadow: var(--glow); }

/* Stappen */
.step h3 { margin-bottom: 0.5em; }
.step p { font-size: 0.99rem; }
.step .tool {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-bright);
  border: 1px solid rgba(0, 201, 209, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
}

/* Resultaten-checklist */
.check-list { list-style: none; display: grid; gap: 20px; }
.check-list li { padding-left: 40px; position: relative; color: var(--muted); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-list li strong { display: block; color: var(--white); }
.check-list li span { font-size: 0.96rem; }

/* ===== Diensten / prijskaarten ===== */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px 40px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
}
.service-card:hover { border-color: rgba(0, 201, 209, 0.45); transform: translateY(-6px); box-shadow: var(--glow); }
.service-card.featured { border-color: rgba(0, 201, 209, 0.4); }
.service-card.featured::before { background: var(--grad-deep); }
.service-card .variant {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 12px;
}
.service-card .meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 20px;
}
.service-card .tag {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  letter-spacing: 0.03em;
}
.service-card .tag.accent { background: rgba(0, 152, 158, 0.16); color: var(--teal-bright); }
.service-card p { font-size: 0.97rem; }
.service-card .sub { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.8em; }
.service-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin: 18px 0 2px;
}
.service-card .price small { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.service-card .receive { list-style: none; margin: 24px 0 0; display: grid; gap: 13px; }
.service-card .receive li { padding-left: 30px; position: relative; font-size: 0.94rem; color: var(--muted); }
.service-card .receive li::before { content: "→"; position: absolute; left: 0; color: var(--teal-bright); font-weight: 800; }
.service-card .receive li strong { color: var(--white); display: block; }
.service-card .btn { margin-top: 30px; align-self: flex-start; }

/* Programmablokken */
.blocks { display: grid; gap: 18px; }
.block {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 28px;
}
.block .when {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-bright);
  padding-top: 4px;
}
.block h4 { font-size: 1.02rem; margin-bottom: 6px; }
.block p { font-size: 0.93rem; }

/* ===== Cases ===== */
.case-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.case-card:hover { border-color: rgba(0, 201, 209, 0.45); transform: translateY(-8px); box-shadow: var(--glow); }
.case-card .img-wrap { overflow: hidden; }
.case-card img { height: 240px; object-fit: cover; width: 100%; transition: transform 0.5s ease; }
.case-card:hover img { transform: scale(1.05); }
.case-card .body { padding: 36px; }
.case-card .body p { font-size: 0.97rem; }
.case-card .more { margin-top: 18px; font-weight: 700; color: var(--teal-bright); }

/* ===== Team ===== */
.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin-bottom: 24px;
  box-shadow: 0 0 0 3px rgba(0, 201, 209, 0.4), 0 0 30px rgba(0, 152, 158, 0.25);
}
.team-card h3 { margin-bottom: 0.2em; }
.team-card .role { color: var(--teal-bright); font-weight: 700; font-size: 0.92rem; margin-bottom: 1em; }
.team-card p { font-size: 0.95rem; }
.team-card a { color: var(--teal-bright); font-weight: 700; text-decoration: none; }
.team-card a:hover { text-decoration: underline; }

/* ===== CTA-band ===== */
.cta-band {
  position: relative;
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 50% 120%, rgba(0, 152, 158, 0.35), transparent 70%),
    radial-gradient(400px 300px at 90% 0%, rgba(130, 31, 160, 0.2), transparent 70%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { margin-bottom: 0.5em; }
.cta-band p { max-width: 560px; margin: 0 auto 2.2em; }

/* ===== Contact / formulier ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info ul { list-style: none; display: grid; gap: 16px; margin-top: 24px; }
.contact-info li { padding-left: 30px; position: relative; color: var(--muted); }
.contact-info li::before { content: "●"; color: var(--teal-bright); position: absolute; left: 0; }
.contact-info a { color: var(--teal-bright); text-decoration: none; font-weight: 600; }

form.contact-form { display: grid; gap: 20px; }
form.contact-form label { font-weight: 700; font-size: 0.88rem; color: var(--text); }
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.97rem;
  color: var(--text);
  margin-top: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
form.contact-form select option { background: var(--black-soft); color: var(--text); }
form.contact-form input::placeholder,
form.contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 4px rgba(0, 201, 209, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== FAQ ===== */
details.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 30px;
  margin-bottom: 18px;
  transition: border-color 0.2s ease;
}
details.faq[open] { border-color: rgba(0, 201, 209, 0.45); box-shadow: var(--glow); }
details.faq summary { font-weight: 700; cursor: pointer; color: var(--white); }
details.faq p { margin-top: 14px; font-size: 0.97rem; }

/* ===== Artikel / case-detail ===== */
.article { max-width: 760px; margin: 0 auto; }
.article img { border-radius: var(--radius); margin: 40px 0; border: 1px solid var(--line); }
.article h2 { margin-top: 1.8em; }
.article blockquote {
  border-left: 3px solid var(--teal-bright);
  padding: 18px 28px;
  margin: 36px 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  background: var(--surface);
  border-radius: 0 14px 14px 0;
}

/* ===== Footer ===== */
.site-footer {
  color: var(--muted);
  padding: 80px 0 40px;
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  background: var(--black-soft);
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.site-footer img { height: 28px; width: auto; margin-bottom: 20px; }
.site-footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; }
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer a { color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--teal-bright); }
.site-footer .legal {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .grid-2, .grid-3, .contact-grid, .form-row { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 28px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero .container { padding-top: 96px; padding-bottom: 96px; }
  .hero .btn + .btn { margin-left: 0; margin-top: 14px; }
  section { padding: 72px 0; }
  .page-hero { padding: 72px 0; }
  .cta-band { padding: 72px 0; }
  .section-head { margin-bottom: 48px; }
  .block { grid-template-columns: 1fr; gap: 8px; }
}
