/* ===========================================================
   Mijndomein Verhuisservice — huisstijl (design tokens + basis)
   Vorm geïnspireerd op de betatesters-wizard, volledig herkleurd
   naar de Mijndomein-huisstijl: paars #6b2fad, accent-cyaan
   #04DBDB, Inter. Vlakker en zakelijker dan de sticker-stijl.
   =========================================================== */

:root {
  /* merkkleuren */
  --paars:     #6b2fad;
  --paars-2:   #6a29ae;
  --paars-700: #57238d;
  --paars-50:  #f3ecfb;
  --cyaan:     #04dbdb;
  --cyaan-700: #06b9b9;

  /* neutralen */
  --ink:       #1c1230;
  --bg:        #faf8fe;
  --surface:   #ffffff;
  --surface-2: #f5f2fb;
  --heading:   #1c1230;
  --text:      #3a3450;
  --muted:     #786f90;
  --border:    #ece6f5;

  /* status */
  --ok:        #06b9b9;   /* geldig = cyaan-tint */
  --danger:    #e23b5a;

  --ring:      rgba(107, 47, 173, .20);
  --ring-ok:   rgba(4, 219, 219, .22);
  --ring-bad:  rgba(226, 59, 90, .20);

  --shadow-sm: 0 1px 2px rgba(28, 18, 48, .04), 0 8px 24px rgba(28, 18, 48, .06);
  --shadow-md: 0 14px 44px rgba(28, 18, 48, .10);
  --shadow-pop: 0 18px 50px rgba(107, 47, 173, .16);

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw: 1060px;
  --r-card: 22px;
  --r-btn: 11px;
  --r-field: 11px;

  --grad-band: linear-gradient(180deg, #ffffff 0%, var(--paars-50) 100%);
  --hero-glow: radial-gradient(1100px 460px at 50% -24%, rgba(255, 255, 255, .9), transparent 70%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--heading);
  line-height: 1.12;
  letter-spacing: -.018em;
  margin: 0;
  font-weight: 700;
}
p { margin: 0; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--paars);
  margin-bottom: 14px;
}
.accent { color: var(--paars); }

/* ===== Knoppen ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--r-btn);
  padding: 0 24px;
  height: 50px;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .18s ease, background .18s, color .18s, border-color .18s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--paars);
  color: #fff;
  box-shadow: 0 6px 18px rgba(107, 47, 173, .26);
}
.btn-primary:hover { background: var(--paars-700); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(107, 47, 173, .32); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: var(--surface);
  color: var(--heading);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--paars); color: var(--paars); }
.btn-soft { background: var(--surface-2); color: var(--heading); }
.btn-soft:hover { background: var(--border); }
.btn-sm { height: 44px; padding: 0 18px; font-size: .95rem; }
.btn-lg { height: 56px; padding: 0 30px; font-size: 1.05rem; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Ondoorzichtig: anders schemert de wizard die eronder doorscrollt door de
     glas-achtergrond heen (ziet er rommelig uit). */
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 22px; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 26px; width: auto; }
.brand .divider { width: 1px; height: 22px; background: var(--border); }
.brand .svc { font-size: 14.5px; font-weight: 600; color: var(--muted); letter-spacing: -.01em; }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.header-link { font-size: 14.5px; font-weight: 500; color: var(--text); display: inline-flex; align-items: center; gap: 7px; }
.header-link:hover { color: var(--paars); }
.header-link svg { width: 16px; height: 16px; color: var(--paars); }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; background: var(--grad-band); border-bottom: 1px solid var(--border); }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--hero-glow); pointer-events: none; }
.hero .wrap { position: relative; padding: 58px 24px 30px; text-align: center; }
.hero h1 { font-size: clamp(32px, 4.6vw, 50px); font-weight: 800; max-width: 18ch; margin: 0 auto; }
.hero h1 em { font-style: normal; color: var(--paars); }
.hero-sub { font-size: 18px; color: var(--text); margin: 18px auto 0; max-width: 52ch; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; margin-top: 26px; }
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--heading);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  box-shadow: var(--shadow-sm);
}
.trust-pill svg { width: 15px; height: 15px; color: var(--cyaan-700); }

/* ===== Sectie: zo werkt het ===== */
.how { padding: 64px 0 20px; }
.how .sec-head { text-align: center; max-width: 620px; margin: 0 auto 38px; }
.how .sec-head h2 { font-size: clamp(26px, 3.4vw, 34px); font-weight: 800; }
.how .sec-head p { color: var(--text); font-size: 16.5px; margin-top: 12px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.how-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.how-card .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--paars-50); color: var(--paars); display: grid; place-items: center; margin-bottom: 16px; }
.how-card .ic svg { width: 24px; height: 24px; }
.how-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 7px; }
.how-card p { font-size: 14.5px; color: var(--text); }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border); background: var(--surface); margin-top: 70px; padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-inner img { height: 22px; }
.footer-inner small { color: var(--muted); font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13.5px; color: var(--text); }
.footer-links a:hover { color: var(--paars); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .how-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero .wrap { padding: 42px 20px 24px; }
  .brand .svc { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}
