/* =========================================================
   Autoslepen24 — Design System
   Palet "Cobalt Garage" · Inter + Manrope · WCAG AA
   Mobile-first · Geen frameworks · Geen externe fonts
   Positionering: voertuigtransport (geen pechhulp)
   ========================================================= */

:root {
  /* Brand colors */
  --c-primary:        #0A2540;
  --c-primary-deep:   #061528;
  --c-primary-soft:   #1E4276;
  --c-secondary:      #2563EB;
  --c-secondary-deep: #1D4ED8;
  --c-accent:         #F59E0B;
  --c-accent-deep:    #B45309;

  /* Surfaces */
  --c-bg:             #FFFFFF;
  --c-bg-alt:         #F4F6FA;
  --c-bg-soft:        #ECF0F6;
  --c-bg-dark:        #0A1628;

  /* Text */
  --c-text:           #0F172A;
  --c-text-on-dark:   #FFFFFF;
  --c-text-muted:     #475569;
  --c-text-subtle:    #64748B;

  /* Lines */
  --c-border:         #D7DDE5;
  --c-border-strong:  #94A3B8;

  /* Status */
  --c-success:        #15803D;
  --c-warning:        #B45309;
  --c-error:          #B91C1C;
  --c-info:           #1E40AF;

  /* Type — geen externe fonts; system-stack met Manrope/Inter fallback */
  --ff-head: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-mono: "JetBrains Mono", "SF Mono", "Consolas", monospace;

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm: 0 1px 3px rgba(10,37,64,.08), 0 1px 2px rgba(10,37,64,.05);
  --sh-md: 0 6px 14px rgba(10,37,64,.10), 0 2px 4px rgba(10,37,64,.06);
  --sh-lg: 0 16px 32px rgba(10,37,64,.12), 0 4px 8px rgba(10,37,64,.06);
  --sh-focus: 0 0 0 4px rgba(37,99,235,.30);

  /* Layout */
  --container: 1200px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100vw;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--c-secondary); text-decoration: none; }
a:hover { color: var(--c-secondary-deep); }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5 {
  font-family: var(--ff-head);
  margin: 0 0 var(--s-4);
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--c-text);
}
h1 { font-size: 2rem; font-weight: 800; }
h2 { font-size: 1.625rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.0625rem; font-weight: 600; }
p  { margin: 0 0 var(--s-4); }
.lead { font-size: 1.125rem; color: var(--c-text-muted); max-width: 60ch; }
.muted { color: var(--c-text-muted); }
.subtle { color: var(--c-text-subtle); font-size: .9375rem; }
.overline {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-secondary);
}
.mono { font-family: var(--ff-mono); font-variant-numeric: tabular-nums; }

.display {
  font-family: var(--ff-head);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  margin: 0 0 var(--s-6);
}
.display em { color: var(--c-accent); font-style: normal; }

@media (min-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.375rem; }
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-4); }
@media (min-width: 768px) { .container { padding: 0 var(--s-6); } }

.section { padding: var(--s-12) 0; }
.section--lg { padding: var(--s-16) 0; }
.section--dark { background: var(--c-bg-dark); color: var(--c-text-on-dark); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--c-text-on-dark); }
.section--dark .muted, .section--dark .lead { color: rgba(255,255,255,.78); }

/* Witte kaarten ÍN een dark section moeten DONKERE tekst tonen.
   Anders erven h3/p de witte kleur van section--dark en zijn ze onleesbaar
   op de witte card-achtergrond. Geldt voor .step, .card, .svc-card, .form. */
.section--dark .step,
.section--dark .card,
.section--dark .svc-card,
.section--dark .form { color: var(--c-text); }
.section--dark .step h1, .section--dark .step h2, .section--dark .step h3, .section--dark .step h4,
.section--dark .card h1, .section--dark .card h2, .section--dark .card h3, .section--dark .card h4,
.section--dark .svc-card h1, .section--dark .svc-card h2, .section--dark .svc-card h3, .section--dark .svc-card h4,
.section--dark .form h1, .section--dark .form h2, .section--dark .form h3, .section--dark .form h4 { color: var(--c-text); }
.section--dark .step .muted, .section--dark .step p,
.section--dark .card .muted, .section--dark .card p,
.section--dark .svc-card .muted, .section--dark .svc-card p { color: var(--c-text-muted); }
.section--dark .step .subtle, .section--dark .card .subtle, .section--dark .svc-card .subtle { color: var(--c-text-subtle); }

/* Maar: wanneer een .card EXPLICIET een transparante donkere achtergrond krijgt
   binnen .section--dark (zie pagina-inline-style rgba(255,255,255,.04)), moet de
   tekst juist licht blijven. Die override gebeurt al inline op die plekken. */
.section--alt { background: var(--c-bg-alt); }
.section--soft { background: var(--c-bg-soft); }
@media (min-width: 1024px) { .section { padding: var(--s-20) 0; } .section--lg { padding: var(--s-24) 0; } }

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flow > * + * { margin-top: var(--s-4); }
.text-center { text-align: center; }
.center-narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.stack-sm > * + * { margin-top: var(--s-2); }
.stack-md > * + * { margin-top: var(--s-4); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: .875rem 1.5rem;
  border-radius: var(--r-md);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: background 150ms ease, transform 100ms ease, color 150ms ease, border-color 150ms ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible { outline: 0; box-shadow: var(--sh-focus); }
.btn-primary {
  background: var(--c-secondary);
  color: #fff;
  box-shadow: var(--sh-sm);
}
.btn-primary:hover { background: var(--c-secondary-deep); color: #fff; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
}
.btn-secondary:hover { background: var(--c-primary); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--c-text-on-dark);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn-accent {
  background: var(--c-accent);
  color: var(--c-primary-deep);
  box-shadow: var(--sh-sm);
}
.btn-accent:hover { background: var(--c-accent-deep); color: #fff; }
.btn-lg { padding: 1.125rem 2rem; font-size: 1.0625rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-4) 0;
}
.brand {
  display: inline-flex; align-items: center;
  gap: .625rem;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--c-primary);
  letter-spacing: -.02em;
  text-decoration: none;
}
.brand .brand-mark {
  width: 36px; height: 36px;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--r-sm);
  display: inline-flex; align-items: center; justify-content: center;
}
.brand .brand-mark svg { width: 22px; height: 22px; }
.brand-name span { color: var(--c-accent); }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--s-6);
}
.nav-links a {
  color: var(--c-text);
  font-weight: 500;
  font-size: .9375rem;
  padding: .375rem 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--c-secondary); border-bottom-color: var(--c-accent); }
.nav-links a[aria-current="page"] { color: var(--c-primary); border-bottom-color: var(--c-primary); }

.nav-cta { display: none; }
.nav-toggle {
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-text);
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--c-border);
  padding: var(--s-4) 0 var(--s-6);
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  padding: var(--s-3) 0;
  font-weight: 500;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-bg-alt);
}
.mobile-menu .btn { margin-top: var(--s-4); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--c-primary-deep) 0%, var(--c-primary) 60%, var(--c-primary-soft) 100%);
  color: var(--c-text-on-dark);
  padding: var(--s-16) 0 var(--s-20);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(at 80% 20%, rgba(245,158,11,.10) 0, transparent 50%),
    radial-gradient(at 15% 80%, rgba(37,99,235,.25) 0, transparent 55%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 22ch; }
.hero p.lead { color: rgba(255,255,255,.85); max-width: 56ch; font-size: 1.1875rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin: var(--s-8) 0 var(--s-6); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-6);
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .9375rem;
  color: rgba(255,255,255,.82);
}
.hero-trust span { display: inline-flex; align-items: center; gap: var(--s-2); }
.hero-trust svg { width: 18px; height: 18px; color: var(--c-accent); }

.hero-sub {
  background: linear-gradient(135deg, var(--c-primary-deep), var(--c-primary));
  color: var(--c-text-on-dark);
  padding: var(--s-12) 0;
}
.hero-sub h1 { color: #fff; }
.hero-sub p.lead { color: rgba(255,255,255,.85); }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); border-color: var(--c-secondary); }
.card h3 { margin-top: var(--s-4); margin-bottom: var(--s-2); }
.card .icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(37,99,235,.10);
  color: var(--c-secondary);
  display: inline-flex; align-items: center; justify-content: center;
}
.card .icon-wrap svg { width: 24px; height: 24px; }
.card-link {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-weight: 600; color: var(--c-secondary);
  margin-top: var(--s-4);
}
.card-link::after { content: "→"; transition: transform 150ms ease; }
.card-link:hover::after { transform: translateX(3px); }
.card-link-block { display: block; color: inherit; }
.card-link-block:hover { color: inherit; }

/* Service card with left accent */
.svc-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-accent);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: var(--s-6);
}
.svc-card h3 { margin-top: 0; }

/* ---------- Tables ---------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: var(--s-3) var(--s-4);
  border-bottom: 1px solid var(--c-border);
  font-size: .9375rem;
}
.spec-table th { background: var(--c-bg-alt); font-weight: 700; color: var(--c-text); }
.spec-table tr:last-child td { border-bottom: 0; }

/* ---------- Process / steps ---------- */
.steps { counter-reset: step; display: grid; gap: var(--s-4); }
.step {
  position: relative;
  padding: var(--s-6) var(--s-6) var(--s-6) calc(var(--s-12) + var(--s-4));
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: var(--s-6);
  left: var(--s-6);
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--c-accent);
  letter-spacing: -.04em;
}
.step h3 { margin-top: 0; }

/* ---------- Metrics ---------- */
.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.metric { text-align: center; }
.metric .num {
  display: block;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -.03em;
  color: var(--c-primary);
}
.metric .lab { font-size: .875rem; color: var(--c-text-muted); }
@media (min-width: 700px) { .metric-row { grid-template-columns: repeat(4, 1fr); } }

/* ---------- CTA blocks ---------- */
.cta-block {
  background: var(--c-bg-dark);
  color: var(--c-text-on-dark);
  padding: var(--s-16) var(--s-6);
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(at 80% 20%, rgba(245,158,11,.15) 0, transparent 50%),
    radial-gradient(at 20% 80%, rgba(37,99,235,.20) 0, transparent 50%);
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { color: #fff; max-width: 22ch; margin: 0 auto var(--s-4); }
.cta-block p { color: rgba(255,255,255,.85); max-width: 56ch; margin: 0 auto var(--s-8); }
.cta-block .btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; }

.cta-strip {
  background: var(--c-accent);
  color: var(--c-primary-deep);
  padding: var(--s-6) 0;
}
.cta-strip .container {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.cta-strip h3 { margin: 0; font-family: var(--ff-head); font-weight: 800; font-size: 1.375rem; letter-spacing: -.02em; }
.cta-strip a.btn { background: var(--c-primary); color: #fff; }
.cta-strip a.btn:hover { background: var(--c-primary-deep); color: #fff; }

/* ---------- Disclaimer block ---------- */
.disclaimer {
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  border-left: 4px solid var(--c-accent);
  padding: var(--s-5) var(--s-6);
  border-radius: var(--r-md);
  font-size: .9375rem;
  color: #78350F;
}
.disclaimer strong { color: #7C2D12; }
.disclaimer.is-info {
  background: #DBEAFE;
  border-color: #93C5FD;
  border-left-color: var(--c-secondary);
  color: #1E3A8A;
}
.disclaimer.is-info strong { color: #1E3A8A; }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  margin-bottom: var(--s-3);
  background: #fff;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-4) var(--s-6);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--ff-head);
  color: var(--c-secondary);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 150ms ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--c-secondary); }
.faq-item > div { padding: 0 var(--s-6) var(--s-6); color: var(--c-text-muted); }

/* ---------- Forms ---------- */
.form {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  box-shadow: var(--sh-md);
}
.form-grid { display: grid; gap: var(--s-4); }
@media (min-width: 700px) {
  .form-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .form-grid .full { grid-column: 1 / -1; }
}
.form-group { display: flex; flex-direction: column; gap: var(--s-2); }
.form-group label { font-weight: 600; font-size: .875rem; color: var(--c-text); }
.form-group label .req { color: var(--c-error); }
.input, select, textarea {
  width: 100%;
  padding: .8125rem 1rem;
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 1rem;
  font-family: var(--ff-body);
  background: #fff;
  color: var(--c-text);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.input:hover, select:hover, textarea:hover { border-color: var(--c-border-strong); }
.input:focus, select:focus, textarea:focus {
  outline: 0;
  border-color: var(--c-secondary);
  box-shadow: var(--sh-focus);
}
textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: .8125rem; color: var(--c-text-muted); }

.radio-row, .check-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.radio-pill {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: .625rem 1rem;
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: .9375rem;
  background: #fff;
  transition: border-color 150ms ease, background 150ms ease;
}
.radio-pill input { margin: 0; }
.radio-pill:hover { border-color: var(--c-secondary); }
.radio-pill input:checked + span { color: var(--c-secondary); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-bg-dark);
  color: rgba(255,255,255,.8);
  padding: var(--s-16) 0 var(--s-8);
  font-size: .9375rem;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-12);
}
@media (min-width: 700px) { .site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer h4 {
  color: #fff;
  font-family: var(--ff-head);
  font-size: .9375rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 var(--s-4);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: var(--s-2); }
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: var(--c-accent); }
.site-footer .brand { color: #fff; }
.site-footer .legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--s-6);
  display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-4);
  justify-content: space-between;
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
}
.site-footer .legal a { color: rgba(255,255,255,.55); }
.site-footer .legal a:hover { color: #fff; }
.site-footer .legal .group-line a { color: rgba(255,255,255,.7); }

/* ---------- Breadcrumbs ---------- */
.breadcrumb {
  padding: var(--s-4) 0;
  font-size: .875rem;
  color: var(--c-text-muted);
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--s-2); }
.breadcrumb li + li::before { content: "/"; margin-right: var(--s-2); color: var(--c-border-strong); }
.breadcrumb a { color: var(--c-text-muted); }
.breadcrumb a:hover { color: var(--c-secondary); }
.breadcrumb [aria-current="page"] { color: var(--c-text); font-weight: 500; }

/* ---------- Utilities ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--c-primary); color: #fff;
  padding: .75rem 1rem; z-index: 100;
  border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { top: 0; }

.tag {
  display: inline-block;
  padding: .25rem .625rem;
  border-radius: var(--r-sm);
  background: rgba(245,158,11,.18);
  color: var(--c-accent-deep);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.tag.is-blue {
  background: rgba(37,99,235,.12);
  color: var(--c-secondary-deep);
}

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 1.875rem;
  margin-bottom: var(--s-3);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .375rem;
  width: 18px; height: 18px;
  background: var(--c-accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  border-radius: var(--r-sm);
}

.crosslist { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-2); }
.crosslist li { display: flex; gap: var(--s-2); align-items: baseline; }
.crosslist li::before { content: "›"; color: var(--c-accent); font-weight: 700; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
