/* Mailmigreren.nl - styling geïnspireerd op boriskusters.nl
   Light mode first, geen hamburger, MM brand-accent #e17f38 */

:root {
  --bg: #ffffff;
  --surface: #f7f8fa;
  --surface-2: #ffffff;
  --border: #e5e7eb;
  --text: #22374a;
  --text-muted: #3f485a;
  --accent: #e17f38;
  --accent-dark: #c66722;
  --accent-soft: rgba(225, 127, 56, 0.1);
  --accent-softer: rgba(225, 127, 56, 0.05);
  --blue: #0055ff;
  --blue-soft: rgba(0, 85, 255, 0.08);
  --success: #15a155;
  --error: #c4523d;
  --shadow-sm: 0 1px 3px rgba(34, 55, 74, 0.06);
  --shadow-md: 0 4px 20px rgba(34, 55, 74, 0.05);
  --shadow-lg: 0 8px 32px rgba(34, 55, 74, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max: 1100px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { box-sizing: border-box; }

/* ============================================================
   SITE-WIDE WIDTH REGEL
   - .container = 1100px max-width, OP ELKE PAGINA (consistency)
   - Voor reading-heavy content (article body, legal tekst, etc.)
     gebruik interne wrapper .blog-article / .legal-body met
     max-width 760px ge-centered binnen .container
   ============================================================ */

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { scroll-behavior: smooth; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

h1, h2, h3, h4 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-weight: 800; }
h3 { font-size: 1.2rem; }
.accent { color: var(--accent); position: relative; display: inline-block; }
.accent-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0 10 Q 50 20 100 10' fill='none' stroke='%23e17f38' stroke-opacity='0.5' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/100% 100%;
}

p { margin: 0 0 12px 0; color: var(--text-muted); }

/* ======== Background effects ======== */
.bg-effects {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.55;
  border-radius: 50%;
  animation: blob-drift 20s infinite alternate var(--ease);
  will-change: transform;
}
.blob-1 {
  top: -10%; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(225,127,56,0.18) 0%, transparent 70%);
}
.blob-2 {
  bottom: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(0,85,255,0.1) 0%, transparent 70%);
  animation-delay: -6s;
  animation-duration: 26s;
}
.blob-3 {
  top: 40%; left: 50%;
  width: 30vw; height: 30vw;
  background: radial-gradient(circle, rgba(225,127,56,0.08) 0%, transparent 70%);
  animation-delay: -12s;
  animation-duration: 22s;
}
@keyframes blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(8%, 12%) scale(1.08); }
  66%  { transform: translate(-6%, 8%) scale(0.95); }
  100% { transform: translate(4%, -10%) scale(1.05); }
}

/* Drifting particles (subtle) */
.bg-effects::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(225,127,56,0.35) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(0,85,255,0.25) 1px, transparent 1.5px);
  background-size: 240px 240px, 320px 320px;
  background-position: 0 0, 120px 80px;
  opacity: 0.5;
  animation: particle-drift 60s linear infinite;
}
@keyframes particle-drift {
  0%   { background-position: 0 0, 120px 80px; }
  100% { background-position: 240px 240px, 360px 320px; }
}
.tech-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(34, 55, 74, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(34, 55, 74, 0.04) 1px, transparent 1px);
  mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
}

/* ======== Header (sticky, no hamburger) ======== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}
.brand strong {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.brand strong span { color: var(--accent); }
.brand strong .dot {
  color: var(--accent);
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
.brand:hover .dot { transform: scale(1.3); }
.brand-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
  letter-spacing: 0;
}
.header-nav { display: flex; align-items: center; gap: 22px; }
.header-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover:not(.btn) { color: var(--accent); }

/* ======== Promo strip (weekly timer) ======== */
.promo-strip {
  background: linear-gradient(90deg, #22374a 0%, #2c4760 100%);
  color: #fff;
  border-bottom: 1px solid #1a2937;
  position: sticky;
  top: 72px;
  z-index: 99;
}
.promo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 24px;
  font-size: 0.88rem;
  flex-wrap: wrap;
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.promo-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.6s infinite;
}
.promo-text { color: #cfd6dd; }
.promo-text strong { color: #fff; font-weight: 700; }
.promo-timer {
  color: #cfd6dd;
  font-variant-numeric: tabular-nums;
}
.promo-timer strong {
  color: var(--accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  min-width: 110px;
  display: inline-block;
  text-align: right;
}

@media (max-width: 700px) {
  .promo-strip-inner { gap: 10px; padding: 8px 16px; font-size: 0.78rem; }
  .promo-badge { font-size: 0.68rem; padding: 3px 9px; }
  .promo-text { display: none; }
}

/* ======== Promo variants door de site ======== */

/* Calc-card deal-strip (onder de prijs in hero) */
.calc-deal {
  margin-top: 14px;
  padding: 10px 12px;
  background: var(--accent-soft);
  border: 1px dashed rgba(225, 127, 56, 0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text);
}
.calc-deal-badge {
  background: var(--accent);
  color: #fff;
  padding: 3px 9px;
  border-radius: 50px;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.calc-deal .promo-countdown { color: var(--accent); font-weight: 700; font-variant-numeric: tabular-nums; }

/* Prijs sectie banner boven de tiers */
.prijs-deal-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 28px auto;
  max-width: 600px;
  padding: 12px 18px;
  background: var(--accent-soft);
  border: 1px solid rgba(225, 127, 56, 0.25);
  border-radius: 50px;
  font-size: 0.92rem;
  color: var(--text);
  animation: deal-glow 3s ease-in-out infinite;
}
.prijs-deal-icon { font-size: 1.1rem; line-height: 1; }
.prijs-deal-text strong { color: var(--accent); font-weight: 700; }
.prijs-deal-text .promo-countdown { color: var(--accent); font-variant-numeric: tabular-nums; }

@keyframes deal-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225, 127, 56, 0.0); }
  50%      { box-shadow: 0 0 0 6px rgba(225, 127, 56, 0.08); }
}

/* Wizard sectie deal banner */
.wizard-deal-banner {
  text-align: center;
  margin: -16px auto 36px auto;
  max-width: 560px;
  padding: 8px 16px;
  background: var(--accent-soft);
  border-radius: 8px;
  font-size: 0.86rem;
  color: var(--text);
}
.wizard-deal-banner strong { color: var(--accent); font-weight: 700; }
.wizard-deal-banner .promo-countdown { font-variant-numeric: tabular-nums; }

/* Bottom CTA-sectie timer onder de knop */
.cta-deal {
  margin-top: 22px;
  font-size: 0.9rem;
  color: #cfd6dd;
}
.cta-deal strong { color: var(--accent); font-weight: 700; font-variant-numeric: tabular-nums; }

@media (max-width: 700px) {
  .prijs-deal-banner { font-size: 0.82rem; padding: 10px 14px; }
  .calc-deal { font-size: 0.76rem; flex-wrap: wrap; }
}

/* ======== Buttons ======== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-family: inherit;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 0.88rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; margin-top: 8px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(225, 127, 56, 0.25);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(225, 127, 56, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}
.btn-secondary {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* ======== Hero ======== */
.hero {
  padding: 80px 0 64px 0;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(225, 127, 56, 0.2);
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
.hero-text h1 { margin-bottom: 24px; }
.hero-text .lead {
  font-size: 1.18rem;
  max-width: 560px;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-cta {
  margin: 0 0 28px 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-trust li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
}
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 18px; height: 18px;
  background: var(--accent-soft);
  border-radius: 50%;
}
.hero-trust li::after {
  content: "";
  position: absolute;
  left: 5px; top: 9px;
  width: 7px; height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.hero-card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}
.card-title {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.calc-label {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.calc-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}
.calc-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 10px;
  font-size: 1.4rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  transition: all 0.15s;
}
.calc-btn:hover { background: var(--surface); border-color: var(--accent); color: var(--accent); }
#calc-input {
  flex: 1;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
}
#calc-input:focus { outline: none; border-color: var(--accent); }
.calc-result { padding: 16px 0; }
.calc-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.calc-amount .calc-unit {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
}
.calc-meta { color: var(--text-muted); font-size: 0.88rem; margin-top: 6px; }
.calc-meta-small { color: var(--text-muted); font-size: 0.78rem; }
.calc-foot { text-align: center; margin-top: 14px; font-size: 0.82rem; color: var(--text-muted); }

/* ======== Migratie flow illustration ======== */
.section-flow {
  padding: 56px 0 80px 0;
  position: relative;
}
.flow-wrap {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}
.flow-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
}
.flow-caption {
  text-align: center;
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.flow-caption strong { color: var(--accent); font-weight: 600; }

/* ======== Sections ======== */
.section { padding: 88px 0; position: relative; }
.section-alt { background: var(--surface); }
.section-cta {
  text-align: center;
  background: var(--text);
  color: #fff;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(225, 127, 56, 0.15) 0%, transparent 60%);
}
.section-cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); position: relative; }
.section-cta p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 28px; color: #cfd6dd; position: relative; }
.section-cta .btn { position: relative; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.4rem); text-align: center; margin-bottom: 16px; }
.section-lead { text-align: center; font-size: 1.05rem; max-width: 720px; margin: 0 auto 48px auto; color: var(--text-muted); }

/* ======== Steps (Hoe het werkt) ======== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  background: var(--surface-2);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.steps li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(225, 127, 56, 0.3);
}
.step-num {
  position: absolute;
  top: -8px;
  right: 20px;
  font-size: 5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(34, 55, 74, 0.08);
  z-index: 0;
  pointer-events: none;
}
.steps h3, .steps p { position: relative; z-index: 1; }
.steps h3 { margin-bottom: 10px; }
.steps p { margin: 0; }

/* ======== Prijs tiers ======== */
.price-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0 24px 0;
}
.price-tier {
  background: var(--surface-2);
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s var(--ease);
}
.price-tier:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.price-mb { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 10px; }
.price-amt { color: var(--accent); font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; }
.price-formule { text-align: center; color: var(--text-muted); }
.price-formule code {
  background: var(--surface-2);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

/* ======== Reassurance grid ======== */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.reassurance {
  background: var(--surface-2);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.reassurance:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(225, 127, 56, 0.3);
}
.reassurance-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s var(--ease);
}
.reassurance:hover .reassurance-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08) rotate(-3deg);
}
.reassurance h3 { margin-bottom: 8px; }
.reassurance p { margin: 0; }

/* ======== Compare table ======== */
.table-wrap {
  overflow-x: auto;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-table tr.highlight {
  background: linear-gradient(90deg, var(--accent-soft) 0%, var(--accent-softer) 100%);
  position: relative;
}
.compare-table tr.highlight td {
  padding-top: 22px;
  padding-bottom: 22px;
  border-bottom-color: var(--accent);
  font-weight: 500;
}
.compare-table tr.highlight td:first-child {
  border-left: 4px solid var(--accent);
}
.compare-table tr.highlight strong {
  color: var(--accent);
  font-size: 1.08rem;
  font-weight: 800;
}
.compare-table tr.muted-row td { color: #8a96a8; }
.compare-table tr.muted-row strong { color: var(--text); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.best-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.cell-yes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-weight: 600;
}
.cell-no {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b8b8b8;
  font-weight: 500;
}
.compare-table tr.highlight .cell-yes { color: var(--success); }
.compare-table tr.highlight .cell-no { color: var(--error); }
.small { font-size: 0.82rem; color: var(--text-muted); text-align: center; margin-top: 16px; }

/* ======== FAQ ======== */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 2px 0;
  transition: all 0.2s var(--ease);
}
.faq details:hover { border-color: rgba(225, 127, 56, 0.3); }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: "−"; }
.faq summary h3 {
  display: inline;
  font-size: 1.02rem;
  margin: 0;
  padding-right: 28px;
  color: var(--text);
  font-weight: 600;
}
.faq details p {
  padding: 0 24px 20px 24px;
  margin: 0;
}

/* ======== Wizard ======== */
.section-wizard { background: var(--surface); }
.wizard-root {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.wizard-progress {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.wizard-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--text);
}
.wizard-subtitle {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.mailbox-row {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 16px;
  background: var(--bg);
  transition: all 0.2s var(--ease);
}
.mailbox-row:hover { border-color: rgba(225, 127, 56, 0.3); }
.mailbox-row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.mailbox-row-head h4 { margin: 0; color: var(--text); font-size: 1.05rem; }
.mailbox-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mailbox-form fieldset {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  background: var(--surface-2);
  min-width: 0;
}
.mailbox-form legend {
  font-weight: 600;
  color: var(--text);
  padding: 0 6px;
  font-size: 0.88rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.field label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }
.field input, .field select {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.94rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field .badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-left: 8px;
  font-weight: 600;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.preview-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 16px;
}
.preview-title {
  margin: 0 0 16px 0;
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}
.preview-arrow {
  color: var(--accent);
  font-weight: 700;
  padding: 0 6px;
}
.preview-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.preview-side {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}
.preview-side h5 {
  margin: 0 0 12px 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
}
.preview-side-error h5 { color: var(--error); }
.preview-loading {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.preview-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.preview-meta strong { color: var(--text); font-size: 1.25rem; display: block; font-weight: 800; }
.preview-group {
  margin-bottom: 10px;
}
.preview-group:last-child { margin-bottom: 0; }
.preview-group-title {
  font-weight: 600;
  color: var(--text);
  font-size: 0.78rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.preview-empty {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
  padding: 4px 0;
}
.preview-msg {
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
}
.preview-msg:last-child { border: none; }
.preview-msg .subj { color: var(--text); font-weight: 600; }
.preview-msg .from { color: var(--text-muted); }
.preview-msg .date { color: var(--text-muted); font-size: 0.74rem; }
@media (max-width: 700px) {
  .preview-pair { grid-template-columns: 1fr; }
}

.result-ok { color: var(--success); font-weight: 600; }
.result-err { color: var(--error); font-weight: 600; }
.spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 6px;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.checkout-summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
}
.checkout-summary .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--text-muted);
}
.checkout-summary .total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 14px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

/* ======== Blog (gepolijste typografie) ======== */
.breadcrumb { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 12px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.page-intro { font-size: 1.08rem; color: var(--text-muted); margin-bottom: 36px; max-width: 720px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.blog-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s var(--ease);
}
.blog-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-link { display: block; padding: 26px; color: var(--text); text-decoration: none; }
.blog-card-link:hover { text-decoration: none; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-date {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.blog-read-time { font-size: 0.76rem; color: var(--text-muted); font-weight: 500; }
.blog-read-time::before { content: "·"; margin-right: 10px; color: var(--text-muted); }
.blog-card-title { font-size: 1.2rem; margin: 0 0 10px 0; color: var(--text); line-height: 1.3; font-weight: 700; }
.blog-card-excerpt { color: var(--text-muted); font-size: 0.94rem; margin: 0 0 14px 0; line-height: 1.55; }
.blog-card-cta { color: var(--accent); font-weight: 600; font-size: 0.92rem; }

/* Article: serif body, volle container-breedte (1100px) zodat header/footer/blog
   visueel coherent zijn. Prose-leesbaarheid wordt op paragraph-niveau gehandhaafd
   via max-width op .blog-article p / ul / ol (zie regels onder). */
.blog-article {
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
}
.legal-body {
  max-width: 820px;
  margin: 0 auto;
}
.legal-body h1 { font-size: clamp(1.8rem, 4vw, 2.2rem); }
.legal-body p, .legal-body li { line-height: 1.75; }
.page-title { margin-bottom: 12px; }
.job-summary-card { max-width: 680px; margin: 0 auto 24px auto; }
.blog-article h1, .blog-article h2, .blog-article h3, .blog-article .blog-byline {
  font-family: 'Poppins', system-ui, sans-serif;
}
.blog-article h1 { font-size: clamp(2rem, 4.5vw, 2.6rem); margin: 14px 0 18px 0; line-height: 1.2; letter-spacing: -0.02em; }

.blog-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.blog-author { display: flex; align-items: center; gap: 12px; }
.blog-author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.blog-author-name { font-weight: 600; color: var(--text); font-size: 0.94rem; }
.blog-author-role { color: var(--text-muted); font-size: 0.82rem; }
.blog-byline-meta { color: var(--text-muted); font-size: 0.85rem; display: flex; gap: 6px; align-items: center; }

.blog-intro {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 32px 0;
  font-weight: 500;
}
.blog-intro::first-letter {
  font-family: 'Poppins', sans-serif;
  float: left;
  font-size: 3.6rem;
  line-height: 0.9;
  padding: 6px 10px 0 0;
  color: var(--accent);
  font-weight: 800;
}

.blog-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 28px 0 36px 0;
  font-family: 'Poppins', sans-serif;
}
.blog-toc-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-toc ol { margin: 0; padding-left: 22px; font-size: 0.92rem; line-height: 1.8; }
.blog-toc a { color: var(--text); border: none; }
.blog-toc a:hover { color: var(--accent); }

.blog-section { margin-top: 36px; }
.blog-article h2 {
  font-size: 1.55rem;
  margin: 44px 0 16px 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.blog-article h2 .anchor-link {
  color: var(--border);
  border: none;
  padding-right: 6px;
  font-weight: 400;
  text-decoration: none;
  font-size: 0.9em;
  opacity: 0;
  transition: opacity 0.2s;
}
.blog-article h2:hover .anchor-link { opacity: 1; }
.blog-article h2 .anchor-link:hover { color: var(--accent); }
.blog-article h3 { font-size: 1.12rem; margin: 26px 0 10px 0; color: var(--text); font-weight: 600; }
.blog-article p {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 18px 0;
}
.blog-article ul, .blog-article ol {
  line-height: 1.8;
  color: var(--text);
  padding-left: 24px;
  font-size: 1.04rem;
  margin: 0 0 18px 0;
}

/* ja/nee icons in compare-table cellen */
.cell-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  vertical-align: middle;
}
.cell-icon svg { width: 16px; height: 16px; }
.cell-icon.yes { background: rgba(34,167,93,0.12); color: #1f9d57; }
.cell-icon.no  { background: rgba(214,73,73,0.12); color: #c93e3e; }
.cell-icon-label { margin-left: 8px; font-size: 0.92rem; color: var(--text-muted); }
.blog-article li { margin-bottom: 10px; }
.blog-article a:not(.btn) {
  color: var(--accent);
  border-bottom: 1px solid rgba(225,127,56,0.35);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.blog-article a:not(.btn):hover { border-bottom-color: var(--accent); }
.blog-article strong { font-weight: 600; color: var(--text); }

.blog-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin: 24px 0 32px 0;
}
.blog-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 6px;
}
.blog-stat-value { font-size: 1.4rem; color: var(--accent); font-weight: 800; letter-spacing: -0.5px; line-height: 1.1; }
.blog-stat-context { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

.blog-faq { margin-top: 36px; }
.blog-faq details {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.blog-faq summary {
  padding: 14px 20px;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.blog-faq summary::-webkit-details-marker { display: none; }
.blog-faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 300;
}
.blog-faq details[open] summary::after { content: "−"; }
.blog-faq summary h3 {
  display: inline;
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}
.blog-faq details p { padding: 0 20px 16px 20px; }

.blog-howto { margin-top: 28px; }
.blog-howto .howto-list { padding-left: 22px; }
.blog-howto .howto-list li { margin-bottom: 14px; }

.blog-internal-links {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 32px 0;
}
.blog-internal-links h3 { margin: 0 0 10px 0; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); }
.blog-internal-links ul { margin: 0; padding-left: 18px; }

.blog-cta {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, var(--title) 0%, #2c4760 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
}
.blog-cta h2 { color: #fff; margin: 0 0 8px 0; }
.blog-cta p { color: #cfd6dd; margin: 0 0 20px 0; }

@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ======== About / Author page ======== */
.about-article { font-family: 'Source Serif 4', Georgia, serif; }
.about-article h1, .about-article h2, .about-article h3, .about-hero, .author-box, .about-cta { font-family: 'Poppins', sans-serif; }
.about-hero {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 24px 0 32px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.about-avatar-large {
  width: 112px; height: 112px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; font-weight: 800; letter-spacing: 1px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(225,127,56,0.25);
}
.about-hero-text h1 { margin: 0 0 4px 0; font-size: 2rem; }
.about-role { color: var(--text-muted); margin: 0 0 10px 0; }
.about-cred { list-style: none; padding: 0; margin: 0; font-size: 0.86rem; color: var(--text-muted); }
.about-cred li { padding: 2px 0; }
.about-cred a { color: var(--accent); }

.about-body { max-width: 760px; }
.about-body p { font-size: 1.04rem; line-height: 1.8; color: var(--text); }
.about-body h2 { margin: 36px 0 14px 0; font-size: 1.45rem; }
.about-body ul { line-height: 1.85; padding-left: 22px; }
.about-venture {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 16px 0;
}
.about-venture h3 { margin: 0 0 4px 0; font-size: 1.15rem; }
.about-venture h3 a { color: var(--text); border: none; text-decoration: none; }
.about-venture h3 a:hover { color: var(--accent); }
.about-venture-tag { color: var(--text-muted); font-size: 0.85rem; margin: 0 0 10px 0; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.about-venture p:last-child { margin-bottom: 0; }

.about-cta {
  margin: 48px 0 0 0;
  padding: 32px;
  background: linear-gradient(135deg, var(--title) 0%, #2c4760 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 760px;
}
.about-cta h2 { color: #fff; margin: 0 0 8px 0; }
.about-cta p { color: #cfd6dd; margin: 0 0 20px 0; }
.about-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.3); margin-left: 8px; }
.about-cta .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* Author box onder blog */
.author-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin: 36px 0 24px 0;
}
.author-box-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-box-title { font-weight: 700; color: var(--text); font-size: 1rem; margin-bottom: 4px; }
.author-box-bio { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; margin: 0; }
.author-box-bio a { color: var(--accent); }

/* ======== HTML sitemap ======== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}
.sitemap-grid section, .sitemap-grid + section {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.sitemap-grid h2, .sitemap-grid + section h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 0 0 12px 0;
}
.sitemap-list { list-style: none; padding: 0; margin: 0; }
.sitemap-list li { padding: 6px 0; border-bottom: 1px dashed var(--border); }
.sitemap-list li:last-child { border: none; }
.sitemap-list a { color: var(--text); text-decoration: none; }
.sitemap-list a:hover { color: var(--accent); }
@media (max-width: 700px) { .sitemap-grid { grid-template-columns: 1fr; } }

/* ======== Social proof band (groot getal onder hero) ======== */
.social-proof-band {
  background: linear-gradient(135deg, #22374a 0%, #2c4760 100%);
  color: #fff;
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.social-proof-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 50%, rgba(225, 127, 56, 0.15) 0%, transparent 50%);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.proof-item { text-align: center; }
.proof-main .proof-number { color: var(--accent); }
.proof-number {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.proof-unit { font-size: 0.6em; opacity: 0.7; font-weight: 700; }
.proof-label {
  margin-top: 8px;
  font-size: 0.92rem;
  color: #cfd6dd;
  font-weight: 500;
}
.proof-label a { color: var(--accent); text-decoration: none; }
.proof-label a:hover { text-decoration: underline; }
@media (max-width: 700px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .social-proof-band { padding: 28px 0; }
}

/* ======== Q&A page ======== */
.qna-body { max-width: 820px; }
.qna-section { margin-bottom: 32px; }
.qna-section h2 { margin: 28px 0 14px 0; font-size: 1.35rem; color: var(--text); padding-top: 18px; border-top: 1px solid var(--border); }
.qna-section details {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  padding: 2px 0;
}
.qna-section summary { padding: 14px 22px; cursor: pointer; list-style: none; position: relative; }
.qna-section summary::-webkit-details-marker { display: none; }
.qna-section summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 1.4rem; font-weight: 300;
}
.qna-section details[open] summary::after { content: "−"; }
.qna-section summary h3 { display: inline; font-size: 1rem; margin: 0; font-weight: 600; }
.qna-section details p { padding: 0 22px 16px 22px; line-height: 1.75; color: var(--text); }

/* ======== Reviews ======== */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 16px 0 32px 0;
}
.reviews-summary-rating { font-size: 3.2rem; font-weight: 800; color: var(--accent); line-height: 1; letter-spacing: -0.02em; }
.reviews-summary-meta { color: var(--text-muted); margin-top: 6px; font-size: 0.95rem; }
.reviews-summary-meta strong { color: var(--text); }
.rating-stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.review-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}
.review-foot { font-size: 0.88rem; color: var(--text-muted); }
.review-foot strong { color: var(--text); }
.review-company, .review-date { color: var(--text-muted); }

/* Review submit form */
.review-form-wrap { max-width: 600px; margin: 0 auto; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-md); }
.rating-fieldset { border: none; margin: 18px 0; padding: 0; }
.rating-fieldset legend { font-weight: 600; color: var(--text); margin-bottom: 10px; padding: 0; }
.rating-input { display: flex; gap: 6px; direction: rtl; justify-content: flex-end; }
.rating-input input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.rating-label { cursor: pointer; padding: 4px; transition: transform 0.15s; }
.rating-label:hover { transform: scale(1.15); }
.rating-label-content svg { transition: fill 0.15s; }
.rating-input input[type="radio"]:checked ~ * svg,
.rating-input input[type="radio"]:checked + .rating-label-content svg { fill: #e17f38; }
.rating-label:hover .rating-label-content svg,
.rating-label:hover ~ .rating-label .rating-label-content svg { fill: #e17f38; }

@media (max-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ======== Trust strip (boven footer + optioneel onder hero) ======== */
.trust-strip {
  background: #0a0f18;
  color: #cfd6dd;
  padding: 18px 0;
  margin-top: 80px;
  border-top: 1px solid #1f2c3d;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 28px;
  font-size: 0.84rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cfd6dd;
  white-space: nowrap;
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }
.trust-compact .trust-row { gap: 12px 20px; font-size: 0.78rem; }
.trust-hero-strip { margin-top: 0 !important; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; color: var(--text-muted); }
.trust-hero-strip .trust-item { color: var(--text-muted); }
.trust-hero-strip .trust-item svg { color: var(--accent); }

/* ======== Footer (4-col, donker, gedeeld) ======== */
.site-footer {
  background: #0d1520;
  color: #c9d2dd;
  padding: 48px 0 24px 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-brand strong { color: #fff; font-size: 1.25rem; display: block; font-weight: 800; }
.footer-brand strong .dot { color: var(--accent); }
.footer-brand .footer-product { margin: 12px 0 8px 0; color: #cfd6dd; font-size: 0.95rem; }
.footer-brand .footer-product a { color: var(--accent); }
.footer-meta { font-size: 0.85rem; color: #8fa0b3; line-height: 1.7; }
.footer-meta a { color: #cfd6dd; }
.footer-nav, .footer-cluster {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-cluster-title { font-weight: 700; color: #fff; margin-bottom: 8px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.site-footer a { color: #cfd6dd; font-size: 0.92rem; text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid #1f2c3d;
  font-size: 0.82rem;
  color: #8fa0b3;
  text-align: center;
}
.header-nav a.active { color: var(--accent); }

/* ======== Reveal animations ======== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ======== Responsive ======== */
@media (max-width: 900px) {
  .header-nav { gap: 14px; }
  .header-nav a:not(.btn) { font-size: 0.84rem; }
  .header-nav .btn-sm { padding: 7px 14px; }
  .brand-sub { display: none; }
  .brand strong { font-size: 1.15rem; }
}
@media (max-width: 720px) {
  .header-row { height: 64px; }
  .header-nav { gap: 10px; }
  .header-nav a:not(.btn) { font-size: 0.78rem; }
  .header-nav .btn-sm { padding: 6px 12px; font-size: 0.8rem; }
  .brand strong { font-size: 1.05rem; }
}
@media (max-width: 520px) {
  .header-nav a[href*="vergelijk"],
  .header-nav a[href*="hoe"] { display: none; }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .hero { padding: 48px 0 56px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { order: -1; padding: 24px; }
  .steps { grid-template-columns: 1fr; }
  .price-tiers { grid-template-columns: repeat(2, 1fr); }
  .reassurance-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 10px 14px; font-size: 0.76rem; }
  .mailbox-form { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .wizard-root { padding: 22px; }
  .brand-sub { display: none; }
}

/* SEO hub-spoke linking (Task 12) */
.header-dropdown { position: relative; display: inline-block; }
.header-dropdown summary { cursor: pointer; list-style: none; padding: 0 0.5rem; }
.header-dropdown summary::-webkit-details-marker { display: none; }
.header-dropdown[open] .dropdown-list { display: block; }
.dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 200px;
  list-style: none;
  margin: 0;
  z-index: 100;
}
.dropdown-list li { padding: 0; }
.dropdown-list li a { display: block; padding: 6px 16px; text-decoration: none; color: #22374a; }
.dropdown-list li a:hover { background: #f5f5f5; }

.route-sidebar {
  background: #f8f5f0;
  border-left: 3px solid #e17f38;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.route-sidebar h3 { margin-top: 0; font-size: 1rem; color: #22374a; }
.route-sidebar ul { margin: 0; padding-left: 1.25rem; }

.other-providers {
  background: #fafafa;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.other-providers h3 { margin-top: 0; font-size: 1rem; color: #22374a; }
.other-providers ul { margin: 0; padding-left: 1.25rem; columns: 2; column-gap: 1rem; }

/* === SEO content styling (Task 18) === */

/* ---- Article layout: container 1100px (var --max), content vult container ---- */
.seo-article,
.seo-hub {
  padding: 2.5rem 0 4rem;
}
/* Geen leesregel-constraint: spec sectie 10 zegt 1100px content,
   visuele rust komt uit witruimte (margins, padding) niet narrow column. */

/* ---- Breadcrumb ---- */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  opacity: 0.75;
}
.breadcrumb a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb a:hover { color: var(--accent); }

/* ---- Lead paragraaf ---- */
.seo-article .lead,
.seo-hub .lead {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  margin: 0.5rem 0 2rem;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

/* ---- Typografie: h2 met accent border, sectie-spacing ---- */
.seo-article h2,
.seo-hub h2,
.guide-body h2 {
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent-soft);
}
.seo-article h3,
.guide-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}
.seo-article p,
.guide-body p {
  line-height: 1.75;
  margin: 0 0 1rem;
  color: var(--text-muted);
}
.seo-article section,
.seo-hub section {
  margin-bottom: 2rem;
  width: 100%;
}

/* ---- FAQ-lijst: dl/dt/dd visueel gesplitst ---- */
.faq-list {
  margin: 0.5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-list dt {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--accent);
  border-radius: 6px 6px 0 0;
  margin-top: 0.75rem;
  cursor: default;
}
.faq-list dd {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 6px 6px;
  padding: 0.75rem 1rem;
  margin: 0;
}

/* ---- Quirks-lijst: cards met accent border-left ---- */
.quirks-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.quirks-list li {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.quirks-list li strong { color: var(--text); }

/* ---- HowTo-lijst: genummerde stappen met badge ---- */
.howto-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1.25rem;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.howto-list li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.howto-list li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.howto-list li strong { color: var(--text); }

/* ---- Settings-tabel: striped, monospace hosts ---- */
.settings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 0.75rem 0 0.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.settings-table thead tr {
  background: var(--text);
  color: #fff;
}
.settings-table thead th {
  text-align: left;
  padding: 0.55rem 0.85rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.settings-table tbody tr:nth-child(even) { background: var(--surface); }
.settings-table tbody tr:nth-child(odd) { background: #fff; }
.settings-table td {
  padding: 0.55rem 0.85rem;
  vertical-align: middle;
  color: var(--text-muted);
}
.settings-table td:nth-child(2),
.settings-table td:nth-child(3) {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.82rem;
  color: var(--text);
}
.settings-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0.25rem 0 0.75rem;
}

/* ---- Comparison-tabel: vergelijking met highlighted last col ---- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 0.75rem 0 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.comparison-table thead tr {
  background: var(--text);
  color: #fff;
}
.comparison-table thead th {
  text-align: left;
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.82rem;
}
.comparison-table thead th:last-child { color: var(--accent); }
.comparison-table tbody tr:nth-child(even) { background: var(--surface); }
.comparison-table tbody tr:nth-child(odd) { background: #fff; }
.comparison-table td {
  padding: 0.55rem 1rem;
  color: var(--text-muted);
  vertical-align: middle;
}
.comparison-table td:first-child { font-weight: 500; color: var(--text); }
.comparison-table td:last-child { font-weight: 500; color: var(--text); }

/* ---- CTA-blok: accent-tint achtergrond, gecentreerd ---- */
.cta-block {
  background: var(--accent-soft);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  text-align: center;
  margin: 2.5rem 0 1.5rem;
  width: 100%;
}
.cta-block h2 {
  font-size: 1.3rem;
  margin: 0 0 1rem;
  border-bottom: none;
}

/* ---- Author byline ---- */
.author-byline {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.65;
  font-style: italic;
  margin: 2rem 0 0;
}
.author-byline a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* ---- Hub-pagina layout ---- */
.seo-hub .container {
  align-items: flex-start;
}
.seo-hub .container > * {
  max-width: 100%;
  width: 100%;
}
.hub-cta {
  margin: 0 0 2rem;
}
.hub-cta p { margin: 0; }

/* ---- Hub-grid: responsive card-grid ---- */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  margin: 0.75rem 0 1.5rem;
}
@media (min-width: 480px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .hub-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
}
@media (min-width: 1024px) {
  .hub-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Hub-card styling ---- */
.hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.hub-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(225, 127, 56, 0.12);
  transform: translateY(-2px);
  color: inherit;
}
.hub-card strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  display: block;
}
.hub-card span {
  font-size: 0.775rem;
  color: var(--text-muted);
  opacity: 0.8;
  line-height: 1.4;
}

/* ---- Hub sectie-koppen ---- */
.seo-hub section {
  margin-bottom: 2rem;
  width: 100%;
}
.seo-hub h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: var(--text);
  margin: 2rem 0 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--accent-soft);
}

/* ---- Guide-body markdown typography ---- */
.guide-body {
  width: 100%;
}
.guide-body h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent-soft);
}
.guide-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}
.guide-body p {
  line-height: 1.75;
  margin: 0 0 1rem;
  color: var(--text-muted);
}
.guide-body ul,
.guide-body ol {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
  color: var(--text-muted);
}
.guide-body li { line-height: 1.65; margin-bottom: 0.35rem; }
.guide-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 0.75rem 0 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.guide-body table thead tr { background: var(--text); color: #fff; }
.guide-body table thead th { padding: 0.55rem 0.85rem; text-align: left; font-weight: 600; font-size: 0.8rem; }
.guide-body table tbody tr:nth-child(even) { background: var(--surface); }
.guide-body table tbody tr:nth-child(odd) { background: #fff; }
.guide-body table td { padding: 0.55rem 0.85rem; color: var(--text-muted); }
.guide-body code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.82em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.1em 0.35em;
  color: var(--text);
}
.guide-body blockquote {
  border-left: 3px solid var(--accent);
  background: var(--accent-softer);
  margin: 1rem 0;
  padding: 0.75rem 1rem;
  border-radius: 0 6px 6px 0;
  color: var(--text-muted);
  font-style: italic;
}
.guide-body blockquote p { margin: 0; }

/* Route-sidebar staat in normale flow tussen secties (geen float/flex layout),
   zodat hoofd-content de volle 1100px container vult. */

/* ---- Responsive: seo-article en seo-hub padding aanpassen ---- */
@media (min-width: 768px) {
  .seo-article,
  .seo-hub { padding: 3rem 0 5rem; }
  .cta-block { padding: 2.25rem 2.5rem; }
}
@media (min-width: 1024px) {
  .seo-article,
  .seo-hub { padding: 4rem 0 6rem; }
}

/* === einde SEO content styling (Task 18) === */
