/* zzp-scan.online — basisstijl
   Kleuren en typografie overgenomen uit het Claude Design-ontwerp (zzp-scan.dc.html). */

:root {
  /* Neutralen met een koele ondertoon, zodat ze bij het blauw staan. */
  --ink: #151b24;
  --ink-soft: #3a4250;
  --ink-muted: #44505f;
  --grey: #6b737f;
  --grey-light: #6e7681;
  --grey-faint: #9aa1ab;
  /* Blauw. --accent is de hoofdkleur, --accent-mid is lichter (links bij hover),
     --accent-dark donkerder (knop bij hover), --accent-bright alleen op donkere vlakken. */
  --accent: #1F3A6D;
  --accent-mid: #2c5299;
  --accent-dark: #15284b;
  --accent-bright: #8aa8e4;
  --bg: #fbfbfa;
  --bg-panel: #ffffff;
  --bg-tint: #f0f2f8;
  --bg-dark: #111f3c;
  --border: #e6e8ec;
  --border-tint: #e3e7ed;
  --border-input: #d6dbe3;
  --border-dashed: #b7bfcb;
  --hover-tint: #eef1f8;

  --wrap: 1120px;
  --pad: 28px;

  --mono: 'Spline Sans Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-mid); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: #1F3A6D26; }

@keyframes fadeup {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.fadeup { animation: fadeup .5s ease both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fadeup { animation: none; }
  * { transition: none !important; }
}

/* Skiplink voor toetsenbord- en schermlezergebruikers */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip:focus { left: 0; color: #fff; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
main { flex: 1; }
.col { display: flex; flex-direction: column; }
.measure { max-width: 720px; }
.measure-narrow { max-width: 680px; }
.measure-wide { max-width: 760px; }

/* ---------- Header ----------
   Donker, en hij loopt naadloos door in de donkere kop eronder. */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(17, 31, 60, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.header-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 16px var(--pad);
  display: flex; align-items: center; gap: 28px;
}
.logo { display: flex; align-items: center; gap: 10px; padding: 0; }
.logo-dot { width: 12px; height: 12px; border-radius: 3px; background: var(--accent-bright); display: inline-block; flex-shrink: 0; }
.logo-text { font-weight: 800; font-size: 1.12rem; letter-spacing: -0.02em; color: #fff; white-space: nowrap; }
.logo-text em { font-style: normal; color: var(--accent-bright); }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav-link {
  padding: 8px 12px; font-size: 0.95rem; font-weight: 600;
  color: #c6cee4; border-radius: 8px;
}
.nav-link:hover { background: rgba(255, 255, 255, 0.10); color: #fff; }
.nav-link[aria-current="page"] { background: rgba(255, 255, 255, 0.13); color: #fff; }

/* ---------- Taalwisselaar ---------- */
.lang { position: relative; }
.lang-toggle {
  padding: 8px 12px; font-size: 0.9rem; font-weight: 600; color: #c6cee4;
  border-radius: 8px; display: flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.lang-toggle:hover { border-color: rgba(255, 255, 255, 0.42); color: #fff; }
.lang-caret { font-size: 0.7rem; color: #9dabc6; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 6px);
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 6px;
  box-shadow: 0 10px 30px rgba(17, 31, 60, 0.12); min-width: 150px;
}
.lang-menu[hidden] { display: none; }
.lang-opt {
  display: block; width: 100%; text-align: left;
  padding: 8px 12px; border-radius: 8px; font-size: 0.9rem; color: var(--grey);
}
.lang-opt:hover:not([disabled]) { background: #f7f9fb; color: var(--ink); }
.lang-opt[aria-current="true"] { font-weight: 600; background: var(--hover-tint); color: var(--ink); }
.lang-opt[disabled] { cursor: not-allowed; opacity: 0.75; }
.lang-note { padding: 8px 12px 4px; font-size: 0.72rem; color: #a7aeb9; font-family: var(--mono); }

/* ---------- Typografie ---------- */
.eyebrow {
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
}
.h1 {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.025em; color: var(--ink); text-wrap: balance;
}
.h1-home { font-size: clamp(2.2rem, 5.2vw, 3.6rem); line-height: 1.04; letter-spacing: -0.03em; }
.h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  letter-spacing: -0.02em; color: var(--ink);
}
.h2-sm { font-size: clamp(1.4rem, 2.8vw, 1.9rem); }
.lead { font-size: 1.2rem; line-height: 1.6; color: var(--ink-muted); text-wrap: pretty; }
.prose { display: flex; flex-direction: column; gap: 20px; font-size: 1.1rem; line-height: 1.65; color: var(--ink-soft); }
.prose p { text-wrap: pretty; }
.prose-lg { font-size: 1.15rem; gap: 18px; }
.emphasis { font-weight: 700; color: var(--ink); font-size: 1.18rem; }
.kicker { font-size: 1.05rem; color: var(--accent); font-weight: 600; }

/* ---------- Secties ---------- */
.section { padding-top: 56px; padding-bottom: 56px; }
.section-hero { padding-top: 80px; padding-bottom: 24px; }
.section-hero-home { padding-top: 96px; padding-bottom: 40px; }

/* ---------- Donkere kop ----------
   Loopt door vanaf de header. Alles wat erin staat wordt licht. */
.hero-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  /* Basis: zacht verticaal verloop met een lichtgloed van linksboven (variant A). */
  background:
    radial-gradient(820px 460px at 12% -18%, rgba(138, 168, 228, 0.20), transparent 62%),
    linear-gradient(180deg, #17284d 0%, var(--bg-dark) 68%);
}
/* Fijn raster rechtsboven dat uitdooft (variant B). Puur decoratief. */
.hero-band::after {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 100% 58px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 58px 100%;
  -webkit-mask-image: radial-gradient(120% 100% at 82% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(120% 100% at 82% 0%, #000 0%, transparent 72%);
}
/* Inhoud boven de decoratie houden. */
.hero-band > * { position: relative; z-index: 1; }

/* ---------- Kop met foto ----------
   De foto is een echt <img> (.hero-band__photo) als eerste kind van de band.
   Een <img>-src rekent relatief t.o.v. de pagina, dus dit werkt zowel lokaal
   als onder een submap. Daarboven ligt via ::after een marineblauwe waas die
   links het donkerst is (leesbare tekst) en naar rechts opklaart (foto zichtbaar).
   Die waas trekt alle foto's naar dezelfde toon, ook een felle kleurenfoto. */
.hero-band--photo { background: var(--bg-dark); }
.hero-band--photo .hero-band__photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center right;
}
/* Waas over de foto. Overschrijft het raster van .hero-band::after. */
.hero-band--photo::after {
  content: ""; display: block;
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  -webkit-mask-image: none; mask-image: none;
  background:
    radial-gradient(820px 460px at 12% -18%, rgba(138, 168, 228, 0.16), transparent 60%),
    radial-gradient(680px 380px at 88% 116%, rgba(30, 58, 109, 0.50), transparent 60%),
    linear-gradient(100deg,
      rgba(15, 27, 54, 0.96) 0%,
      rgba(15, 27, 54, 0.85) 38%,
      rgba(20, 40, 82, 0.60) 74%,
      rgba(30, 58, 109, 0.46) 100%);
}
@media (max-width: 720px) {
  /* Op smal scherm de waas gelijkmatiger en donkerder, leesbaarheid eerst. */
  .hero-band--photo::after {
    background:
      linear-gradient(180deg,
        rgba(15, 27, 54, 0.90) 0%,
        rgba(15, 27, 54, 0.82) 55%,
        rgba(20, 40, 82, 0.72) 100%);
  }
}

.hero-band .eyebrow { color: var(--accent-bright); }
.hero-band .h1 { color: #fff; }
.hero-band .h2 { color: #fff; }
.hero-band .lead { color: #c6cee4; }
.hero-band .prose { color: #c6cee4; }
.hero-band .emphasis { color: #fff; }
.hero-band .contact-meta { color: #9dabc6; border-top-color: rgba(255, 255, 255, 0.14); }
.hero-band a:not(.btn) { color: var(--accent-bright); }
.hero-band a:not(.btn):hover { color: #fff; }
.hero-band .btn-secondary { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.32); }
.hero-band .btn-secondary:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.08); }
/* De witte keuzekaarten hebben op donker geen rand nodig. */
.hero-band .choice { border-color: transparent; }
.hero-band .choice:hover { box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28); border-color: transparent; }
.band { background: var(--bg-tint); border-top: 1px solid var(--border-tint); border-bottom: 1px solid var(--border-tint); }
.band-inner { padding-top: 64px; padding-bottom: 64px; }

/* ---------- Keuzekaarten (home) ---------- */
.choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.choice {
  display: flex; flex-direction: column; gap: 14px; text-align: left;
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 40px 36px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.choice:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(17, 31, 60, 0.10); border-color: var(--accent); }
.choice-tag { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-light); }
.choice-title { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); line-height: 1.15; }
.choice-body { font-size: 1.02rem; line-height: 1.55; color: var(--ink-muted); }
.choice-more { margin-top: 8px; font-weight: 700; color: var(--accent); display: flex; align-items: center; gap: 8px; }

/* ---------- Homepage: pakketblok ---------- */
.home-split {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start;
}
.home-list { list-style: none; display: flex; flex-direction: column; }
.home-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 0; border-bottom: 1px solid #dde3ee;
  font-size: 1.08rem; font-weight: 600; color: var(--ink);
}
.home-list li:last-child { border-bottom: none; }
.home-list li::before { content: "—"; color: var(--accent); font-weight: 800; font-size: 1.1rem; }

@media (max-width: 860px) {
  .home-split { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Lijst met streepjes ---------- */
.ticks { display: flex; flex-direction: column; gap: 14px; }
.tick { display: flex; gap: 14px; align-items: flex-start; }
.tick-mark { width: 8px; height: 8px; border-radius: 2px; background: var(--accent); margin-top: 9px; flex-shrink: 0; }
.tick span:last-child { font-size: 1.1rem; line-height: 1.5; color: var(--ink-soft); }

/* ---------- Placeholders ---------- */
.placeholder {
  border: 1px dashed var(--border-dashed); border-radius: 12px;
  padding: 18px 20px; background: var(--bg);
}
.placeholder p { font-family: var(--mono); font-size: 0.82rem; line-height: 1.6; color: var(--grey); }
.placeholder-label {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--grey-faint); margin-bottom: 6px;
}
.placeholder-value { font-family: var(--mono); font-size: 0.95rem; color: var(--grey); }

/* ---------- Pakket ---------- */
.package {
  background: #fff; border: 1px solid var(--border); border-radius: 24px;
  padding: clamp(28px, 4vw, 48px); max-width: 820px;
  box-shadow: 0 12px 40px rgba(17, 31, 60, 0.07);
}
.package-head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.package-note { font-family: var(--mono); font-size: 0.78rem; color: var(--grey-light); }
.package-items {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 24px; margin-bottom: 32px; list-style: none;
}
.package-item {
  display: flex; gap: 12px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid #edf0f4;
  font-size: 1.08rem; font-weight: 600; color: var(--ink);
}
.package-item::before { content: "—"; color: var(--accent); font-weight: 800; font-size: 1.1rem; }
.package-prices { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }

/* Vaste prijs — geen gestreept "volgt nog"-kader meer, maar een stevig blok. */
.price { border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; background: var(--bg); }
.price-label {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--grey); margin-bottom: 8px;
}
.price-value { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); line-height: 1.15; }
.price-value small { display: block; font-size: 0.8rem; font-weight: 500; color: var(--grey); letter-spacing: 0; margin-top: 3px; }

/* ---------- Donkere sectie ---------- */
.dark { background: var(--bg-dark); color: #eaeef8; }
.dark-inner { padding-top: clamp(64px, 8vw, 110px); padding-bottom: clamp(64px, 8vw, 110px); }
.dark .eyebrow { color: var(--accent-bright); margin-bottom: 24px; }
.dark-statement {
  font-size: clamp(1.6rem, 3.6vw, 2.5rem); font-weight: 800; line-height: 1.18;
  letter-spacing: -0.02em; color: #fff; margin-bottom: 36px; text-wrap: balance;
}
/* Links op donker moeten licht zijn — de standaard accentkleur is hier onleesbaar. */
.dark a { color: var(--accent-bright); text-decoration: underline; text-underline-offset: 3px; }
.dark a:hover { color: #fff; }
.dark-prose { display: flex; flex-direction: column; gap: 22px; font-size: 1.18rem; line-height: 1.7; color: #c6cee4; }
.dark-prose p { text-wrap: pretty; }
.dark-prose .strong { color: #eaeef8; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; }
.faq-q {
  width: 100%; text-align: left; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 1.12rem; font-weight: 700; color: var(--ink);
}
.faq-sign { font-size: 1.5rem; color: var(--accent); font-weight: 400; line-height: 1; flex-shrink: 0; }
.faq-a { padding: 0 24px 24px; font-size: 1.08rem; line-height: 1.65; color: var(--ink-soft); }
.faq-a[hidden] { display: none; }

/* ---------- Knoppen ---------- */
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 16px 28px; font-weight: 700; font-size: 1.02rem;
  border-radius: 12px; text-align: center;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-secondary { background: #fff; color: var(--ink); border: 1px solid #c9d2de; }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Aan de slag ---------- */
.cta {
  background: var(--bg-tint); border: 1px solid var(--border-tint); border-radius: 24px;
  padding: clamp(36px, 5vw, 64px); max-width: 820px;
}
.cta p { font-size: 1.18rem; line-height: 1.6; color: var(--ink-soft); max-width: 560px; margin-bottom: 32px; text-wrap: pretty; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 56px; align-items: start; }
.contact-meta {
  margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
  font-size: 0.95rem; color: var(--grey); font-family: var(--mono);
}
.form-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: clamp(28px, 4vw, 40px); box-shadow: 0 12px 40px rgba(17, 31, 60, 0.07);
}
.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.field input, .field textarea {
  padding: 14px 16px; border: 1px solid var(--border-input); border-radius: 10px;
  font-size: 1rem; font-family: inherit; color: var(--ink); background: var(--bg); outline: none;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent); background: #fff; }
.form .btn { margin-top: 4px; border: none; }

.form-msg { padding: 24px 0; text-align: center; }
.form-msg[hidden] { display: none; }
.form-msg-icon {
  width: 52px; height: 52px; border-radius: 14px; background: #e9ecf8; color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 20px;
}
.form-msg h3 { font-size: 1.35rem; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.form-msg p { font-size: 1.05rem; line-height: 1.6; color: var(--ink-soft); }

/* ---------- Footer ---------- */
/* Haarlijn zodat de footer ook begint te lezen als er een donker vlak boven staat. */
.site-footer { background: var(--bg-dark); color: #c6cee4; margin-top: auto; border-top: 1px solid rgba(255, 255, 255, 0.10); }
.footer-inner { max-width: var(--wrap); margin: 0 auto; padding: 56px var(--pad) 40px; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-text em { color: var(--accent-bright); }
.footer-about { font-size: 0.95rem; line-height: 1.6; color: #a0abc6; max-width: 280px; }
.footer-head {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #8794ae; margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-links a { font-size: 0.98rem; color: #c6cee4; }
.footer-links a:hover { color: #fff; }
.footer-links .ext { color: var(--accent-bright); }
.footer-bottom {
  padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: #8794ae; font-family: var(--mono);
}

/* ---------- Focus ---------- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Mobiel ----------
   Het ontwerp ging uit van een brede header. Op smalle schermen zet de navigatie
   zich onder het logo in plaats van ernaast te wringen. */
@media (max-width: 720px) {
  :root { --pad: 20px; }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px var(--pad);
  }
  .site-nav {
    margin-left: 0;
    width: 100%;
    gap: 2px;
    justify-content: space-between;
  }
  .nav-link { padding: 8px 6px; font-size: 0.88rem; }
  /* De taalknop naast het logo in plaats van op een eigen regel. */
  .lang { position: absolute; top: 10px; right: var(--pad); }
  .lang-toggle { padding: 7px 10px; font-size: 0.85rem; }
  .lang-menu { right: 0; }

  .choice { padding: 32px 26px; }
  .choice-title { font-size: 1.45rem; }

  .contact-grid { gap: 36px; }
  .package-items { gap: 0 24px; }

  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

@media (max-width: 400px) {
  .nav-link { font-size: 0.82rem; padding: 8px 4px; }
}
