/* ────────────────────────────────────────────────────────────────────
   Doemee.app — Main stylesheet
   ────────────────────────────────────────────────────────────────────
   Volgorde:
   1. Reset
   2. Body & typografie
   3. Layout (topbar, footer, container)
   4. Components (button, card, input, badge, etc.)
   5. Utility classes
   ──────────────────────────────────────────────────────────────────── */

@import url('./tokens.css');

/* ── 1. Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }

input, button, textarea, select { font: inherit; color: inherit; }

button { background: none; border: 0; cursor: pointer; }

a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Focus visible alleen bij keyboard nav, niet bij muis-klik */
:focus { outline: 0; }
:focus-visible { box-shadow: var(--shadow-focus); border-radius: var(--radius-sm); }

/* ── 2. Body & typografie ─────────────────────────────────────────── */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
h1 { font-size: var(--font-size-2xl); letter-spacing: -0.02em; }
h2 { font-size: var(--font-size-xl); font-weight: var(--font-weight-medium); }
h3 { font-size: var(--font-size-lg); font-weight: var(--font-weight-medium); }

p { line-height: var(--line-height-relaxed); }
p + p { margin-top: var(--space-3); }

small { font-size: var(--font-size-sm); color: var(--text-secondary); }

/* ── 3. Layout ────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.container--prose { max-width: var(--max-width-prose); }
.container--wide  { max-width: var(--max-width-wide); }

/* Prose typografie — alleen actief binnen .container--prose zodat marketing
   pages (met cards/hero) hun eigen spacing-control behouden. */
.container--prose h1 { margin: 0 0 var(--space-3); }
.container--prose h2 { margin: var(--space-8) 0 var(--space-3); }
.container--prose h3 { margin: var(--space-6) 0 var(--space-2); }
.container--prose h1 + p,
.container--prose h2 + p,
.container--prose h3 + p { margin-top: 0; }
.container--prose p { margin: 0 0 var(--space-4); }
.container--prose ul,
.container--prose ol { margin: 0 0 var(--space-4); padding-left: 1.5em; }
.container--prose li { margin: var(--space-1) 0; line-height: var(--line-height-relaxed); }
.container--prose li > ul,
.container--prose li > ol { margin: var(--space-1) 0; }
.container--prose hr {
  margin: var(--space-8) 0;
  border: 0;
  border-top: 1px solid var(--border-subtle);
}
.container--prose table {
  width: 100%;
  margin: 0 0 var(--space-4);
  border-collapse: collapse;
}
.container--prose table th,
.container--prose table td {
  text-align: left;
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--border-subtle);
}
.container--prose table th { font-weight: var(--font-weight-medium); }
.container--prose code {
  background: var(--bg-muted);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  font-size: 0.9em;
}
.container--prose details {
  margin: 0 0 var(--space-3);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}
.container--prose details > summary {
  cursor: pointer;
  font-weight: var(--font-weight-medium);
}
.container--prose details[open] > summary { margin-bottom: var(--space-2); }

.topbar {
  height: var(--topbar-height);
  background: var(--bg-page);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.topbar__brand { display: flex; align-items: center; gap: var(--space-2); }
.topbar__brand img { width: 28px; height: 28px; }
.topbar__brand-text {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
}
.topbar__brand-dot { color: var(--doemee-500); }
.topbar__brand-tld { color: var(--text-secondary); font-weight: var(--font-weight-regular); }

/* Kaart-koppen die linken naar een andere pagina: behoud kop-uitstraling,
   pas hover-onderstreping toe zodat klikbaar-zijn duidelijk wordt. */
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--text-link); text-decoration: underline; }

.topbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.topbar__link {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
}
.topbar__link:hover { color: var(--text-primary); }
@media (max-width: 600px) {
  .topbar__nav .topbar__link { display: none; }
}

.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-6) 0;
  margin-top: var(--space-12);
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer__legal {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-subtle);
  font-size: var(--font-size-xs);
  color: var(--text-tertiary);
}
.footer__legal a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--border-subtle);
  text-underline-offset: 2px;
}
.footer__legal a:hover { color: var(--doemee-700); }

/* ── 4. Components ────────────────────────────────────────────────── */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn--primary {
  background: var(--doemee-500);
  color: var(--text-inverse);
}
.btn--primary:hover:not(:disabled) { background: var(--doemee-700); }

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-default);
}
.btn--secondary:hover:not(:disabled) {
  background: var(--bg-surface);
  border-color: var(--border-strong);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
}
.btn--ghost:hover:not(:disabled) { background: var(--bg-muted); }

.btn--lg { padding: var(--space-4) var(--space-6); font-size: var(--font-size-base); }
.btn--sm { padding: var(--space-2) var(--space-3); font-size: var(--font-size-xs); }
.btn--block { width: 100%; }

/* Cards */
.card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.card--surface { background: var(--bg-surface); border: 0; }
.card--accent {
  border: 2px solid var(--accent-500);
  position: relative;
}
/* Subtiele kleur-streep aan de bovenkant. Per-event override via inline
   style: `--card-accent: #FF6B35`. Valt terug op tenant-accent als var
   niet gezet. */
.card--accent-bar {
  border-top: 4px solid var(--card-accent, var(--accent-500));
  padding-top: calc(var(--space-5) - 3px);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card--accent-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.06);
}
.card__badge {
  position: absolute;
  top: -10px;
  left: var(--space-4);
  background: var(--accent-500);
  color: var(--accent-text-on-fill);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  padding: 2px var(--space-3);
  border-radius: var(--radius-pill);
}

/* Company-card — bedrijfsinfo op contactpagina. Eigen grid omdat de
   waardes (KvK + BTW, twee e-mailadressen) in een generieke grid--2
   midden in een veld breken. */
.company-card { background: var(--bg-surface); padding: var(--space-6); }
.company-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4) var(--space-6);
  margin: 0;
}
.company-card__grid > div { min-width: 0; }
.company-card__grid dt {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  margin-bottom: var(--space-1);
}
.company-card__grid dd {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

/* Inputs */
.input, .textarea, .select {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--bg-page);
  font-size: var(--font-size-sm);
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
  line-height: 1.4;
}
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--doemee-500);
  outline: 0;
  box-shadow: var(--shadow-focus);
}
.textarea { min-height: 64px; resize: vertical; font-family: inherit; }

/* Select native rendering uitschakelen zodat ze visueel gelijk zijn aan
   input-velden, met eigen chevron via background-image. */
.select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666560' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  padding-right: calc(var(--space-3) + 20px);
  cursor: pointer;
}

/* Number input spinners (Safari/Firefox) zijn lelijk voor klassikale
   keuze-velden en geboortedatum-velden. Verbergen. */
.input[type="number"] {
  appearance: textfield;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}
.input[type="number"]::-webkit-outer-spin-button,
.input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.field { margin-bottom: var(--space-4); }
.field__label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.field__hint {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--text-tertiary);
  margin-top: var(--space-1);
}
.field__error {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--color-danger-fg);
  margin-top: var(--space-1);
}
.field--error .input,
.field--error .textarea,
.field--error .select { border-color: var(--color-danger-border); }

/* Radio cards (zie scherm 2 inschrijfflow) */
.radio-card {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: var(--font-size-sm);
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}
.radio-card:hover { border-color: var(--border-strong); }
.radio-card--selected {
  border-color: var(--doemee-500);
  background: var(--doemee-50);
  color: var(--doemee-900);
  box-shadow: inset 0 0 0 1px var(--doemee-500);
}

/* Badges & pills */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 2px var(--space-2);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
}
.badge--success { background: var(--color-success-bg); color: var(--color-success-fg); }
.badge--warning { background: var(--color-warning-bg); color: var(--color-warning-fg); }
.badge--danger  { background: var(--color-danger-bg);  color: var(--color-danger-fg); }
.badge--info    { background: var(--color-info-bg);    color: var(--color-info-fg); }
.badge--accent  { background: var(--accent-50);        color: var(--accent-900); }

/* Alert / notice */
.alert {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
}
.alert--info    { background: var(--color-info-bg);    color: var(--color-info-fg); }
.alert--success { background: var(--color-success-bg); color: var(--color-success-fg); }
.alert--warning { background: var(--color-warning-bg); color: var(--color-warning-fg); }
.alert--danger  { background: var(--color-danger-bg);  color: var(--color-danger-fg); }

/* Progress bar */
.progress {
  display: flex;
  gap: var(--space-1);
}
.progress__step {
  flex: 1;
  height: 4px;
  background: var(--border-subtle);
  border-radius: 2px;
}
.progress__step--done { background: var(--doemee-500); }

/* Hero section (gebruikt accent kleur via inline style) */
.hero {
  padding: var(--space-8) var(--space-6) var(--space-6);
  background: var(--accent-50);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: rgba(255, 255, 255, 0.7);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--accent-900);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}
.hero__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.02em;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-2);
}
.hero__lead {
  color: var(--accent-900);
  opacity: 0.8;
  margin-bottom: var(--space-4);
  max-width: var(--max-width-prose);
}

/* Hero CTA cluster — twee knoppen + responsive */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-5);
}

/* Hero meta strip — dunne info-regel met dagen/start/prijs */
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--accent-900);
  opacity: 0.85;
}
.hero__meta strong { font-weight: var(--font-weight-semibold); }
.hero__meta-dot { opacity: 0.4; }

/* Tenant-home hero ademt iets meer */
.hero--tenant { padding: var(--space-10) var(--space-6); }

/* Event cover — banner boven hero */
.event-cover {
  width: 100%;
  aspect-ratio: 4 / 1;
  overflow: hidden;
  background: var(--bg-muted);
}

/* ── Steps ─────────────────────────────────────────────────────────── */
.steps {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 0;
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: left;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: var(--accent-50);
  color: var(--accent-900);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-3);
}
.step__title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  margin: 0 0 var(--space-1);
}
.step__desc {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin: 0;
}

/* ── Option cards (event landing) ──────────────────────────────────── */
.option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.option-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.06);
}
.option-card--popular {
  border: 2px solid var(--accent-500);
  padding: calc(var(--space-5) - 1px);
}
.option-card__badge {
  position: absolute;
  top: -10px;
  left: var(--space-4);
  background: var(--accent-500);
  color: var(--accent-text-on-fill);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  padding: 2px var(--space-3);
  border-radius: var(--radius-pill);
}
.option-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
}
.option-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  margin: 0;
}
.option-card__price {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--accent-900);
  white-space: nowrap;
}
.option-card__desc {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  margin: 0;
}
.option-card__meta { font-size: var(--font-size-xs); }
.option-card__cta { margin-top: auto; }

/* Disabled button look (voor vol-status anchor) */
.btn--disabled {
  background: var(--bg-muted);
  color: var(--text-tertiary);
  border-color: var(--border-subtle);
  pointer-events: none;
}

/* ── Bottom CTA strip ──────────────────────────────────────────────── */
.bottom-cta {
  background: var(--accent-50);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
}
.bottom-cta__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin: 0 0 var(--space-2);
  color: var(--accent-900);
}
.bottom-cta__lead {
  color: var(--accent-900);
  opacity: 0.8;
  margin: 0 auto var(--space-5);
  max-width: var(--max-width-prose);
}

/* Ticket (bevestigingsscherm) */
.ticket {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.ticket__header {
  background: var(--accent-50);
  padding: var(--space-3) var(--space-5);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--accent-900);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ticket__body {
  display: grid;
  grid-template-columns: 1fr 100px;
  padding: var(--space-4) var(--space-5);
  gap: var(--space-4);
  align-items: center;
}

/* ── 5. 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 — onzichtbaar tot focus, dan zichtbaar bovenaan zodat
   toetsenbord-gebruikers naar de hoofdcontent kunnen springen. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: white;
  padding: 12px 16px;
  border-radius: 0 0 var(--radius-md) 0;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  z-index: 100;
}
.skip-link:focus { left: 0; }

.stack > * + * { margin-top: var(--stack-space, var(--space-4)); }
.stack--sm { --stack-space: var(--space-2); }
.stack--lg { --stack-space: var(--space-6); }

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--cluster-space, var(--space-3));
  align-items: center;
}

.grid { display: grid; gap: var(--space-3); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--responsive { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

@media (max-width: 600px) {
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
}

.text-muted { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.text-center { text-align: center; }
.text-sm { font-size: var(--font-size-sm); }
.text-xs { font-size: var(--font-size-xs); }

.hidden { display: none; }

@media (max-width: 600px) {
  .hidden-mobile { display: none; }
}
@media (min-width: 601px) {
  .hidden-desktop { display: none; }
}

/* ────────────────────────────────────────────────────────────────────
   Marketing components — pagehead, section, eyebrow, crumbs, final,
   case-grid, steps, feature-list. Overgenomen uit de brandsheet en
   bijbehorende mockups. Gebruiken --font-display (Fraunces) voor titels.
   ──────────────────────────────────────────────────────────────────── */

/* Page header — compacte hero voor interne marketing-pagina's */
.pagehead {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--doemee-50) 100%);
  padding: 64px var(--space-6) 56px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.pagehead__inner {
  position: relative;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}
.pagehead--center { text-align: center; }
.pagehead--center .pagehead__lead { margin-left: auto; margin-right: auto; }
.pagehead__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 18px;
}
.pagehead__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--doemee-700);
}
.pagehead__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 580px;
}
.pagehead__cta {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  margin-top: 28px;
}

/* Crumbs (breadcrumbs onder pagehead) */
.crumbs {
  font-size: var(--font-size-sm);
  color: var(--muted);
  margin-bottom: 18px;
  display: flex; gap: var(--space-2); align-items: center; flex-wrap: wrap;
}
.crumbs a { color: var(--doemee-700); }
.crumbs a:hover { text-decoration: underline; }
.crumbs__sep { opacity: 0.4; }

/* Eyebrow — kleine label-pill boven titels */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: rgba(255,255,255,0.7);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--doemee-900);
  letter-spacing: 0.04em;
  border: 1px solid var(--doemee-100);
  margin-bottom: 18px;
}
.eyebrow__dot {
  width: 7px; height: 7px;
  background: var(--doemee-500);
  border-radius: 50%;
}

/* Section — generieke ruimte+achtergrond utility */
.section { padding: 88px var(--space-6); }
.section--sm { padding: 56px var(--space-6); }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--ink   { background: var(--ink); color: #FAFAF8; }
.section__inner { max-width: var(--max-width-wide); margin: 0 auto; }
.section__inner--prose { max-width: var(--max-width-prose); }
.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__head--left { margin: 0 0 40px; text-align: left; max-width: none; }
.section__tag {
  display: inline-block;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--doemee-600);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 14px;
}
.section--ink .section__tag { color: var(--doemee-300); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--ink);
}
.section--ink .section__title { color: #FAFAF8; }
.section__lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}
.section--ink .section__lead { color: rgba(250,250,248,0.7); }

/* Use-case grid (homepage "Voor wie") */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
@media (max-width: 880px) { .cases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cases { grid-template-columns: 1fr; } }
.case {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 200ms, border-color 200ms, box-shadow 200ms;
  display: block;
  /* De kaart is een <a> — reset link-styling zodat hover de inhoud
     niet onderstreept of recolort. Het kader-effect doet het werk. */
  color: inherit;
  text-decoration: none;
}
.case:hover,
.case:focus-visible {
  transform: translateY(-2px);
  border-color: var(--doemee-300);
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.04);
  text-decoration: none;
}
.case:hover .case__title,
.case:hover .case__desc { text-decoration: none; }
.case__icon {
  width: 44px; height: 44px;
  background: var(--doemee-50);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  color: var(--doemee-700);
  margin-bottom: 18px;
}
.case__title {
  font-size: 17px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.case__desc { font-size: var(--font-size-sm); color: var(--muted); line-height: 1.55; }
.cases__more {
  text-align: center;
  margin-top: 32px;
  font-size: var(--font-size-sm);
  color: var(--muted);
}
.cases__more a { color: var(--doemee-700); font-weight: var(--font-weight-medium); }
.cases__more a:hover { text-decoration: underline; }

/* Split — twee kolommen, even hoge inhoud (sectie + visual) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split--reverse > *:first-child { order: 2; }

/* Feature list (genummerde puntjes) */
.feature-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 22px;
  padding: 0;
}
.feature { display: flex; gap: 16px; }
.feature__num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--doemee-500); color: white;
  border-radius: var(--radius-pill);
  display: grid; place-items: center;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
}
.feature__title {
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.feature__desc { font-size: var(--font-size-sm); color: var(--muted); line-height: 1.6; }

/* Stappen-strip (homepage) — 3 verticale kolommen met cijfer-bubbel */
.steps-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.steps-strip::before {
  content: "";
  position: absolute;
  top: 24px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--doemee-200), var(--line));
}
@media (max-width: 720px) {
  .steps-strip { grid-template-columns: 1fr; gap: 32px; }
  .steps-strip::before { display: none; }
}
.steps-strip__item { text-align: center; position: relative; }
.steps-strip__num {
  width: 48px; height: 48px;
  background: white;
  border: 2px solid var(--doemee-500);
  border-radius: var(--radius-pill);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--doemee-700);
}
.steps-strip__title {
  font-size: 17px;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 8px;
}
.steps-strip__desc { font-size: var(--font-size-sm); color: var(--muted); line-height: 1.6; }

/* Pricing-cards (gebruikt door homepage + prijzen pagina) */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }
.price {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
}
.price--featured {
  border: 2px solid var(--doemee-500);
  box-shadow: 0 12px 32px rgb(29 158 117 / 0.08);
}
.price__badge {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--doemee-500); color: white;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price__name {
  font-size: var(--font-size-sm);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 12px;
}
.price__amount {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 4px;
}
.price__currency { font-size: 22px; color: var(--muted); font-weight: 500; }
.price__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.price__per {
  font-size: var(--font-size-sm);
  color: var(--muted);
  margin-bottom: 24px;
}
.price__list { list-style: none; padding: 0; margin-bottom: 28px; }
.price__list li {
  display: flex; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: var(--font-size-sm);
  line-height: 1.5;
}
.price__list li:first-child { padding-top: 0; }
.price__list li:last-child { border-bottom: 0; }
.price__list li svg { flex-shrink: 0; color: var(--doemee-500); margin-top: 2px; }
.price__cta { margin-top: 4px; }

/* Final-CTA blok onderaan pagina's */
.final {
  background: radial-gradient(ellipse at top, var(--doemee-50), transparent 60%), white;
  text-align: center;
  padding: 80px var(--space-6) 64px;
}
.final__inner { max-width: 720px; margin: 0 auto; }
.final__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.final__lead { font-size: 16px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.final__cta { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.final__contact {
  display: inline-flex; flex-wrap: wrap; gap: 22px; justify-content: center;
  font-size: var(--font-size-sm); color: var(--muted);
}
.final__contact a { color: var(--doemee-700); font-weight: var(--font-weight-medium); display: inline-flex; align-items: center; gap: 6px; }

/* Hero-trust-strip (kleine icoontjes met "X via Y") */
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-top: 28px;
  font-size: var(--font-size-sm);
  color: var(--muted);
}
.hero__trust-item { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust-item strong { color: var(--ink-2); font-weight: var(--font-weight-medium); }
.hero__trust-item svg { color: var(--doemee-500); }

/* Definitieve hero-stijl (overschrijft kleur-context) — voor marketing-
   pagina's met de Fraunces display-serif. Mag bestaan naast de bestaande
   tenant-hero die hero__title als sans gebruikt. */
.hero--display .hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.hero--display .hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--doemee-700);
}

/* FAQ-component (overgeschreven van de oude details/summary uit prose) */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 4px;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 24px; font-weight: 300;
  color: var(--doemee-600);
  line-height: 1;
  transition: transform 200ms;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__body {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
}
.faq__body p + p { margin-top: 10px; }

/* ────────────────────────────────────────────────────────────────────
   /hoe-het-werkt — bigsteps + mock-frames + deliverables + timeline
   ──────────────────────────────────────────────────────────────────── */
.bigstep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.bigstep:first-of-type { border-top: 0; padding-top: 32px; }
.bigstep--reverse { direction: rtl; }
.bigstep--reverse > * { direction: ltr; }
@media (max-width: 920px) {
  .bigstep { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
}
.bigstep__label { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.bigstep__num {
  width: 48px; height: 48px;
  background: var(--doemee-50);
  border: 1.5px solid var(--doemee-200);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  font-style: italic;
  color: var(--doemee-700);
}
.bigstep__meta {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--doemee-600);
  font-weight: var(--font-weight-semibold);
}
.bigstep__time {
  font-size: 13px; color: var(--muted);
  font-weight: 400; text-transform: none; letter-spacing: 0;
  margin-left: 8px;
}
.bigstep__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 16px;
}
.bigstep__lead { font-size: 16px; color: var(--ink-2); line-height: 1.65; margin-bottom: 24px; }
.bigstep__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.bigstep__list li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.bigstep__list svg { flex-shrink: 0; color: var(--doemee-600); margin-top: 4px; }

/* Mock-frame voor visuele kant van een stap */
.mock {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(15,110,86,0.06);
  overflow: hidden;
}
.mock__head {
  background: var(--paper);
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
}
.mock__head-dots { display: flex; gap: 5px; }
.mock__head-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.mock__head-title { font-weight: var(--font-weight-medium); color: var(--ink-2); }
.mock__body { padding: 20px; }

/* Email mock (stap 1) */
.email__meta {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 8px 12px;
  font-size: 13px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.email__meta dt { color: var(--muted); }
.email__meta dd { color: var(--ink); }
.email__body { font-size: 14px; line-height: 1.7; color: var(--ink-2); }
.email__body p + p { margin-top: 10px; }
.email__sig { margin-top: 18px; color: var(--muted); font-size: 13px; }

/* Builder mock (stap 2) */
.builder__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.builder__field {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: var(--paper);
  font-size: 13px;
}
.builder__field-label { font-size: 11px; color: var(--muted); display: block; margin-bottom: 3px; }
.builder__field-val { color: var(--ink); font-weight: var(--font-weight-medium); }
.builder__opts { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.builder__opt {
  padding: 8px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 13px;
  display: flex; align-items: center; gap: 8px;
}
.builder__opt-price { color: var(--muted); font-size: 12px; }
.builder__opt--add { border-style: dashed; color: var(--muted); cursor: pointer; }
.builder__save { margin-top: 16px; display: flex; justify-content: flex-end; gap: 8px; }

/* Share mock (stap 3) */
.share__url {
  background: var(--doemee-50);
  border: 1px solid var(--doemee-200);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--doemee-900);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.share__url button {
  font-size: 12px;
  background: white;
  color: var(--doemee-700);
  border: 1px solid var(--doemee-200);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-weight: var(--font-weight-medium);
}
.share__channels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.share__ch {
  text-align: center;
  padding: 14px 8px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  font-size: 12px; color: var(--muted);
  border: 1px solid var(--line);
}
.share__ch-icon { width: 24px; height: 24px; margin: 0 auto 6px; color: var(--doemee-600); }
.share__qr {
  margin-top: 16px;
  padding: 14px;
  background: var(--paper);
  border-radius: var(--radius-md);
  display: flex; gap: 14px; align-items: center;
}
.share__qr-box {
  width: 80px; height: 80px;
  background:
    linear-gradient(45deg, transparent 45%, var(--ink) 45%, var(--ink) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, var(--ink) 45%, var(--ink) 55%, transparent 55%),
    repeating-conic-gradient(var(--ink) 0% 25%, white 0% 50%) 50% / 16px 16px;
  background-color: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  flex-shrink: 0;
  position: relative;
}
.share__qr-box::after {
  content: ""; position: absolute; inset: 30%;
  background: white;
  border: 2px solid var(--ink);
  border-radius: 4px;
}
.share__qr-text { font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.share__qr-text strong { display: block; margin-bottom: 4px; color: var(--ink); }

/* Deliverables (Wat krijg je strip) */
.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .deliverables { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .deliverables { grid-template-columns: 1fr; } }
.deliverable {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.deliverable__icon {
  width: 40px; height: 40px;
  background: var(--doemee-50);
  color: var(--doemee-700);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.deliverable__title { font-size: 15px; font-weight: var(--font-weight-semibold); margin-bottom: 6px; }
.deliverable__desc { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* Timeline */
.timeline { position: relative; padding-left: 32px; margin: 0 auto; max-width: 720px; }
.timeline::before {
  content: ""; position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--doemee-100);
}
.timeline__item { position: relative; padding-bottom: 28px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -32px; top: 4px;
  width: 24px; height: 24px;
  background: white;
  border: 2px solid var(--doemee-500);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--doemee-700);
}
.timeline__time {
  font-size: 12px; color: var(--doemee-700);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.timeline__title { font-size: 16px; font-weight: var(--font-weight-semibold); margin-bottom: 4px; }
.timeline__desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ────────────────────────────────────────────────────────────────────
   /prijzen — pricing extras, calculator, scenarios, inclex
   ──────────────────────────────────────────────────────────────────── */
.scenarios { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .scenarios { grid-template-columns: 1fr; } }
.scen {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.scen__h {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--doemee-600);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 10px;
}
.scen__title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.scen__sub { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 18px; }
.scen__rows {
  font-size: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-bottom: 14px;
}
.scen__row { display: flex; justify-content: space-between; padding: 6px 0; color: var(--ink-2); }
.scen__row strong { font-weight: var(--font-weight-medium); }
.scen__total {
  display: flex; justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.scen__total-label { font-size: 13px; color: var(--muted); }
.scen__total-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--doemee-700);
}

/* Calculator (prijzen-pagina) */
.calc {
  max-width: 820px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: 0 12px 40px rgba(15,110,86,0.06);
}
.calc__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
@media (max-width: 640px) { .calc__top { grid-template-columns: 1fr; gap: 18px; } }
.calc__field label {
  display: block;
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  color: var(--ink-2);
  margin-bottom: 8px;
}
.calc__field .calc__hint {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
.calc__slider {
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  background: var(--doemee-500);
  border: 3px solid white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15,110,86,0.3);
}
.calc__slider::-moz-range-thumb {
  width: 20px; height: 20px;
  background: var(--doemee-500);
  border: 3px solid white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15,110,86,0.3);
}
.calc__slider-row { display: flex; align-items: center; gap: 12px; }
.calc__slider-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  min-width: 60px;
  text-align: right;
}
.calc__toggle {
  display: flex;
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 4px;
  border: 1px solid var(--line);
}
.calc__toggle-btn {
  flex: 1;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  color: var(--muted);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: all 150ms;
  border: 0;
  background: transparent;
}
.calc__toggle-btn[aria-pressed="true"] {
  background: white;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.calc__result {
  background: var(--doemee-50);
  border: 1px solid var(--doemee-200);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
@media (max-width: 640px) {
  .calc__result { grid-template-columns: 1fr; text-align: center; gap: 14px; }
}
.calc__result-label {
  font-size: 13px;
  color: var(--doemee-900);
  opacity: 0.75;
  margin-bottom: 4px;
}
.calc__result-value {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--doemee-900);
  line-height: 1;
}
.calc__result-detail {
  font-size: 13px;
  color: var(--doemee-900);
  opacity: 0.7;
  margin-top: 4px;
}
.calc__breakdown {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.calc__breakdown-row { display: flex; gap: 6px; align-items: center; }
.calc__breakdown-row strong { color: var(--ink-2); font-weight: var(--font-weight-medium); }

.inclex { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 720px) { .inclex { grid-template-columns: 1fr; } }
.inclex__col {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.inclex__col--no { background: var(--paper); }
.inclex__h {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--doemee-700);
}
.inclex__col--no .inclex__h { color: var(--muted); }
.inclex__list { list-style: none; padding: 0; }
.inclex__list li {
  display: flex; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  line-height: 1.5;
}
.inclex__list svg { flex-shrink: 0; margin-top: 3px; }
.inclex__col--no .inclex__list li { color: var(--muted-2); }

/* ────────────────────────────────────────────────────────────────────
   /voor-organisatoren — anchor-strip, pain-cols, segments
   ──────────────────────────────────────────────────────────────────── */
.anchor-strip {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}
.anchor-strip a {
  font-size: 13px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  color: var(--ink-2);
  font-weight: var(--font-weight-medium);
  transition: all 150ms;
}
.anchor-strip a:hover {
  background: var(--doemee-50);
  border-color: var(--doemee-200);
  color: var(--doemee-700);
}

.pains { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 880px) { .pains { grid-template-columns: 1fr; } }
.pain-col h3 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.pain-col h3 .badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-weight: var(--font-weight-semibold);
}
.pain-col--from h3 .badge { background: var(--rose-50, var(--color-danger-bg)); color: var(--rose-500, var(--color-danger-border)); }
.pain-col--to h3 .badge { background: var(--doemee-50); color: var(--doemee-700); }
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.pain {
  display: flex; gap: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.pain-col--from .pain { background: var(--paper); }
.pain__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.pain-col--from .pain__icon { background: var(--color-danger-bg); color: var(--color-danger-border); }
.pain-col--to .pain__icon { background: var(--doemee-50); color: var(--doemee-700); }
.pain__text { font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.pain__text strong { font-weight: var(--font-weight-semibold); color: var(--ink); }

.segment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.segment:first-of-type { border-top: 0; padding-top: 32px; }
.segment--reverse { direction: rtl; }
.segment--reverse > * { direction: ltr; }
@media (max-width: 920px) {
  .segment { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
}
.segment__tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--doemee-600);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 12px;
}
.segment__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.segment__lead { font-size: 16px; color: var(--ink-2); line-height: 1.6; margin-bottom: 22px; }
.segment__list { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin-bottom: 22px; }
.segment__list li { display: flex; gap: 12px; font-size: 14px; line-height: 1.5; }
.segment__list svg { flex-shrink: 0; color: var(--doemee-600); margin-top: 4px; }

.svisual {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 12px 32px rgba(15,110,86,0.06);
}
.svisual__top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.svisual__title { font-size: 15px; font-weight: var(--font-weight-semibold); }
.svisual__meta { font-size: 13px; color: var(--muted); }
.svisual__sub { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ════════════════════════════════════════════════════════════════════
   TENANT-PAGINA'S — tenant topbar, event cover, 4-stap formulier,
   sidebar samenvatting, powered-by-DoeMee voet. Volgt mockup
   `evenement.html`. Alle accentkleuren via --accent-* zodat de
   tenant-specifieke kleur door base.html.twig wordt geïnjecteerd.
   ════════════════════════════════════════════════════════════════════ */

/* ── Tenant-topbar ────────────────────────────────────────────────── */
.tbar {
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 18px 24px;
}
.tbar__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.tbrand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
  color: inherit;
}
.tbrand__mark {
  width: 44px; height: 44px;
  background: var(--accent-500);
  color: var(--accent-text-on-fill, white);
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--font-weight-semibold);
  font-style: italic;
  flex-shrink: 0;
}
.tbrand__logo { height: 36px; width: auto; flex-shrink: 0; }
.tbrand__text { display: flex; flex-direction: column; line-height: 1.1; }
.tbrand__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: var(--font-weight-medium);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.tbrand__sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.tbar__contact {
  font-size: 13px;
  color: var(--muted);
  display: flex; gap: 18px;
}
.tbar__contact a {
  color: var(--accent-500);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
}
.tbar__contact a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .tbar__contact { display: none; }
}

/* ── Cover / hero gradient ────────────────────────────────────────── */
.t-cover {
  height: 200px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.18), transparent 50%),
    linear-gradient(135deg, var(--accent-900), var(--accent-500));
  position: relative;
  overflow: hidden;
}
.t-cover::after {
  /* Lichte diagonale lijnen — geeft de gradient karakter zonder
     in een illustratie te vervallen. */
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 16px);
}
.t-cover--image {
  background: var(--ink);
}
.t-cover--image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0.92;
}

/* ── Event-head card (overlapt onder de cover) ────────────────────── */
.event-head {
  max-width: 1140px;
  margin: -56px auto 0;
  background: white;
  border-radius: var(--r-lg);
  padding: 32px 36px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}
.event-head__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-500);
  background: var(--accent-50);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.event-head__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 36px);
  font-weight: var(--font-weight-medium);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--ink);
}
.event-head__meta {
  display: flex; flex-wrap: wrap; gap: 22px;
  font-size: 14px;
  color: var(--muted);
}
.event-head__meta span { display: inline-flex; align-items: center; gap: 8px; }
.event-head__meta svg { color: var(--accent-500); flex-shrink: 0; }
@media (max-width: 640px) {
  .event-head { padding: 24px; border-radius: var(--r-md); }
}

/* ── Shell: hoofdkolom + sidebar ──────────────────────────────────── */
.t-shell {
  max-width: 1140px;
  margin: 32px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1100px) {
  .t-shell { grid-template-columns: 1fr; gap: 20px; max-width: 720px; }
}
.t-shell__main { display: flex; flex-direction: column; gap: 20px; }
.t-shell__side { position: sticky; top: 24px; }
@media (max-width: 1100px) {
  .t-shell__side { position: static; }
}

/* ── Genummerde stap-card ─────────────────────────────────────────── */
.t-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.t-step__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 6px;
}
.t-step__num {
  width: 28px; height: 28px;
  background: var(--accent-50);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  font-style: italic;
  color: var(--accent-500);
  flex-shrink: 0;
}
.t-step__title {
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.01em;
  margin: 0;
}
.t-step__sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 22px;
  padding-left: 42px;
}
@media (max-width: 640px) {
  .t-step { padding: 22px; }
  .t-step__sub { padding-left: 0; }
}

/* ── Category picker (radiokaarten) ───────────────────────────────── */
.t-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 540px) { .t-cats { grid-template-columns: 1fr; } }
.t-cat {
  display: block;
  cursor: pointer;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 16px;
  transition: border-color 150ms, background 150ms, box-shadow 150ms;
  position: relative;
}
.t-cat:hover { border-color: var(--accent-500); }
.t-cat:has(input:checked) {
  background: var(--accent-50);
  border-color: var(--accent-500);
  box-shadow: 0 0 0 3px var(--accent-100, rgba(29,158,117,0.10));
}
.t-cat input { position: absolute; opacity: 0; pointer-events: none; }
.t-cat__check {
  position: absolute;
  top: 14px; right: 14px;
  width: 20px; height: 20px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: white;
  display: grid; place-items: center;
  color: transparent;
  transition: all 150ms;
}
.t-cat:has(input:checked) .t-cat__check {
  background: var(--accent-500);
  border-color: var(--accent-500);
  color: var(--accent-text-on-fill, white);
}
.t-cat__name {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: var(--font-weight-semibold);
  color: var(--muted);
  margin-bottom: 4px;
}
.t-cat:has(input:checked) .t-cat__name { color: var(--accent-500); }
.t-cat__big {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: var(--font-weight-medium);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.t-cat__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Deelnemer-blok ───────────────────────────────────────────────── */
.t-participants { display: flex; flex-direction: column; gap: 14px; }
.t-participant {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px;
  position: relative;
}
.t-participant__h {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  color: var(--ink);
}
.t-participant__remove {
  font-size: 12px;
  color: var(--muted);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 4px;
}
.t-participant__remove:hover { color: var(--rose-500); background: var(--rose-50); }

.t-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 540px) { .t-field-grid { grid-template-columns: 1fr; } }
.t-field-grid > .t-field--full { grid-column: 1 / -1; }
.t-field { display: flex; flex-direction: column; }
.t-field label {
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  color: var(--ink-2);
  margin-bottom: 6px;
}
.t-field label .req { color: var(--rose-500); margin-left: 2px; }
.t-field input,
.t-field select,
.t-field textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  width: 100%;
  transition: border-color 150ms, box-shadow 150ms;
}
.t-field input:focus-visible,
.t-field select:focus-visible,
.t-field textarea:focus-visible {
  outline: 0;
  border-color: var(--accent-500);
  box-shadow: 0 0 0 3px var(--accent-100, rgba(29,158,117,0.12));
}
.t-field textarea { resize: vertical; min-height: 70px; }
.t-field__hint { font-size: 12px; color: var(--muted); margin-top: 6px; }
.t-field__error { font-size: 12px; color: var(--rose-500); margin-top: 6px; }

.t-add-participant {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px;
  background: white;
  border: 1.5px dashed var(--line);
  border-radius: var(--r-md);
  color: var(--accent-500);
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: background 150ms, border-color 150ms;
}
.t-add-participant:hover { border-color: var(--accent-500); background: var(--accent-50); }

/* ── Akkoord-vakjes ───────────────────────────────────────────────── */
.t-consent {
  display: flex; gap: 12px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  align-items: flex-start;
}
.t-consent + .t-consent { margin-top: 10px; }
.t-consent input {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--accent-500);
  flex-shrink: 0;
}
.t-consent label {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.t-consent label a { color: var(--accent-500); text-decoration: underline; }
.t-consent label .req { color: var(--rose-500); }

/* ── Sidebar: order summary ───────────────────────────────────────── */
.t-summary {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.t-summary__head {
  padding: 18px 22px;
  background: var(--accent-500);
  color: var(--accent-text-on-fill, white);
}
.t-summary__head h2 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  margin: 0;
}
.t-summary__head p {
  font-size: 12px;
  opacity: 0.85;
  margin: 2px 0 0;
}
.t-summary__body { padding: 18px 22px; }
.t-summary__empty {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 0 14px;
  line-height: 1.5;
}
.t-summary__line {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-soft);
  gap: 12px;
}
.t-summary__line:last-of-type { border-bottom: 0; }
.t-summary__line-name { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.t-summary__line-name strong { color: var(--ink); font-weight: var(--font-weight-medium); }
.t-summary__line-name small { font-size: 12px; color: var(--muted); }
.t-summary__line-price {
  font-weight: var(--font-weight-medium);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.t-summary__total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  display: flex; justify-content: space-between; align-items: baseline;
}
.t-summary__total-label { font-size: 13px; color: var(--muted); }
.t-summary__total-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: var(--font-weight-medium);
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.t-summary__pay {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.t-pay-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}
.t-pay {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 8px 6px;
  text-align: center;
  font-size: 11px;
  color: var(--ink-2);
  font-weight: var(--font-weight-medium);
}
.t-pay--ideal { background: white; border-color: #CC0066; color: #CC0066; font-style: italic; font-weight: 700; }
.t-pay--apple { background: var(--ink); color: white; border-color: var(--ink); }
.t-pay-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--accent-500);
  color: var(--accent-text-on-fill, white);
  border: 0;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: var(--font-weight-semibold);
  font-family: inherit;
  cursor: pointer;
  transition: background 150ms;
}
.t-pay-btn:hover { background: var(--accent-900); }
.t-pay-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.t-summary__trust {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.t-summary__trust-item { display: flex; gap: 8px; align-items: flex-start; line-height: 1.45; }
.t-summary__trust-item svg { color: var(--accent-500); flex-shrink: 0; margin-top: 1px; }
.t-summary__trust-item strong { color: var(--ink); font-weight: var(--font-weight-medium); }

/* ── Powered-by-DoeMee voet ──────────────────────────────────────── */
.powered {
  max-width: 1140px;
  margin: 56px auto 0;
  padding: 28px 24px 40px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.powered__main {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
}
.powered__main a {
  color: var(--ink-2);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
}
.powered__main a:hover { color: var(--doemee-700); }
.powered__mark {
  width: 18px; height: 18px;
  background: var(--doemee-500);
  border-radius: 4px;
  display: inline-grid; place-items: center;
  color: white;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  font-style: italic;
}
.powered__links {
  margin-top: 12px;
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  font-size: 12px;
}
.powered__links a { color: var(--muted); text-decoration: none; }
.powered__links a:hover { color: var(--doemee-700); }

/* ── Tenant-home: grid van event-kaarten ─────────────────────────── */
.t-home-hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 24px 0;
}
.t-home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: var(--font-weight-medium);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.t-home-hero p {
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
  margin: 0;
}

.t-events {
  max-width: 1140px;
  margin: 32px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.t-event-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 150ms, transform 150ms;
}
.t-event-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.t-event-card__cover {
  height: 140px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(135deg, var(--accent-900), var(--accent-500));
}
.t-event-card__cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.t-event-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.t-event-card__date {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: var(--font-weight-semibold);
  color: var(--accent-500);
}
.t-event-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--font-weight-medium);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}
.t-event-card__title a {
  color: inherit;
  text-decoration: none;
}
.t-event-card__meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}
.t-event-card__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  background: var(--accent-500);
  color: var(--accent-text-on-fill, white);
  padding: 10px 16px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  align-self: flex-start;
}
.t-event-card__cta:hover { background: var(--accent-900); }
.t-event-card--past .t-event-card__cover { filter: grayscale(60%) opacity(0.7); }
.t-event-card--past .t-event-card__cta { background: var(--gray-200); color: var(--ink-2); }

/* ── Tenant-bevestiging / status-pagina's ─────────────────────────── */
.t-status {
  max-width: 640px;
  margin: 56px auto 0;
  padding: 0 24px;
}
.t-status__card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  text-align: center;
}
@media (max-width: 540px) { .t-status__card { padding: 28px 22px; } }
.t-status__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-50);
  color: var(--accent-500);
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.t-status__icon--warning {
  background: var(--amber-50);
  color: var(--amber-500);
}
.t-status__icon--danger {
  background: var(--rose-50);
  color: var(--rose-500);
}
.t-status__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: var(--font-weight-medium);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.t-status__lead {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 24px;
}
.t-status__actions {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}

/* ── Wizard: stap-progress + navigatie ───────────────────────────── */
.t-progress {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 16px;
}
.t-progress__bar {
  flex: 1;
  height: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  min-width: 80px;
}
.t-progress__fill {
  height: 100%;
  background: var(--accent-500);
  transition: width 300ms ease-out;
  border-radius: 999px;
}
.t-progress__label {
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  color: var(--ink-2);
  white-space: nowrap;
}
.t-progress__label strong { color: var(--ink); }

.t-wizard-nav {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.t-wizard-nav__back {
  display: inline-flex; align-items: center; gap: 6px;
  background: none;
  border: 0;
  color: var(--muted);
  font-family: inherit;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  text-decoration: none;
}
.t-wizard-nav__back:hover { color: var(--ink); background: var(--paper); }
.t-wizard-nav__next {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--accent-500);
  color: var(--accent-text-on-fill, white);
  border: 0;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: background 150ms, opacity 150ms;
}
.t-wizard-nav__next:hover { background: var(--accent-900); }
.t-wizard-nav__next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--accent-500);
}

/* ── Aantal deelnemers — stepper (+/-) ─────────────────────────── */
.t-counter {
  display: inline-flex; align-items: stretch;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: white;
}
.t-counter__btn {
  width: 44px;
  background: var(--paper);
  border: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: background 120ms;
  font-family: inherit;
}
.t-counter__btn:hover { background: var(--gray-200); }
.t-counter__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--paper);
}
.t-counter__input {
  width: 64px;
  text-align: center;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: white;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--font-weight-medium);
  color: var(--ink);
  -moz-appearance: textfield;
  appearance: textfield;
}
.t-counter__input::-webkit-outer-spin-button,
.t-counter__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.t-counter__input:focus-visible {
  outline: 0;
  background: var(--accent-50);
}

/* ── Sidebar: stap-indicator per deelnemer ─────────────────────── */
.t-summary__progress {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 4px;
}
.t-summary__step-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--muted);
  padding: 4px 0;
}
.t-summary__step-row--active { color: var(--accent-500); font-weight: var(--font-weight-semibold); }
.t-summary__step-row--done { color: var(--ink-2); }
.t-summary__step-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: white;
  flex-shrink: 0;
  display: grid; place-items: center;
  color: transparent;
  transition: all 150ms;
}
.t-summary__step-row--active .t-summary__step-dot {
  border-color: var(--accent-500);
  background: white;
  box-shadow: 0 0 0 2px var(--accent-50);
}
.t-summary__step-row--done .t-summary__step-dot {
  background: var(--accent-500);
  border-color: var(--accent-500);
  color: var(--accent-text-on-fill, white);
}
