/* ================================================================
   DelayPaid — Globale stylesheet
   Vervang "DelayPaid" door de definitieve bedrijfsnaam
   ================================================================ */

/* ── Custom properties ── */
:root {
  --clr-primary:     #1a56db;
  --clr-primary-dk:  #1245b5;
  --clr-primary-600: #2563eb;
  --clr-primary-300: #93b4f7;
  --clr-accent:      #f59e0b;
  --clr-accent-dk:   #d97706;
  --clr-success:     #059669;
  --clr-warning:     #d97706;
  --clr-danger:      #dc2626;

  /* Premium navy — used for dark hero surfaces & footer */
  --clr-navy-900:    #0b1531;
  --clr-navy-800:    #111d3f;
  --clr-navy-700:    #1b2a56;

  --clr-gray-50:     #f9fafb;
  --clr-gray-100:    #f3f4f6;
  --clr-gray-200:    #e5e7eb;
  --clr-gray-300:    #d1d5db;
  --clr-gray-400:    #6b7280; /* was #9ca3af — lifted to meet WCAG AA on white */
  --clr-gray-600:    #4b5563;
  --clr-gray-700:    #374151;
  --clr-gray-800:    #1f2937;
  --clr-gray-900:    #111827;
  --clr-text:        #111827;
  --clr-bg:          #ffffff;

  --radius-sm:  8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* Layered, softly-tinted shadows for real depth */
  --shadow-xs:  0 1px 2px rgba(16,24,40,.06);
  --shadow-sm:  0 1px 3px rgba(16,24,40,.09), 0 1px 2px rgba(16,24,40,.05);
  --shadow-md:  0 6px 16px -4px rgba(16,24,40,.10), 0 3px 6px -2px rgba(16,24,40,.06), 0 1px 2px rgba(16,24,40,.04);
  --shadow-lg:  0 18px 40px -12px rgba(16,24,40,.18), 0 8px 16px -8px rgba(16,24,40,.10), 0 2px 4px rgba(16,24,40,.05);
  --shadow-xl:  0 32px 64px -16px rgba(11,21,49,.28), 0 16px 32px -12px rgba(16,24,40,.14), 0 2px 6px rgba(16,24,40,.06);
  --shadow-primary: 0 12px 28px -8px rgba(26,86,219,.42), 0 4px 10px -4px rgba(26,86,219,.30);

  --font: "Inter", system-ui, -apple-system, sans-serif;
  --max-w: 1120px;
  --transition: 180ms cubic-bezier(.4, 0, .2, 1);
  --transition-slow: 320ms cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--clr-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── Typography ── */
h1 { font-size: clamp(2.1rem, 1.4rem + 2.9vw, 3.4rem); font-weight: 800; line-height: 1.08; letter-spacing: -.035em; }
h2 { font-size: clamp(1.6rem, 1.15rem + 1.9vw, 2.4rem); font-weight: 750; line-height: 1.18; letter-spacing: -.025em; }
h3 { font-size: clamp(1.2rem, 1.1rem + .4vw, 1.35rem); font-weight: 700; line-height: 1.3; letter-spacing: -.015em; }
h4 { font-size: 1rem; font-weight: 700; letter-spacing: -.01em; }
p  { max-width: 68ch; }
.measure-narrow { max-width: 60ch; }

/* ── Layout helpers ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--alt { background: var(--clr-gray-50); }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.flex    { display: flex; gap: 16px; flex-wrap: wrap; }
.center  { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -.01em;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
  line-height: 1;
  position: relative;
  isolation: isolate;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(0) scale(.985); transition-duration: 60ms; }

.btn--primary { background: var(--clr-primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn--primary:hover { background: var(--clr-primary-dk); transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(26,86,219,.5), 0 6px 12px -4px rgba(26,86,219,.34); }
.btn--outline {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-gray-200);
  box-shadow: var(--shadow-xs);
}
.btn--outline:hover { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--accent { background: linear-gradient(180deg, #fbbf24 0%, var(--clr-accent) 100%); color: #1a1400; box-shadow: 0 10px 24px -8px rgba(245,158,11,.5); }
.btn--accent:hover { background: linear-gradient(180deg, var(--clr-accent) 0%, var(--clr-accent-dk) 100%); transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(245,158,11,.55); }
.btn--ghost { background: transparent; color: var(--clr-primary); }
.btn--ghost:hover { background: var(--clr-gray-100); }
.btn--lg { padding: 18px 36px; font-size: 1.125rem; border-radius: var(--radius-md); }
.btn--sm { padding: 10px 18px; font-size: .875rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Header & nav ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--clr-gray-200);
  transition: box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--clr-primary);
  text-decoration: none;
}
.logo__icon {
  width: 36px;
  height: 36px;
  background: var(--clr-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.nav { display: flex; align-items: center; gap: 8px; }
.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--clr-gray-600);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--clr-primary); background: var(--clr-gray-100); text-decoration: none; }
.nav__link--active { color: var(--clr-primary); font-weight: 600; }
.nav__cta { margin-left: 8px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-gray-800);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

/* ── Hero ── */
.hero {
  /* Soft mesh: several radial tints layered over a base gradient */
  background:
    radial-gradient(60% 90% at 88% 8%, rgba(245,158,11,.14) 0%, transparent 55%),
    radial-gradient(55% 80% at 8% 12%, rgba(26,86,219,.16) 0%, transparent 55%),
    radial-gradient(90% 90% at 60% 100%, rgba(59,130,246,.10) 0%, transparent 60%),
    linear-gradient(160deg, #eef3ff 0%, #f6f8ff 45%, #fef9ee 100%);
  padding: clamp(56px, 8vw, 92px) 0 clamp(48px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%231a56db' opacity='.07'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
  mask-image: radial-gradient(120% 120% at 50% 0%, #000 40%, transparent 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
}
.hero__content { max-width: 34rem; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(26,86,219,.2);
  color: var(--clr-primary);
  padding: 7px 15px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 22px;
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(6px);
}
.hero__title { margin-bottom: 20px; }
.hero__title span {
  background: linear-gradient(120deg, var(--clr-primary) 0%, #3b82f6 55%, var(--clr-accent) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub { font-size: clamp(1.05rem, 1rem + .4vw, 1.2rem); color: var(--clr-gray-600); margin-bottom: 32px; max-width: 32rem; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  font-size: .85rem;
  color: var(--clr-gray-600);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__trust-item svg { color: var(--clr-success); }

/* Hero illustration (pure CSS/SVG) */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.plane-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 20px;
  width: 100%;
  max-width: 400px;
  position: relative;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform var(--transition-slow);
  animation: plane-float 6s ease-in-out infinite;
}
.plane-card:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px); }
@keyframes plane-float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -10px; }
}
.plane-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.boarding-pass {
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(255,255,255,.28) 0%, transparent 45%),
    linear-gradient(135deg, var(--clr-primary) 0%, #2f6bec 55%, #3b82f6 100%);
  border-radius: var(--radius-md);
  padding: 24px 24px 26px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}
.boarding-pass::after {
  content: "✈";
  position: absolute;
  right: -10px;
  bottom: -16px;
  font-size: 80px;
  opacity: .1;
  transform: rotate(-8deg);
}
/* Perforation line separating the stub */
.boarding-pass__perf {
  position: relative;
  height: 0;
  border-top: 2px dashed rgba(255,255,255,.45);
  margin: 18px -24px 16px;
}
.boarding-pass__perf::before,
.boarding-pass__perf::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}
.boarding-pass__perf::before { left: -9px; }
.boarding-pass__perf::after  { right: -9px; }
.bp-route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.bp-airport { font-size: 2rem; font-weight: 800; }
.bp-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,.4);
  position: relative;
}
.bp-plane {
  font-size: 1.25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bp-meta { display: flex; gap: 24px; font-size: .8rem; opacity: .85; }
.bp-meta-item label { display: block; opacity: .7; margin-bottom: 2px; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.comp-badge {
  margin-top: 20px;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 20px -8px rgba(5,150,105,.5), inset 0 1px 0 rgba(255,255,255,.2);
}
.comp-badge__label { font-size: .8rem; opacity: .9; }
.comp-badge__amount { font-size: 1.5rem; font-weight: 800; }

/* ── Check-tool ── */
.check-tool {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 4vw, 48px);
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--clr-gray-100);
}
.check-tool__steps {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border-bottom: 2px solid var(--clr-gray-200);
}
.step-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--clr-gray-400);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: default;
  transition: color var(--transition), border-color var(--transition);
}
.step-tab.active {
  color: var(--clr-primary);
  border-bottom-color: var(--clr-primary);
}
.step-tab.done { color: var(--clr-success); }
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clr-gray-100);
  color: var(--clr-gray-600);
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.step-tab.active .step-num { background: var(--clr-primary); color: #fff; box-shadow: 0 0 0 4px rgba(26,86,219,.15); transform: scale(1.05); }
.step-tab.done .step-num { background: var(--clr-success); color: #fff; }
/* Show a check glyph on completed steps without touching the JS-managed number */
.step-tab.done .step-num { font-size: 0; }
.step-tab.done .step-num::after { content: "✓"; font-size: .85rem; }

.check-panel { display: none; }
.check-panel.active { display: block; }

/* Form elements */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row--single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; position: relative; }
.form-group label { font-weight: 600; font-size: .9rem; color: var(--clr-gray-800); }
.form-group small { font-size: .8rem; color: var(--clr-gray-400); }
.form-control {
  padding: 13px 16px;
  border: 2px solid var(--clr-gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--clr-text);
  background: var(--clr-gray-50);
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--clr-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26,86,219,.14);
}
.form-control::placeholder { color: var(--clr-gray-400); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* Autocomplete dropdown */
.autocomplete-wrap { position: relative; }
.autocomplete-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 50;
  max-height: 280px;
  overflow-y: auto;
}
.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background var(--transition);
}
.autocomplete-item:hover, .autocomplete-item.selected { background: var(--clr-gray-100); }
.autocomplete-item__code {
  font-weight: 700;
  font-size: .95rem;
  color: var(--clr-primary);
  min-width: 36px;
}
.autocomplete-item__name { font-size: .9rem; color: var(--clr-gray-800); }
.autocomplete-item__city { font-size: .8rem; color: var(--clr-gray-400); }

/* Toggle / checkbox */
.toggle-group {
  display: flex;
  gap: 12px;
}
.toggle-option {
  flex: 1;
  position: relative;
}
.toggle-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border: 2px solid var(--clr-gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  color: var(--clr-gray-600);
  transition: all var(--transition);
  background: var(--clr-gray-50);
}
.toggle-option input:checked + label {
  border-color: var(--clr-primary);
  background: #eef3ff;
  color: var(--clr-primary);
}

/* Result box */
.result-box {
  background: var(--clr-gray-50);
  border-radius: var(--radius-md);
  padding: 32px;
}
.result-box--success { background: #ecfdf5; border: 2px solid #a7f3d0; }
.result-box--warning { background: #fffbeb; border: 2px solid #fde68a; }
.result-box--neutral { background: var(--clr-gray-100); border: 2px solid var(--clr-gray-200); }

.result-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.result-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.result-icon--success { background: var(--clr-success); color: #fff; }
.result-icon--warning { background: var(--clr-warning); color: #fff; }
.result-icon--neutral { background: var(--clr-gray-400); color: #fff; }

.result-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--clr-success);
  line-height: 1;
  margin-bottom: 4px;
}
.result-amount--zero { color: var(--clr-gray-400); }
.result-sub { color: var(--clr-gray-600); font-size: .9rem; }

.fee-breakdown {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 20px 0;
  border: 1px solid var(--clr-gray-200);
}
.fee-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .95rem;
  border-bottom: 1px solid var(--clr-gray-200);
}
.fee-row:last-child { border-bottom: none; font-weight: 700; font-size: 1.05rem; }
.fee-row .label { color: var(--clr-gray-600); }

.scope-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  margin-bottom: 20px;
  font-weight: 500;
}
.scope-banner--ok { background: #ecfdf5; color: #065f46; }
.scope-banner--warn { background: #fffbeb; color: #92400e; }

/* ── Process steps ── */
.process-list { counter-reset: step; }
.process-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--clr-gray-200);
}
.process-item:last-child { border-bottom: none; }
.process-item__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  counter-increment: step;
}
.process-item__body h3 { margin-bottom: 6px; }
.process-item__body p { color: var(--clr-gray-600); font-size: .95rem; }

/* ── Cards ── */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  border: 1px solid var(--clr-gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card--hover:hover,
a.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-primary-300);
}
.card--elevated { box-shadow: var(--shadow-md); border: none; }
.card--elevated:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #eef3ff 0%, #dbeafe 100%);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(26,86,219,.08);
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--clr-gray-600); font-size: .95rem; }

/* ── Pricing ── */
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--clr-gray-200);
  padding: 36px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.03);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
@media (max-width: 700px) {
  .pricing-card--featured, .pricing-card--featured:hover { transform: none; }
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-primary);
  margin: 12px 0 4px;
  line-height: 1;
}
.pricing-amount span { font-size: 1rem; font-weight: 500; color: var(--clr-gray-600); }
.pricing-list { margin: 20px 0; }
/* Block li + absolute ::before check (same rationale as .honesty-list) so
   multi-line items with inline <strong> flow as continuous text. */
.pricing-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--clr-gray-800);
  border-bottom: 1px solid var(--clr-gray-100);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--clr-success);
  font-weight: 700;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--clr-gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--clr-gray-200); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
  /* reset button styles when used as <button> */
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  font-size: inherit;
  color: inherit;
}
.faq-question:hover h3 { color: var(--clr-primary); }
.faq-question h3 { font-size: 1rem; transition: color var(--transition); }
.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--clr-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  font-size: .8rem;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--clr-primary); color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 340ms var(--ease-out), padding 340ms var(--ease-out);
  color: var(--clr-gray-600);
  font-size: .95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 720px; padding-bottom: 20px; }

/* ── Eerlijkheid/disclaimer block ── */
.honesty-box {
  background: #fff7ed;
  border: 2px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 32px;
}
.honesty-box h3 { color: #c2410c; margin-bottom: 16px; }
.honesty-list { display: flex; flex-direction: column; gap: 12px; }
/* Each li is a normal block so its text (and inline <strong>) flows as one
   continuous paragraph. The icon is drawn as an absolutely-positioned ::before
   in the left gutter — never a flex item, which would break the text into
   per-word/per-<strong> columns. */
.honesty-list li {
  position: relative;
  padding-left: 34px;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--clr-gray-800);
  max-width: 68ch;
}
.honesty-list li::before {
  content: "ℹ";
  position: absolute;
  left: 0;
  top: 1px;
  background: #fed7aa;
  color: #c2410c;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
}

/* ── Stats ── */
.stat-card {
  text-align: center;
  padding: 32px;
}
.stat-card__num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label { color: var(--clr-gray-600); font-size: .95rem; }

/* ── Testimonials / quote ── */
.quote-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  border-left: 4px solid var(--clr-primary);
}
.quote-card p { color: var(--clr-gray-700); font-style: italic; margin-bottom: 16px; max-width: none; }
.quote-card__author { font-weight: 700; font-size: .9rem; }
.quote-card__meta { font-size: .8rem; color: var(--clr-gray-400); }

/* ── Form (aanmeldformulier) ── */
.claim-form .form-row { gap: 20px; margin-bottom: 20px; }
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--clr-gray-700);
}
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--clr-primary);
  cursor: pointer;
}
.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-gray-800);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--clr-gray-200);
}

/* ── Footer ── */
.footer {
  background:
    radial-gradient(80% 120% at 50% -20%, rgba(26,86,219,.25) 0%, transparent 55%),
    linear-gradient(180deg, var(--clr-navy-800) 0%, var(--clr-navy-900) 100%);
  color: #9aa7c7;
  padding: 68px 0 32px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148,180,247,.4), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(5, 1fr);
  gap: 32px 28px;
  margin-bottom: 48px;
}
.footer__brand { color: #9aa7c7; grid-column: span 1; }
.footer__brand .logo { color: #fff; margin-bottom: 14px; }
.footer__brand p { font-size: .9rem; line-height: 1.65; max-width: 320px; }
.footer__brand strong { color: #eef1f8; }
.footer__col h4 { color: #fff; margin-bottom: 16px; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col a { color: #9aa7c7; font-size: .9rem; text-decoration: none; transition: color var(--transition), padding var(--transition); }
.footer__col a:hover { color: #fff; padding-left: 3px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: #8592b3;
}
.footer__bottom a { color: #9aa7c7; transition: color var(--transition); }
.footer__bottom a:hover { color: #fff; }
@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: span 3; }
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--clr-gray-400);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--clr-primary); }
.breadcrumb span { color: var(--clr-gray-300); }

/* ── Page hero (inner pages) ── */
.page-hero {
  background:
    radial-gradient(60% 100% at 88% 0%, rgba(245,158,11,.10) 0%, transparent 55%),
    radial-gradient(60% 100% at 6% 10%, rgba(26,86,219,.12) 0%, transparent 55%),
    linear-gradient(160deg, #eef3ff 0%, #f6f8ff 100%);
  padding: clamp(48px, 6vw, 68px) 0 clamp(40px, 5vw, 52px);
  border-bottom: 1px solid var(--clr-gray-200);
}
.page-hero h1 { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.9rem); margin-bottom: 12px; }
.page-hero p { color: var(--clr-gray-600); font-size: clamp(1rem, .95rem + .3vw, 1.1rem); max-width: 62ch; }

/* ── Prose (legal pages) ── */
.prose h2 { margin: 36px 0 12px; }
.prose h3 { margin: 24px 0 8px; }
.prose p { margin-bottom: 16px; color: var(--clr-gray-700); }
.prose ul, .prose ol { padding-left: 20px; margin-bottom: 16px; color: var(--clr-gray-700); }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--clr-primary); }
.prose strong { color: var(--clr-gray-900); }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .9rem; }
.prose th { background: var(--clr-gray-100); padding: 10px 14px; text-align: left; font-weight: 600; border: 1px solid var(--clr-gray-200); }
.prose td { padding: 10px 14px; border: 1px solid var(--clr-gray-200); color: var(--clr-gray-700); }

/* ── Alert / notice ── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  margin-bottom: 20px;
}
.alert--info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.alert--warn { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert--success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert__icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: left; }
  .hero__content { max-width: none; }
  .hero__visual { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .check-tool { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .nav { display: none; flex-direction: column; position: fixed; inset: 68px 0 0; background: #fff; padding: 24px; z-index: 99; overflow-y: auto; gap: 4px; }
  .nav.open { display: flex; }
  .nav__link { padding: 14px 16px; font-size: 1rem; border-radius: var(--radius-sm); }
  .nav__cta { margin-left: 0; margin-top: 8px; }
  .nav-toggle { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer__brand { grid-column: 1 / -1; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .step-tab { padding: 12px 10px; justify-content: center; }
  .step-tab span:not(.step-num) { display: none; }
}

/* At the smallest phones (≤380px) keep the check-tool + tables comfortable */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .check-tool { padding: 20px 14px; }
  .honesty-box { padding: 22px 18px; }
  .pricing-card { padding: 26px 22px; }
}

/* ── Scroll-reveal motion (reveal.js adds .reveal-in when in view) ──
   Only hidden when JS is active (html.js, set synchronously in <head>), so
   content is never invisible if the script fails or JS is disabled. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); will-change: opacity, transform; }
.js .reveal.reveal-in { opacity: 1; transform: none; }
/* Stagger helper for grids/lists */
.reveal[data-reveal-delay="1"] { transition-delay: .06s; }
.reveal[data-reveal-delay="2"] { transition-delay: .12s; }
.reveal[data-reveal-delay="3"] { transition-delay: .18s; }
.reveal[data-reveal-delay="4"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .plane-card { animation: none; transform: none; }
}

/* ── Focus-visible (accessibility) ── */
:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 3px;
}
.form-control:focus-visible {
  outline: none; /* border-color + box-shadow provide the focus indicator */
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.25);
}
.nav__link:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 2px;
}
.faq-question:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 2px;
}

/* ── Utilities ── */
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.gap-4 { gap: 16px; }
.text-gray { color: var(--clr-gray-600); }
.text-sm { font-size: .9rem; }
.text-success { color: var(--clr-success); }
.text-primary { color: var(--clr-primary); }
.font-bold { font-weight: 700; }
.hidden { display: none !important; }

/* ── Verjaringsbanner (limitation.js) ── */
.limitation-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: .92rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.limitation-banner__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.limitation-banner--critical {
  background: #fef2f2;
  border: 1.5px solid #dc2626;
  color: #7f1d1d;
}
.limitation-banner--urgent {
  background: #fff7ed;
  border: 1.5px solid #f97316;
  color: #7c2d12;
}
.limitation-banner--warning {
  background: #fefce8;
  border: 1.5px solid #ca8a04;
  color: #713f12;
}
.limitation-banner--expired {
  background: #f3f4f6;
  border: 1.5px solid #6b7280;
  color: #374151;
}
.limitation-banner strong { font-weight: 700; }

/* ================================================================
   AWARD UPGRADE LAYER — additive, progressive, motion-safe
   Everything below refines the existing system without changing
   any id/class the JS depends on. Order matters: later rules win.
   ================================================================ */

/* ── Skip link (a11y) ──────────────────────────────────────────
   Add <a href="#main" class="skip-link">…</a> as the first child of
   <body>, and id="main" on the first <main>/<section>. Hidden until
   focused; then it slides into view. */
.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -120%);
  z-index: 1000;
  background: var(--clr-primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translate(-50%, 0);
  outline: 3px solid #fff;
  outline-offset: -6px;
  text-decoration: none;
}

/* ── Language switcher v2 — dropdown (see scripts/SWITCHER-SPEC.md) ──
   Built on <details>/<summary> so it opens WITHOUT JavaScript. Optional
   reveal.js/close.js enhancement closes it on outside-click / Escape.
   13 languages: globe + current code as trigger, panel with all names. */
.lang-menu {
  position: relative;
  margin-left: 6px;
}
/* Trigger (the <summary>) */
.lang-menu > summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px 7px 11px;
  border-radius: 100px;
  background: var(--clr-gray-100);
  box-shadow: inset 0 0 0 1px var(--clr-gray-200);
  color: var(--clr-gray-700);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}
.lang-menu > summary::-webkit-details-marker { display: none; }
.lang-menu > summary::marker { content: ""; }
.lang-menu > summary:hover { background: #fff; color: var(--clr-primary); box-shadow: var(--shadow-xs), inset 0 0 0 1px var(--clr-gray-200); }
.lang-menu > summary:focus-visible { outline: 3px solid var(--clr-primary); outline-offset: 2px; }
.lang-menu__globe { width: 15px; height: 15px; flex-shrink: 0; opacity: .8; }
.lang-menu__code { font-weight: 800; }
.lang-menu__caret {
  width: 9px; height: 9px; flex-shrink: 0;
  transition: transform var(--transition);
}
.lang-menu[open] > summary .lang-menu__caret { transform: rotate(180deg); }
.lang-menu[open] > summary { background: #fff; color: var(--clr-primary); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--clr-primary-300); }

/* Panel */
.lang-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  min-width: 210px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  animation: lang-menu-in var(--transition) var(--ease-out);
}
@keyframes lang-menu-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.lang-menu__panel a,
.lang-menu__panel span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
  color: var(--clr-gray-700);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.lang-menu__panel a:hover { background: var(--clr-gray-100); color: var(--clr-primary); text-decoration: none; }
.lang-menu__panel a:focus-visible { outline: 2px solid var(--clr-primary); outline-offset: -1px; }
.lang-menu__panel a small,
.lang-menu__panel span small { font-size: .7rem; font-weight: 700; letter-spacing: .04em; color: var(--clr-gray-400); text-transform: uppercase; margin-left: auto; }
.lang-menu__panel .is-current {
  background: #eef3ff;
  color: var(--clr-primary);
  font-weight: 700;
  cursor: default;
}
.lang-menu__panel .is-current small { color: var(--clr-primary-600); }

/* Footer: simple inline list of all languages (no dropdown) */
.footer .lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin-top: 6px;
  font-size: .82rem;
}
.footer .lang-list a { color: #9aa7c7; transition: color var(--transition); }
.footer .lang-list a:hover { color: #fff; text-decoration: none; }
.footer .lang-list .is-current { color: #fff; font-weight: 700; }

/* Mobile: the dropdown sits in the open nav column; align + full-width panel */
@media (max-width: 680px) {
  .nav .lang-menu { margin: 10px 0 0; align-self: stretch; }
  .nav .lang-menu > summary { justify-content: center; width: 100%; }
  .nav .lang-menu__panel { left: 0; right: 0; min-width: 0; }
}

/* Reduced motion: no panel slide */
@media (prefers-reduced-motion: reduce) {
  .lang-menu__panel { animation: none; }
  .lang-menu__caret { transition: none; }
}

/* ── Typographic refinement ────────────────────────────────────
   Slightly richer rhythm and comfortable measure without touching
   the existing fluid scale. */
body { text-rendering: optimizeLegibility; font-feature-settings: "kern" 1, "liga" 1; }
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }
.hero__title, .page-hero h1 { text-wrap: balance; }
.section > .container > .center { max-width: 62ch; margin-inline: auto; }
/* Lead paragraph under section headings gets a touch more presence */
.center > p:first-of-type { font-size: clamp(1rem, .96rem + .3vw, 1.12rem); }

/* ── Micro-interactions ────────────────────────────────────────
   Sheen sweep on primary buttons; springier lifts on cards; nav
   underline grow. All behind the reduced-motion guard at the end. */
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%);
  background-size: 220% 100%;
  background-position: 130% 0;
  opacity: 0;
  transition: opacity var(--transition), background-position var(--transition-slow);
}
.btn--primary:hover::after { opacity: 1; background-position: -30% 0; }

/* Underline-grow for header nav links */
.nav__link:not(.nav__cta) { position: relative; }
.nav__link:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
  opacity: .6;
}
.nav__link:not(.nav__cta):hover::after,
.nav__link--active::after { transform: scaleX(1); }

/* Cards & pricing use a springier ease on their existing lift */
.card, .card--elevated, .pricing-card {
  transition: transform var(--transition-slow) var(--ease-out),
              box-shadow var(--transition-slow) var(--ease-out),
              border-color var(--transition);
}

/* Accent link underline that respects reduced-motion */
.prose a, .breadcrumb a {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size var(--transition);
  text-decoration: none;
}
.prose a:hover, .breadcrumb a:hover { background-size: 100% 1.5px; }

/* Focus target polish for in-page anchors */
:target { scroll-margin-top: 88px; }

/* ── Trust strip helper (optional, drop-in) ────────────────────
   A quiet, consistent "no cure no pay / 25% incl. btw / Fixers B.V."
   band. Use where a page wants the signal without a full section. */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  padding: 16px 20px;
  font-size: .85rem;
  color: var(--clr-gray-600);
  background: var(--clr-gray-50);
  border-top: 1px solid var(--clr-gray-200);
  border-bottom: 1px solid var(--clr-gray-200);
}
.trust-strip__item { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.trust-strip__item svg { color: var(--clr-success); flex-shrink: 0; }

/* ── Selection colour ──────────────────────────────────────────*/
::selection { background: rgba(26,86,219,.16); color: var(--clr-gray-900); }

/* ── Reduced-motion: neutralise the new sweeps/grows ───────────*/
@media (prefers-reduced-motion: reduce) {
  .btn--primary::after { display: none; }
  .nav__link:not(.nav__cta)::after { transition: none; }
  .prose a, .breadcrumb a { transition: none; }
  .skip-link { transition: none; }
}

/* ================================================================
   PRINT STYLESHEET
   Optimised for the volmacht / kennisbank / legal pages. Strips
   chrome, forces high-contrast black-on-white, keeps URLs legible.
   ================================================================ */
@media print {
  :root { --clr-text: #000; }
  * { box-shadow: none !important; text-shadow: none !important; }
  html { font-size: 12pt; }
  body { color: #000; background: #fff; line-height: 1.5; }

  /* Hide interactive / decorative chrome */
  .header, .nav-toggle, .nav__cta, .footer__grid, .footer::before,
  .skip-link, .lang-switch, .hero__visual, .plane-card, .trust-strip,
  .nav-toggle, .faq-chevron, .btn, .breadcrumb, .comp-badge,
  #limitationBanner, .check-tool__steps { display: none !important; }

  /* Neutralise coloured surfaces so ink isn't wasted */
  .hero, .page-hero, .section--alt, .footer, .card, .card--elevated,
  .pricing-card, .honesty-box, .result-box, .alert, .quote-card,
  .check-tool {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #999 !important;
  }
  .section { padding: 12pt 0 !important; }
  .container { max-width: 100%; padding: 0; }

  h1, h2, h3, h4 { color: #000 !important; page-break-after: avoid; }
  p, li { orphans: 3; widows: 3; }
  .card, .pricing-card, .honesty-box, .faq-item, .process-item, table, figure {
    page-break-inside: avoid;
  }

  /* Expand collapsed FAQ answers so print shows everything */
  .faq-answer { max-height: none !important; overflow: visible !important; padding-bottom: 8pt !important; }
  .faq-item .faq-answer { display: block !important; }

  /* Print the destination of meaningful links */
  .prose a[href^="http"]::after,
  main a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: .85em;
    color: #333;
    word-break: break-all;
  }
  a { color: #000 !important; text-decoration: underline; background: none !important; }

  /* Reveal-hidden content must be visible on paper */
  .reveal { opacity: 1 !important; transform: none !important; }

  /* Footer: keep only the legal one-liner */
  .footer { padding: 12pt 0 0 !important; border-top: 1px solid #999; }
  .footer__bottom { color: #000 !important; border: none !important; padding-top: 8pt !important; }
  .footer__bottom a { display: none !important; }
}
