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

:root {
  --primary-color: #1b4d2e;
  --primary-light: #2d7a4a;
  --light-color: #f4f7f5;
  --dark-color: #163126;
  --green-dark: #142920;
  --green-mid: #1b4d2e;
  --muted-color: #4f6c60;
  --line-color: #d7e6df;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  color: var(--dark-color);
}

a {
  text-decoration: none;
  color: var(--primary-light);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* iPhone-screenshots (1024×2226) — hoogte volgt altijd uit bestand */
.app-screenshot {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* Strakke telefoon-export met transparante hoeken — geen extra zwarte rand */
.device-shot {
  line-height: 0;
  width: 280px;
  max-width: 100%;
  filter: drop-shadow(0 14px 28px rgba(22, 49, 38, 0.16));
  isolation: isolate;
}

.device-shot .app-screenshot {
  border-radius: 0;
  width: 100%;
  height: auto;
  display: block;
  /* Voorkom grijs halo-fringe bij schalen in Safari/Chrome */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.device-shot.is-zoomable,
.phone-frame.is-zoomable {
  cursor: zoom-in;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(27, 77, 46, 0.15);
}

.device-shot.is-zoomable .app-screenshot,
.phone-frame.is-zoomable .app-screenshot {
  cursor: zoom-in;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

/* Rechte screenshots zonder telefoonvorm — optionele donkere rand */
.phone-frame {
  background: #111;
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(22, 49, 38, 0.18);
  line-height: 0;
  width: 280px;
  max-width: 100%;
}

.phone-frame .app-screenshot {
  border-radius: 22px;
}

/* Navbar */

.navbar {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 200;
  overflow: visible;
  border-bottom: 1px solid var(--line-color);
  transition:
    box-shadow 0.35s ease,
    padding 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.navbar.is-scrolled {
  padding: 14px 20px;
  border-bottom-color: transparent;
  box-shadow: 0 8px 28px rgba(22, 49, 38, 0.08);
  background-color: rgba(255, 255, 255, 0.97);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark-color);
  font-weight: 700;
  font-size: 1.22rem;
}

.navbar .logo img {
  width: 48px;
  height: 48px;
  border-radius: 11px;
}

.navbar .main-menu ul {
  display: flex;
  align-items: center;
}

.navbar .main-menu ul li a {
  padding: 10px 20px;
  display: block;
  font-weight: 600;
  transition: color 0.25s ease;
  color: var(--muted-color);
  position: relative;
}

.navbar .main-menu ul li a::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.navbar .main-menu ul li a:hover::after,
.navbar .main-menu ul li a.active::after {
  transform: scaleX(1);
}

.navbar .main-menu ul li a:hover {
  color: var(--primary-color);
}

.navbar .main-menu ul li a.active:not(.btn) {
  color: var(--primary-color);
}

.navbar .main-menu ul li a.btn.active {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.navbar .main-menu ul li:last-child a {
  margin-left: 10px;
}

.navbar .main-menu ul li a i {
  margin-right: 5px;
}

/* Hero */

.hero {
  margin-bottom: 50px;
}

.hero .container {
  background: linear-gradient(145deg, #e8f3ec 0%, #f7faf8 45%, #eef6f1 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 30px 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero .container::before,
.hero .container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero .container::before {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(45, 122, 74, 0.14) 0%, transparent 68%);
}

.hero .container::after {
  width: min(280px, 50vw);
  height: min(280px, 50vw);
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(27, 77, 46, 0.1) 0%, transparent 70%);
}

.hero .hero-content,
.hero .hero-visual {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  flex: 1 1 55%;
  max-width: 55%;
  min-width: 0;
}

.hero-visual {
  flex: 0 0 auto;
  max-width: 32%;
}

.hero-visual .device-shot {
  width: 280px;
}

.hero .hero-text {
  width: 95%;
  margin-bottom: 20px;
  color: var(--muted-color);
}

.hero-heading .hero-subline {
  display: block;
  margin-top: 12px;
  font-size: 0.58em;
  font-weight: 600;
  line-height: 1.35;
  color: var(--primary-light);
}

.section-lead {
  margin-top: -10px;
  color: var(--muted-color);
}

.section-heading {
  margin-bottom: 8px;
  margin-top: 0;
}

.section-subline {
  display: block;
  margin-top: 10px;
  font-size: 0.72em;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.92;
}

.hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.88rem;
  color: var(--muted-color);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-trust span::before {
  content: '\2713';
  color: var(--primary-light);
  font-weight: 700;
  flex-shrink: 0;
}

/* App Store badge */

.app-store-block {
  margin-bottom: 20px;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px 11px 14px;
  border-radius: 10px;
  max-width: 100%;
}

.app-store-badge--live {
  background: #000;
  color: #fff;
}

.app-store-badge-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.app-store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-store-badge-text small {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.88;
}

.app-store-badge-text strong {
  font-size: 1.05rem;
  font-weight: 600;
}

/* 3 stappen */

.steps {
  padding: 56px 0;
  background-color: var(--green-dark);
  color: #fff;
}

.steps-title {
  color: #fff;
  margin-top: 0;
}

.steps-lead {
  max-width: 540px;
  margin: 0 auto 36px;
  color: #d4e8dc;
  font-size: 1.05rem;
  line-height: 1.55;
}

.steps-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: #fff;
}

.step-item p {
  margin: 0;
  color: #d4e8dc;
  font-size: 0.95rem;
  line-height: 1.5;
}

.steps-visual .device-shot {
  width: 260px;
}

.steps-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.steps .btn-primary {
  background-color: #fff;
  color: var(--green-dark);
}

.steps .btn-primary:hover {
  background-color: #e8f3ec;
  opacity: 1;
}

/* CTA band */

.cta-band {
  padding: 48px 0;
  text-align: center;
}

.cta-title {
  color: #fff;
  margin-top: 0;
}

.cta-lead {
  color: #d4e8dc;
  max-width: 480px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-band .app-store-block {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
}

.btn-light {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.cta-band .btn-primary {
  background-color: #fff;
  color: var(--green-mid);
}

.cta-band .btn-primary:hover {
  background-color: #e8f3ec;
  opacity: 1;
}

/* Features grid (screenshots) */

.features {
  padding: 40px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 20px;
  align-items: stretch;
}

.features-grid .card {
  grid-column: span 2;
}

.features-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.features-grid .screenshot-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.features-grid .card h4 {
  margin-bottom: 8px;
  color: var(--primary-color);
}

.features-grid .card p {
  font-size: 0.92rem;
  color: var(--muted-color);
  min-height: 3.1em;
}

.features-grid .card p strong {
  color: var(--primary-color);
  font-weight: 600;
}

.screenshot-wrap {
  display: flex;
  justify-content: center;
}

.features-grid .screenshot-wrap .phone-frame {
  width: 260px;
}

.features-grid .screenshot-wrap .device-shot {
  width: 260px;
}

/* Pricing */

.pricing {
  padding: 40px 0;
}

.pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.pricing .pricing-card-subheading {
  margin-bottom: 30px;
  color: var(--muted-color);
}

.pricing .pricing-card-price {
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

.pricing ul {
  margin: 30px 0;
}

.pricing ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.pricing ul li i {
  margin-right: 0;
  flex-shrink: 0;
  margin-top: 0.15em;
  color: var(--primary-light);
}

.pricing .pricing-footer {
  margin: 30px 0;
  color: var(--muted-color);
}

.pricing .card.bg-black {
  background-color: var(--green-dark);
  color: #fff;
}

.pricing .card.bg-black ul li,
.pricing .card.bg-black p {
  color: #e8f0eb;
}

.pricing .card.bg-black .pricing-card-price {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* FAQ */

.faq {
  padding: 40px 0;
}

.faq .faq-group {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.faq .faq-group .faq-group-header {
  padding: 20px 0;
  margin-bottom: 15px;
  position: relative;
  cursor: pointer;
}

.faq .faq-group .faq-group-header h4 {
  font-weight: 600;
  width: 95%;
}

.faq .faq-group .faq-group-header i {
  position: absolute;
  right: 0;
  top: 35px;
  font-size: 1.3rem;
  cursor: pointer;
}

.faq .faq-group .faq-group-body {
  display: grid;
  grid-template-rows: 0fr;
  color: var(--muted-color);
  transition: grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq .faq-group .faq-group-body > p {
  overflow: hidden;
  margin: 0;
}

.faq .faq-group .faq-group-body.open {
  grid-template-rows: 1fr;
}

/* Footer */

.footer {
  padding: 40px 0;
}

.footer h4 {
  margin-bottom: 10px;
}

.footer ul li {
  line-height: 2.5;
}

.footer a {
  color: #ccc;
}

.footer a:hover {
  color: #fff;
}

.footer i {
  font-size: 1.5rem;
  margin-right: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  justify-content: center;
  align-items: start;
}

.footer-simple {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.footer-brand a img {
  border-radius: 10px;
}

.footer-brand p {
  color: #b8cfc4;
  font-size: 0.92rem;
  margin: 0 0 10px;
  max-width: 28em;
}

.footer-brand > a[href^="mailto"] {
  color: #d4e8dc;
  font-size: 0.92rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer .card {
  margin: 20px 30px 30px 0;
}

.footer .card p {
  color: var(--muted-color);
}

.footer .logo-footer img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin-bottom: 16px;
}

/* Subpages */

.page-hero {
  background: linear-gradient(145deg, #e8f3ec 0%, #f7faf8 45%, #eef6f1 100%);
  border-bottom: 1px solid var(--line-color);
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  top: -140px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 122, 74, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--primary-color);
}

.page-hero .meta {
  color: var(--muted-color);
  margin-top: 10px;
}

.content-page {
  padding: 40px 0 64px;
}

.content-page h2 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--primary-color);
}

.content-page h3 {
  font-size: 1rem;
  margin: 18px 0 8px;
}

.content-page p {
  margin: 0 0 12px;
}

.content-page ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0 0 12px;
}

.content-page li {
  margin-bottom: 6px;
}

.content-page .box {
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 20px 0;
  font-size: 0.92rem;
  color: var(--muted-color);
}

.content-page .box-accent {
  border-color: #b8d4c4;
  background: #f0f7f3;
  color: var(--dark-color);
}

.content-page .history p {
  margin-bottom: 10px;
  color: var(--muted-color);
  font-size: 0.92rem;
}

/* Utility Classes */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-md {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Cards */

.card {
  background-color: #fff;
  color: black;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(215, 230, 223, 0.65);
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 13px 20px;
  background-color: var(--light-color);
  color: #333;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
}

.btn:hover {
  opacity: 0.85;
}

/* Subtiele beweging (respecteert prefers-reduced-motion) */

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  @keyframes blob-drift {
    0% {
      transform: translate(0, 0) scale(1);
    }
    100% {
      transform: translate(-18px, 14px) scale(1.06);
    }
  }

  @keyframes float-phone {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-12px);
    }
  }

  @keyframes gradient-shift {
    0%,
    100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }

  @keyframes fade-up-in {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero .container::before {
    animation: blob-drift 14s ease-in-out infinite alternate;
  }

  .hero .container::after {
    animation: blob-drift 18s ease-in-out infinite alternate-reverse;
  }

  .steps-visual .device-shot {
    animation: float-phone 6.5s ease-in-out infinite;
    animation-delay: 0.8s;
  }

  .cta-band.bg-dark {
    background: linear-gradient(
      135deg,
      var(--green-mid) 0%,
      #1f6340 45%,
      var(--green-dark) 100%
    );
    background-size: 200% 200%;
    animation: gradient-shift 14s ease infinite;
  }

  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition:
      opacity 0.55s ease,
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
  }

  .hero .hero-visual.reveal {
    transform: translateY(18px) scale(0.98);
  }

  .hero .hero-visual.reveal.is-visible {
    transform: translateY(0) scale(1);
  }

  .hero .hero-visual.reveal.is-visible .device-shot {
    animation: float-phone 5.5s ease-in-out infinite;
  }

  .text-center.section-heading::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    border-radius: 2px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
  }

  .text-center.section-heading.reveal.is-visible::after,
  .text-center.section-heading.is-accent-visible::after {
    transform: scaleX(1);
  }

  .steps.bg-black .text-center.section-heading::after {
    background: linear-gradient(90deg, #8fd4a8, #d4e8dc);
  }

  .features-grid .card,
  .pricing-grid .card {
    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.32s ease,
      border-color 0.32s ease;
  }

  .device-shot.is-zoomable,
  .phone-frame.is-zoomable {
    transition: transform 0.28s ease, filter 0.28s ease;
  }

  .btn {
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      background-color 0.25s ease,
      box-shadow 0.25s ease;
  }

  .btn-primary {
    box-shadow: 0 4px 14px rgba(27, 77, 46, 0.22);
  }

  .btn:active {
    transform: translateY(0);
  }

  .step-num {
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .step-item.reveal.is-visible .step-num {
    box-shadow: 0 6px 16px rgba(45, 122, 74, 0.25);
  }

  .faq .faq-group-header i {
    transition: transform 0.3s ease, color 0.25s ease;
  }

  .content-page .box,
  .guide-intro .box {
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease;
  }

  .guide-step.reveal.is-visible .guide-step-num {
    box-shadow: 0 6px 16px rgba(27, 77, 46, 0.28);
  }

  @media (hover: hover) and (pointer: fine) {
    .features-grid .card:hover,
    .pricing-grid .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(22, 49, 38, 0.12);
      border-color: rgba(184, 212, 196, 0.9);
    }

    .device-shot.is-zoomable:hover,
    .phone-frame.is-zoomable:hover {
      transform: translateY(-4px);
      filter: drop-shadow(0 18px 34px rgba(22, 49, 38, 0.2));
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary:hover {
      box-shadow: 0 8px 22px rgba(27, 77, 46, 0.28);
    }

    .step-item:hover .step-num {
      transform: scale(1.08);
    }

    .content-page .box:hover,
    .guide-intro .box:hover {
      box-shadow: 0 10px 28px rgba(22, 49, 38, 0.07);
    }

    .navbar .logo a:hover img {
      transform: scale(1.04) rotate(-2deg);
    }
  }

  .navbar .logo img {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hamburger-button .hamburger-line,
  .mobile-menu,
  .mobile-menu-backdrop {
    transition: none;
  }
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-dark {
  background-color: var(--dark-color);
  color: #fff;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Text Classes */

.text-xxl {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--primary-color);
}

.text-xl {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 40px 0 20px;
}

.text-lg {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 20px 0 10px;
}

.text-md {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 30px 0 20px;
}

.text-sm {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 10px 0 5px;
}

.text-center {
  text-align: center;
}

/* Background */

.bg-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.bg-light {
  background-color: var(--light-color);
  color: #333;
}

.bg-dark {
  background-color: var(--green-mid);
  color: #fff;
}

.bg-black {
  background-color: var(--green-dark);
  color: #fff;
}

.footer.bg-black {
  background-color: var(--green-dark);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.9rem;
  color: #b8cfc4;
}

/* Hamburger Button */

.hamburger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.hamburger-button .hamburger-line {
  width: 30px;
  height: 3px;
  background: #333;
  margin: 6px 0;
  transition:
    transform 0.22s ease,
    opacity 0.18s ease;
}

.hamburger-button.is-active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-button.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-button.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 190;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(20, 41, 32, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  cursor: pointer;
}

.mobile-menu-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(280px, 85vw);
  max-width: 85vw;
  height: 100%;
  height: 100dvh;
  z-index: 260;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  transition: right 0.24s ease-out;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  right: 0;
}

/* Scroll-reveal (.reveal { opacity: 0 }) mag menu-links nooit verbergen */
.mobile-menu,
.mobile-menu-backdrop,
.mobile-menu * {
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-menu ul,
.mobile-menu ul li,
.mobile-menu ul li a {
  transform: none !important;
}

.mobile-menu ul li a {
  color: var(--muted-color) !important;
}

.mobile-menu ul {
  margin: 0;
  padding-top: 96px;
  padding-bottom: 32px;
  padding-left: 24px;
  padding-right: 24px;
  /* Safari (iOS/macOS) voegt anders standaard inspringing toe aan lijsten */
  -webkit-padding-start: 24px;
  -webkit-padding-end: 24px;
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  text-align: left;
}

.mobile-menu ul li {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  text-align: left;
}

.mobile-menu ul li a {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  margin-inline-start: 0;
  -webkit-margin-start: 0;
  padding: 14px 0;
  padding-left: 0;
  padding-right: 0;
  -webkit-padding-start: 0;
  -webkit-padding-end: 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.2s ease;
  color: var(--muted-color);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  align-self: stretch;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  color: var(--primary-color);
}

.mobile-menu ul li:last-child a {
  margin-left: 0;
}

/* Screenshot lightbox (klik = 50% groter) */

.screenshot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 41, 32, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.screenshot-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.screenshot-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  line-height: 0;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.35));
  transform: scale(0.96);
  transition: transform 0.2s ease;
}

.screenshot-lightbox.is-open .screenshot-lightbox-inner {
  transform: scale(1);
}

.screenshot-lightbox-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
}

.screenshot-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.screenshot-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* Media Queries */

@media (max-width: 960px) {
  .text-xxl {
    font-size: 2.5rem;
  }

}

@media (max-width: 670px) {
  .navbar .main-menu {
    display: none;
  }

  .navbar .hamburger-button {
    display: block;
    z-index: 270;
  }

  .hero .container {
    flex-direction: column;
    min-height: 0;
    align-items: center;
    padding-top: 30px;
    text-align: center;
  }

  .hero .hero-content {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 12px;
  }

  .hero-visual .device-shot {
    width: min(260px, 72vw);
  }

  .hero .hero-text {
    width: 100%;
  }

  .hero .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .app-store-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .steps-layout {
    grid-template-columns: 1fr;
  }

  .steps-visual {
    order: -1;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }

  .steps-header {
    text-align: center;
  }

  .pricing .pricing-grid,
  .features-grid,
  .footer-simple {
    grid-template-columns: 1fr;
  }

  .features-grid .card {
    grid-column: 1 / -1;
  }

  .footer-links ul {
    align-items: center;
  }

  .footer-simple {
    text-align: center;
  }

  .footer-brand a {
    justify-content: center;
  }

  .text-xl {
    font-size: 1.9rem;
  }

  .text-lg {
    font-size: 1.5rem;
  }

  .text-md {
    font-size: 1.1rem;
  }
}

@media (max-width: 500px) {
  .text-xxl {
    font-size: 2rem;
  }
}

/* App-handleiding (handleiding.html) */

.guide-intro {
  margin-bottom: 32px;
}

.guide-intro .box {
  padding: 18px 20px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line-color);
  margin-bottom: 16px;
}

.guide-intro .box-accent {
  background: #e8f3ec;
  border-color: #c5dcc8;
}

.guide-warning {
  background: #fff4e6;
  border: 1px solid #f0d9a8;
  color: #5c4a1f;
}

.guide-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 56px;
}

.guide-toc {
  position: sticky;
  top: 96px;
}

.guide-toc-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-color);
  margin: 0 0 12px;
}

.guide-toc nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.guide-toc nav a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--dark-color);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.guide-toc nav a:hover {
  background: var(--light-color);
  color: var(--primary-color);
}

.guide-chapter {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-color);
  scroll-margin-top: 96px;
}

.guide-chapter-end {
  border-bottom: none;
  padding-bottom: 0;
}

.guide-chapter h2 {
  margin: 0 0 10px;
  color: var(--primary-color);
  font-size: 1.65rem;
}

.guide-chapter-lead {
  margin: 0 0 28px;
  color: var(--muted-color);
  max-width: 42em;
}

.guide-step {
  margin-bottom: 36px;
}

.guide-step:last-child {
  margin-bottom: 0;
}

.guide-step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.guide-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-step h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--dark-color);
}

.guide-step > p {
  margin: 0 0 16px;
  color: var(--muted-color);
  max-width: 42em;
}

.guide-figure {
  margin: 0;
  max-width: 300px;
}

.guide-step .guide-figure + .guide-figure {
  margin-top: 24px;
}

.guide-shot {
  width: 280px;
  max-width: 100%;
}

.guide-figure figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted-color);
  line-height: 1.45;
}

.guide-placeholder {
  max-width: 300px;
  padding: 20px 18px;
  border: 2px dashed #c5dcc8;
  border-radius: 12px;
  background: #f7faf8;
  color: var(--muted-color);
  font-size: 0.9rem;
}

.guide-placeholder p {
  margin: 0 0 8px;
}

.guide-placeholder p:last-child {
  margin-bottom: 0;
}

.guide-placeholder code {
  display: block;
  margin-top: 8px;
  padding: 8px 10px;
  background: #fff;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--primary-color);
  word-break: break-all;
}

.guide-compare h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--primary-color);
}

.guide-compare ul {
  margin: 0;
  padding-left: 1.2em;
}

.guide-compare li {
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .guide-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .guide-toc {
    position: static;
    padding: 16px 18px;
    background: var(--light-color);
    border-radius: 12px;
    border: 1px solid var(--line-color);
  }

  .guide-toc nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }

  .guide-toc nav a {
    padding: 6px 12px;
    background: #fff;
    border: 1px solid var(--line-color);
    font-size: 0.85rem;
  }

  .guide-figure,
  .guide-placeholder {
    max-width: 100%;
  }

  .guide-shot {
    width: min(280px, 100%);
  }
}
