:root {
  --black: #1a1a1a;
  --amber: #f5a623;
  --white: #ffffff;
  --bg: #f5f5f5;
  --muted: #666666;
  --line: #e6e6e6;
  --groen: #4caf82;
  --oranje: #f5793a;
  --rood: #e53935;
  --radius: 18px;
  --max: 1120px;
  --shadow: 0 16px 40px rgba(26, 26, 26, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 20;
  background: var(--amber);
  color: var(--black);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.skip:focus {
  top: 12px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 245, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.2rem;
}

.brand img {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: none;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.78;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang {
  display: inline-flex;
  border: 1px solid var(--black);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}

.lang button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 11px;
  cursor: pointer;
}

.lang button[aria-pressed="true"] {
  background: var(--black);
  color: var(--amber);
}

/* Hero */

.hero {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 72px;
  text-align: center;
}

.hero-bee {
  width: 148px;
  height: 148px;
  margin: 0 auto 22px;
  animation: float 2.4s ease-in-out infinite;
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 9vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--amber);
}

.hero .lead {
  max-width: 34rem;
  margin: 18px auto 0;
  font-size: 1.12rem;
  color: #d8d8d8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.btn-amber {
  background: var(--amber);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.disclaimer {
  margin: 22px 0 0;
  color: #9e9e9e;
  font-size: 0.86rem;
}

/* Sections */

.section {
  padding: 72px 0;
}

.section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--amber);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.section-intro {
  max-width: 38rem;
  color: var(--muted);
  margin: 0 0 36px;
}

.grid {
  display: grid;
  gap: 16px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 12px 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

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

.feature-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--amber);
  font-weight: 800;
  display: grid;
  place-items: center;
}

.step h3 {
  margin: 4px 0 6px;
  font-size: 1.08rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* Pricing */

.price-grid {
  display: grid;
  gap: 16px;
}

.price {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price.featured {
  background: var(--black);
  color: var(--white);
}

.price .badge {
  align-self: flex-start;
  background: var(--amber);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 8px;
}

.price h3 {
  margin: 0;
  font-size: 1.2rem;
}

.price .scans {
  color: var(--muted);
  margin: 0;
}

.price.featured .scans,
.price.featured .benefit {
  color: #cfcfcf;
}

.price .amount {
  margin: 8px 0 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--amber);
}

.price .benefit {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-note {
  margin: 22px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Privacy band */

.privacy-band {
  background: var(--black);
  color: var(--white);
}

.privacy-band .section-intro {
  color: #cfcfcf;
}

.privacy-band h2 {
  color: var(--white);
}

/* Footer */

.site-footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--black);
}

.copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Inner pages */

.page-hero {
  padding: 48px 0 24px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: -0.04em;
}

.prose {
  max-width: 44rem;
}

.prose h2 {
  margin: 36px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.2rem;
}

.prose a {
  color: var(--black);
  font-weight: 700;
}

.updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq details {
  background: var(--white);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: var(--white);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
}

.form .btn {
  justify-self: start;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.contact-mail {
  margin: 12px 0 0;
}

.page-hero .faq {
  margin: 8px 0 40px;
  max-width: 44rem;
}

.contact-block {
  max-width: 44rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.contact-block h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.contact-block > p {
  color: var(--muted);
  margin: 0 0 8px;
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .hero {
    padding: 88px 0 104px;
  }

  .hero-bee {
    width: 196px;
    height: 196px;
  }

  .grid.features {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 980px) {
  .grid.features {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
