:root {
  --ink: #171b19;
  --muted: #606761;
  --paper: #f7f7f3;
  --panel: #ffffff;
  --line: #deded8;
  --accent: #243d37;
  --accent-soft: #eef1ee;
  --shadow: 0 18px 42px rgba(23, 27, 25, 0.08);
  --soft-shadow: 0 8px 22px rgba(23, 27, 25, 0.055);
  --hero-image: image-set(
    url("venteliste-hero.webp") type("image/webp"),
    url("venteliste-hero.png") type("image/png")
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(36, 61, 55, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 27, 25, 0.1);
  background: rgba(247, 247, 243, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--ink);
  font-weight: 850;
  font-size: 1.05rem;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #343936;
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-weight: 760;
  text-decoration: none;
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(23, 27, 25, 0.18);
  color: var(--ink);
  box-shadow: none;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--soft-shadow);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(247, 247, 243, 0.99) 0%, rgba(247, 247, 243, 0.9) 40%, rgba(247, 247, 243, 0.32) 70%, rgba(247, 247, 243, 0.16) 100%),
    var(--hero-image) center right / cover no-repeat;
  border-bottom: 1px solid rgba(23, 27, 25, 0.1);
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 10vh, 120px) 0 clamp(52px, 8vh, 88px);
}

.hero-copy {
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  hyphens: auto;
  overflow-wrap: anywhere;
}

h1 {
  font-size: 5.9rem;
  max-width: 900px;
}

h2 {
  font-size: 3.5rem;
}

h3 {
  font-size: 1.24rem;
}

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

.lead {
  margin-top: 22px;
  max-width: 760px;
  color: #363b38;
  font-size: 1.25rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 27, 25, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #303632;
  font-size: 0.9rem;
  font-weight: 760;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  min-height: 124px;
  padding: 26px;
  background: #fbfbf7;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.35rem;
  color: var(--ink);
}

.section {
  padding: clamp(58px, 8vw, 104px) 0;
}

.section.alt {
  background: #efefea;
}

.section.dark {
  background: #171b19;
  color: white;
}

.section.dark p,
.section.dark .kicker {
  color: rgba(255, 255, 255, 0.74);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.kicker {
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 820;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.article .grid.three {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 26px;
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 27, 25, 0.22);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.card a {
  color: var(--accent);
  font-weight: 780;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #3b403d;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 3px #f2f2ee;
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.checklist span {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  background: #fbfbf8;
}

.template-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.template-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.template-card h3,
.template-card p {
  padding: 0 22px;
}

.template-card h3 {
  margin-top: 22px;
}

.template-card pre {
  margin: 18px 0 0;
  padding: 22px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  background: #f1f1ec;
  color: #2f3431;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.glossary-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.term-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.term-card h3 {
  margin-bottom: 8px;
}

.requirement-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  counter-reset: requirement;
}

.requirement-item {
  position: relative;
  padding: 22px 22px 22px 66px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.requirement-item::before {
  counter-increment: requirement;
  content: counter(requirement);
  position: absolute;
  top: 22px;
  left: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 0.88rem;
  font-weight: 850;
}

.requirement-item h3 {
  margin-bottom: 8px;
}

.policy-template {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.policy-clause {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.policy-clause h3,
.policy-clause p {
  padding: 0 22px;
}

.policy-clause h3 {
  margin-top: 22px;
}

.policy-clause .clause-text {
  margin-top: 16px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: #f1f1ec;
  color: #303632;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.faq-category {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.faq-category:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.faq-category h3 {
  margin-bottom: 14px;
}

.case-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.case-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.case-item h3 {
  margin-bottom: 8px;
}

.case-item strong {
  color: var(--accent);
}

.handover-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  counter-reset: handover;
}

.handover-step {
  position: relative;
  padding: 22px 22px 22px 66px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.handover-step::before {
  counter-increment: handover;
  content: counter(handover);
  position: absolute;
  top: 22px;
  left: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 0.88rem;
  font-weight: 850;
}

.handover-step h3 {
  margin-bottom: 8px;
}

.payment-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.payment-step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.payment-step h3 {
  margin-bottom: 8px;
}

.payment-step strong {
  color: var(--accent);
}

.complaint-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.complaint-step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.complaint-step h3 {
  margin-bottom: 8px;
}

.complaint-step strong {
  color: var(--accent);
}

.rights-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.rights-step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.rights-step h3 {
  margin-bottom: 8px;
}

.rights-step strong {
  color: var(--accent);
}

.match-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.match-rule {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.match-rule h3 {
  margin-bottom: 8px;
}

.match-rule strong {
  color: var(--accent);
}

.deadline-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.deadline-step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.deadline-step h3 {
  margin-bottom: 8px;
}

.deadline-step strong {
  color: var(--accent);
}

.message-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.message-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.message-item h3 {
  margin-bottom: 8px;
}

.message-item strong {
  color: var(--accent);
}

.audit-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.audit-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.audit-item h3 {
  margin-bottom: 8px;
}

.audit-item strong {
  color: var(--accent);
}

.backup-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.backup-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.backup-item h3 {
  margin-bottom: 8px;
}

.backup-item strong {
  color: var(--accent);
}

.breach-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.breach-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.breach-item h3 {
  margin-bottom: 8px;
}

.breach-item strong {
  color: var(--accent);
}

.export-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.export-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.export-item h3 {
  margin-bottom: 8px;
}

.export-item strong {
  color: var(--accent);
}

.basis-flow,
.bylaw-flow,
.openlist-flow,
.transfer-flow,
.sale-docs-flow,
.valuation-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.basis-item,
.bylaw-item,
.openlist-item,
.transfer-item,
.sale-docs-item,
.valuation-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.basis-item h3,
.bylaw-item h3,
.openlist-item h3,
.transfer-item h3,
.sale-docs-item h3,
.valuation-item h3 {
  margin-bottom: 8px;
}

.basis-item strong,
.bylaw-item strong,
.openlist-item strong,
.transfer-item strong,
.sale-docs-item strong,
.valuation-item strong {
  color: var(--accent);
}

.record-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.record-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.record-item h3 {
  margin-bottom: 8px;
}

.record-item strong {
  color: var(--accent);
}

.risk-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.risk-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.risk-item h3 {
  margin-bottom: 8px;
}

.risk-item strong {
  color: var(--accent);
}

.minimization-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.minimization-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.minimization-item h3 {
  margin-bottom: 8px;
}

.minimization-item strong {
  color: var(--accent);
}

.cleanup-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  counter-reset: cleanup;
}

.cleanup-step {
  position: relative;
  padding: 22px 22px 22px 66px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.cleanup-step::before {
  counter-increment: cleanup;
  content: counter(cleanup);
  position: absolute;
  top: 22px;
  left: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 0.88rem;
  font-weight: 850;
}

.cleanup-step h3 {
  margin-bottom: 8px;
}

.cleanup-step strong {
  color: var(--accent);
}

.collaboration-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.collaboration-step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.collaboration-step h3 {
  margin-bottom: 8px;
}

.collaboration-step strong {
  color: var(--accent);
}

.report-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.report-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.report-item h3 {
  margin-bottom: 8px;
}

.report-item strong {
  color: var(--accent);
}

.priority-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.priority-rule {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.priority-rule h3 {
  margin-bottom: 8px;
}

.priority-rule strong {
  color: var(--accent);
}

.retention-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.retention-rule {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.retention-rule h3 {
  margin-bottom: 8px;
}

.retention-rule strong {
  color: var(--accent);
}

.implementation-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  counter-reset: implementation;
}

.implementation-step {
  position: relative;
  padding: 22px 22px 22px 66px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.implementation-step::before {
  counter-increment: implementation;
  content: counter(implementation);
  position: absolute;
  top: 22px;
  left: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 0.88rem;
  font-weight: 850;
}

.implementation-step h3 {
  margin-bottom: 8px;
}

.implementation-step strong {
  color: var(--accent);
}

.yearwheel-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.yearwheel-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.yearwheel-item h3 {
  margin-bottom: 8px;
}

.yearwheel-item strong {
  color: var(--accent);
}

.selfservice-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.selfservice-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.selfservice-item h3 {
  margin-bottom: 8px;
}

.selfservice-item strong {
  color: var(--accent);
}

.access-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.access-rule {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.access-rule h3 {
  margin-bottom: 8px;
}

.access-rule strong {
  color: var(--accent);
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 62px;
}

.process .card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 22px;
  left: 24px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 850;
  font-size: 0.92rem;
}

.quote {
  border-left: 5px solid rgba(255, 255, 255, 0.32);
  padding: 8px 0 8px 26px;
  font-size: 1.85rem;
  line-height: 1.24;
  color: var(--ink);
}

.wide-panel {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1px;
  background: var(--line);
}

.split > div {
  background: var(--panel);
  padding: clamp(28px, 5vw, 54px);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.metric {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--accent);
  font-size: 1.7rem;
  line-height: 1.1;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.capability-item {
  min-height: 210px;
  padding: 24px;
  background: var(--panel);
}

.capability-item h3 {
  margin-bottom: 10px;
}

.inquiry-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.inquiry-copy,
.inquiry-form {
  background: var(--panel);
  padding: clamp(26px, 5vw, 48px);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #343936;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.inquiry-form {
  display: grid;
  gap: 14px;
}

.inquiry-form.standalone {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 780;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf8;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.inquiry-form textarea {
  min-height: 118px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--accent-soft);
}

.price-card {
  border: 1px solid rgba(23, 27, 25, 0.22);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.price-number {
  display: block;
  margin: 12px 0 10px;
  color: var(--accent);
  font-size: 3.15rem;
  font-weight: 900;
  line-height: 1;
}

.price-note {
  color: #3b403d;
  font-weight: 720;
}

.vendor-flow,
.decision-flow,
.import-flow {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.vendor-item,
.decision-item,
.import-step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.vendor-item h3,
.decision-item h3,
.import-step h3 {
  margin-bottom: 8px;
}

.vendor-item strong,
.decision-item strong,
.import-step strong {
  color: var(--accent);
}

.calculator-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.calculator-form,
.calculator-result {
  background: var(--panel);
  padding: clamp(22px, 4vw, 34px);
}

.calculator-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.calculator-form label {
  color: var(--ink);
  font-weight: 780;
}

.calculator-form input,
.calculator-form select {
  width: 100%;
  min-height: 46px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf8;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.calculator-result {
  display: grid;
  align-content: center;
  gap: 14px;
}

.calculator-result p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.calculator-result p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.calculator-result span {
  color: var(--muted);
}

.calculator-result strong {
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}

.contact-card a {
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 850;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.small-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  background: #f1f1ec;
  color: var(--ink);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.source-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.source-list a {
  color: var(--accent);
  font-weight: 780;
  text-decoration: none;
}

.source-list a:hover {
  text-decoration: underline;
}

.system-body {
  background: #f4f4ef;
  overflow-x: hidden;
}

.system-login {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 96px) 0;
}

.login-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.login-copy,
.login-box {
  background: var(--panel);
  padding: clamp(28px, 5vw, 54px);
}

.login-copy {
  display: grid;
  align-content: center;
}

.login-copy h1 {
  font-size: 4.2rem;
}

.login-box form,
.demo-logins,
.field-group {
  display: grid;
}

.login-box form {
  gap: 16px;
  margin-top: 22px;
}

.demo-logins {
  gap: 10px;
  margin-top: 22px;
}

.field-group {
  gap: 7px;
}

.field-group label {
  color: var(--ink);
  font-weight: 780;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf8;
  color: var(--ink);
  font: inherit;
}

.system-shell {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  min-height: calc(100vh - 72px);
  max-width: 100%;
}

.system-sidebar {
  position: sticky;
  top: 72px;
  align-self: start;
  height: calc(100vh - 72px);
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #fbfbf7;
}

.system-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.system-sidebar a,
.system-sidebar button,
.text-button {
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-weight: 780;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.system-sidebar a {
  padding: 10px 12px;
  border-radius: 8px;
}

.system-sidebar a[aria-current="page"],
.system-sidebar a:hover {
  background: var(--accent-soft);
  color: var(--ink);
}

.system-main {
  min-width: 0;
  padding: 28px;
}

.system-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.system-topbar h1 {
  font-size: 2.6rem;
}

.system-actions,
.system-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.system-grid {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.system-grid > * {
  min-width: 0;
}

.system-grid.two {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
}

.system-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.system-metric,
.system-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.system-metric {
  padding: 18px;
}

.system-metric span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.system-metric strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.system-metric p {
  margin-top: 8px;
  font-size: 0.93rem;
}

.system-card {
  padding: 22px;
}

.system-card.compact {
  display: grid;
  gap: 16px;
}

.system-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(130px, 0.35fr) minmax(150px, 0.42fr);
  gap: 12px;
  align-items: end;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f3;
}

.toolbar-actions {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.system-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.system-table-wrap {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.system-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.compact-table {
  min-width: 560px;
}

.system-table th,
.system-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.system-table th {
  color: #434844;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.system-table td span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.system-dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
}

.detail-dl {
  margin: 12px 0;
}

.system-dl div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f3;
}

.system-dl dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.system-dl dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 760;
}

.system-list,
.activity-list {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.system-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f3;
}

.system-list small {
  display: block;
  color: var(--muted);
}

.compact-list {
  gap: 8px;
}

.compact-list li {
  padding: 10px 11px;
}

.offer-checks {
  margin-bottom: 14px;
}

.system-timeline {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.system-timeline li {
  display: grid;
  grid-template-columns: minmax(110px, 0.32fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f3;
}

.system-timeline span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.activity-list li {
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}

.activity-list time {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.report-block {
  margin-top: 14px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f3;
}

.report-block h3 {
  margin-bottom: 8px;
}

.report-block ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(36, 61, 55, 0.18);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 820;
  white-space: nowrap;
}

.status-badge.afventer-betaling,
.status-badge.mangler,
.status-badge.dokumentpakke-mangler,
.status-badge.advarsel,
.status-badge.afventer,
.status-badge.kraever-rettelse,
.status-badge.gennemgaa,
.status-badge.kladde,
.status-badge.udkast,
.status-badge.planlagt {
  background: #f4eee3;
  color: #72572c;
}

.status-badge.fejl,
.status-badge.haster,
.status-badge.blokerer {
  background: #f3e8e4;
  color: #7b3b2e;
}

.status-badge.passiv {
  background: #eeeeec;
  color: #606761;
}

.status-badge.publiceret,
.status-badge.testet,
.status-badge.opdateret,
.status-badge.sendt,
.status-badge.eksporteret,
.status-badge.gennemgaaet,
.status-badge.fordelt,
.status-badge.loest,
.status-badge.oprettet,
.status-badge.besvaret {
  background: #e8f0ea;
  color: #2e5f3d;
}

.toast {
  min-height: 24px;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 760;
}

.profile-block {
  display: grid;
  gap: 10px;
}

.system-pills span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f7f3;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 760;
}

.product-band {
  background: #f1f1ec;
  border-top: 1px solid rgba(23, 27, 25, 0.08);
  border-bottom: 1px solid rgba(23, 27, 25, 0.08);
}

.product-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.product-flow article {
  min-height: 230px;
  padding: 30px;
  background: var(--panel);
}

.product-flow span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.product-flow h3 {
  margin-bottom: 10px;
}

.page-hero {
  padding: clamp(70px, 10vw, 122px) 0 clamp(48px, 7vw, 86px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(247, 247, 243, 0.97), rgba(247, 247, 243, 0.93)),
    var(--hero-image) center right / cover no-repeat;
}

.page-hero .lead {
  max-width: 860px;
}

.breadcrumb {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.article {
  display: grid;
  gap: 34px;
  min-width: 0;
}

.article > * {
  min-width: 0;
}

.article h2 {
  font-size: 2.55rem;
}

.article h3 {
  margin-bottom: 8px;
}

.sidebar {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.sidebar .card {
  min-width: 0;
  padding: 20px;
}

.sidebar a,
.sidebar p {
  overflow-wrap: anywhere;
}

.toc {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.toc a {
  color: var(--accent);
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq p {
  margin-top: 10px;
}

.cta-band {
  padding: clamp(54px, 8vw, 88px) 0;
  background: #eeeee8;
  border-top: 1px solid rgba(23, 27, 25, 0.08);
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  padding: 42px 0;
  background: #171b19;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.1fr);
  gap: 40px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.footer-links a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  display: grid;
  gap: 5px;
  margin-top: 18px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-contact a:hover {
  color: white;
}

@media (max-width: 900px) {
  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .lead {
    font-size: 1.14rem;
  }

  .price-number {
    font-size: 2.7rem;
  }

  .quote {
    font-size: 1.45rem;
  }

  .article h2 {
    font-size: 2.12rem;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(247, 247, 243, 0.98) 0%, rgba(247, 247, 243, 0.9) 58%, rgba(247, 247, 243, 0.58) 100%),
      var(--hero-image) center right / cover no-repeat;
  }

  .trust-row,
  .grid.three,
  .grid.two,
  .section-head,
  .split,
  .capability-grid,
  .inquiry-panel,
  .calculator-panel,
  .content,
  .product-flow,
  .login-panel,
  .system-shell,
  .system-grid.two,
  .system-toolbar,
  .cta-box,
  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .system-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .system-sidebar nav {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .system-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .cta-inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .nav-links {
    gap: 14px;
    font-size: 0.9rem;
  }

  .nav-links .button {
    width: auto;
    min-height: 40px;
    padding: 8px 14px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .page-hero h1 {
    font-size: 2.24rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .article h2 {
    font-size: 1.85rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }

  .card,
  .trust-item {
    padding: 22px;
  }

  .system-main {
    padding: 18px;
  }

  .system-topbar,
  .system-card-head,
  .system-list li,
  .system-timeline li {
    align-items: stretch;
    flex-direction: column;
  }

  .system-timeline li {
    grid-template-columns: 1fr;
  }

  .system-metrics,
  .system-dl {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .button:hover,
  .card:hover {
    transform: none;
  }
}

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    box-shadow: none !important;
    color: #000 !important;
    text-shadow: none !important;
  }

  @page {
    margin: 18mm;
  }

  body {
    background: #fff;
    font-size: 11pt;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .site-header,
  .site-footer,
  .skip-link,
  .hero-actions,
  .section-actions,
  .sidebar {
    display: none !important;
  }

  .hero,
  .page-hero,
  .section,
  .cta-band {
    min-height: 0;
    padding: 16pt 0;
    border: 0;
  }

  .container,
  .hero-inner {
    width: auto;
    max-width: none;
    padding: 0;
  }

  .content,
  .grid,
  .split,
  .product-flow,
  .metric-row,
  .trust-row {
    display: block;
  }

  .card,
  .trust-item,
  .wide-panel,
  .product-flow article {
    break-inside: avoid;
    border: 1px solid #bbb;
    margin: 0 0 12pt;
    padding: 12pt;
  }

  h1 {
    font-size: 28pt;
  }

  h2 {
    font-size: 18pt;
    margin-top: 18pt;
  }

  h3 {
    font-size: 13pt;
  }

  p,
  li {
    color: #000;
  }
}
