/* Intake.now - gedeelde basisstijlen.
   Letterlijk overgenomen uit de <style> van index.html zodat doelgroep-
   landingspagina's exact dezelfde design language gebruiken.
   Bestaande pagina's houden hun eigen inline stijlen en blijven ongewijzigd. */

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

html,
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333;
  background-color: #fff;
  font-size: 16px;
  scroll-behavior: smooth;
  line-height: 1.6;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.grid-background {
  --container-w: calc(min(1200px, 100vw) - 32px);
  --bg-grid-color: rgba(226, 232, 240, 0.35);
  --bg-grid-step: calc(var(--container-w) / 18);
  --bg-grid-offset: calc(max(0px, 50vw - 0.5 * var(--container-w)));

  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--bg-grid-color) 1px, transparent 1.5px),
    linear-gradient(to right, var(--bg-grid-color) 1px, transparent 1.5px);
  background-position: var(--bg-grid-offset) 0;
  background-size: var(--bg-grid-step) var(--bg-grid-step);
  background-repeat: repeat;
  z-index: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  white-space: nowrap;
}

.logo img {
  height: 1em;
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
}

nav a:hover {
  opacity: 0.7;
}

.language-select {
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font: inherit;
  font-size: 0.9rem;
  padding: 0.45rem 0.8rem;
}

main {
  padding-top: 5rem;
}

section {
  padding: 4rem 0;
}

.hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.35rem, 7vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: #000;
  letter-spacing: 0;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #555;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.intro-copy {
  font-size: 1rem;
  color: #555;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}

.store-note {
  margin: 1.5rem 0 0.5rem;
  color: #000;
  font-weight: 600;
}

.store-note small {
  display: block;
  margin-top: 0.2rem;
  color: #777;
  font-weight: 400;
}

.cta-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  padding: 0.75rem 2rem;
  min-height: 48px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-primary {
  background: #000;
  border: 2px solid #000;
  color: #fff;
}

.btn-primary:hover {
  background: #444;
  border-color: #444;
}

.btn-outline {
  background: #fff;
  border: 2px solid #000;
  color: #000;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

.hero-media {
  width: min(980px, 100%);
  margin: 3rem auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: #f7f7f7;
  box-shadow: 0 22px 80px rgba(15, 23, 42, 0.14);
}

.hero-media img,
.devices img {
  display: block;
  width: 100%;
  height: auto;
}

.features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.features .text {
  flex: 1 1 420px;
}

.features h2,
.section-heading {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #000;
}

.features p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.list-grid {
  flex: 1 1 420px;
  display: grid;
  gap: 1rem;
  list-style: none;
}

.list-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list-item,
.testimonial {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.1rem;
  color: #444;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.steps {
  counter-reset: steps;
}

.steps .list-item {
  position: relative;
  padding-left: 3.2rem;
}

.steps .list-item::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.centered {
  text-align: center;
}

.center-copy {
  color: #555;
  max-width: 680px;
  margin: 0 auto;
}

.devices {
  width: min(860px, 100%);
  margin: 2rem auto 0;
  border-radius: 18px;
  overflow: hidden;
  background: #f7f7f7;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
}

.disclaimer {
  color: #777;
  font-size: 0.92rem;
  margin-top: 1rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  text-align: left;
}

footer {
  border-top: 1px solid #eee;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

footer a {
  color: #999;
  text-decoration: none;
}

footer a:hover {
  color: #555;
}

@media (max-width: 820px) {
  .grid-background {
    --bg-grid-step: calc(var(--container-w) / 12);
  }

  header {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    display: none;
  }

  nav a#aboutNav {
    display: inline;
    font-size: 0.95rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  main {
    padding-top: 5.75rem;
  }

  section {
    padding: 2.75rem 0;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .hero p {
    font-size: 1.08rem;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    padding: 0.65rem 1.2rem;
  }

  .list-grid.two,
  .testimonials {
    grid-template-columns: 1fr;
  }
}
