/* wa-lint: skip */
/* ==========================================================================
   /om/praktisk/ — Praktisk info
   Informationstung side — SLA-tabel, support-kanaler, status, onboarding-
   tidslinje, GDPR/DPA. Fokus er læsbarhed og scanability frem for narrative
   buen. Genbruger struktur-mønsteret fra /om/ men med et data-tungere look.
   ========================================================================== */

.praktisk-page {}

/* ── Breadcrumb ───────────────────────────────────────────────────────── */

/* ── Hero — kortere end /om/, tabellen er hovedindholdet ──────────────── */
.praktisk-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(127,168,182,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(184,90,58,0.04) 0%, transparent 60%);
}
.praktisk-hero__kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(127,168,182,0.14);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: var(--space-l);
}
.praktisk-hero__title {
  font-family: var(--font);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-l);
}
.praktisk-hero__title-light {
  display: block;
  font-weight: var(--fw-light);
  color: var(--brand-primary);
}
.praktisk-hero__title-bold {
  display: block;
  font-weight: var(--fw-bold);
  color: var(--accent);
}
.praktisk-hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text);
  max-width: 60ch;
  /* Centrér lede inden for container så den ikke flyder ud i ustruktureret
     blob når container har text-align:center (fx 404-side). ugdk-2jx. */
  margin: 0 auto var(--space-xl);
}

/* Quicklinks under hero — anchor-navigation til de 5 sektioner */
.praktisk-hero__quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-l);
}
.praktisk-quicklink {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  min-height: 44px;
  transition: transform .2s, border-color .2s, color .2s, background .2s;
}
.praktisk-quicklink:hover {
  transform: translateY(-2px);
  border-color: rgba(184,90,58,0.5);
  color: var(--accent);
  background: rgba(184,90,58,0.06);
}
.praktisk-quicklink__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  color: var(--brand-primary);
  transition: color .2s;
}
.praktisk-quicklink:hover .praktisk-quicklink__icon { color: var(--accent); }
.praktisk-quicklink__icon svg { width: 18px; height: 18px; }

/* ── Sections ─────────────────────────────────────────────────────────── */
.praktisk-section {
  padding: var(--space-xl) 0;
  scroll-margin-top: 72px;
}
.praktisk-section--subtle {
  background: linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 92%, var(--brand-primary)) 100%);
  position: relative;
}
.praktisk-section--subtle::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(49,79,89,0.07) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}
.praktisk-section--subtle > * { position: relative; z-index: 1; }

/* --contrast: mørk teal-bg, hvid tekst — bruges til "Vores løfte"-sektionen
   mellem support og status. Bryder den flade subtle-rytme (jf. om-section--contrast). */
.praktisk-section--contrast {
  background: var(--brand-primary);
  color: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;
}
.praktisk-section--contrast::before {
  content: "";
  position: absolute;
  inset: -50% 0 -50% 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,90,58,0.18) 0%, transparent 55%);
  pointer-events: none;
  animation: praktiskContrastGlow 14s ease-in-out infinite;
}
.praktisk-section--contrast > * { position: relative; z-index: 1; }
.praktisk-section--contrast .praktisk-section__head { color: rgb(255, 255, 255); }
.praktisk-section--contrast .praktisk-section__lead { color: rgba(255,255,255,0.92); }

/* "Vores løfte" — 3 forpligtelser-grid på kontrast-bg */
.praktisk-promise {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--space-m);
  margin: var(--space-l) 0 0;
  list-style: none;
  padding: 0;
}
.praktisk-promise__item {
  padding: var(--space-l);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  transition: transform .25s, border-color .25s, background .25s;
}
.praktisk-promise__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.10);
}
.praktisk-promise__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: rgb(255, 255, 255);
  font-family: var(--font);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  margin-bottom: var(--space-s);
  animation: praktiskPromisePulse 4.4s ease-in-out infinite;
}
.praktisk-promise__item:nth-child(2) .praktisk-promise__num { animation-delay: 0.6s; }
.praktisk-promise__item:nth-child(3) .praktisk-promise__num { animation-delay: 1.2s; }
.praktisk-promise__title {
  font-size: 17px;
  font-weight: var(--fw-bold);
  margin: 0 0 var(--space-s);
  color: rgb(255, 255, 255);
  line-height: 1.35;
}
.praktisk-promise__body {
  font-size: var(--fs-base);
  line-height: 1.55;
  color: rgba(255,255,255,0.84);
  margin: 0;
}

/* Nye keyframes til praktisk: ambient glow + promise-num pulse */
@keyframes praktiskContrastGlow {
  0%, 100% { transform: translateX(0) scale(1); opacity: 0.95; }
  50%      { transform: translateX(-8%) scale(1.06); opacity: 1; }
}
@keyframes praktiskPromisePulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(184,90,58,0.30); transform: scale(1); }
  50%      { box-shadow: 0 6px 20px rgba(184,90,58,0.55), 0 0 0 5px rgba(184,90,58,0.10); transform: scale(1.04); }
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-l);
}

.praktisk-section__head {
  font-family: var(--font);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-l);
  color: var(--text);
}
.praktisk-section__lead {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--text);
  max-width: 60ch;
  margin: 0 0 var(--space-l);
}
.praktisk-section__lead strong { color: var(--brand-primary); font-weight: var(--fw-bold); }

.praktisk-section__note {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-muted);
  margin: var(--space-l) 0 0;
  padding: var(--space-m) var(--space-l);
  background: rgba(127,168,182,0.10);
  border-radius: 8px;
  border-left: 3px solid var(--brand-primary);
}
.praktisk-section__note--small { font-size: 13px; padding: 12px 16px; }
.praktisk-section__note strong { color: var(--text); }
.praktisk-section__note a {
  color: var(--brand-primary);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
}
.praktisk-section__note a:hover { color: var(--accent); border-bottom-style: solid; }

/* ── SLA-tabel ────────────────────────────────────────────────────────── */
.praktisk-sla {
  margin-top: var(--space-l);
}
.praktisk-sla__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  font-size: var(--fs-base);
}
.praktisk-sla__table th {
  text-align: left;
  padding: 14px 16px;
  background: rgba(127,168,182,0.10);
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.praktisk-sla__table td {
  padding: var(--space-m);
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  line-height: 1.5;
}
.praktisk-sla__table tr:last-child td { border-bottom: none; }
.praktisk-sla__pri {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: var(--fw-bold);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.praktisk-sla__row--p1 .praktisk-sla__pri { background: rgba(220,38,38,0.12); color: rgb(185, 28, 28); }
.praktisk-sla__row--p2 .praktisk-sla__pri { background: rgba(212,160,23,0.16); color: rgb(146, 103, 13); }
.praktisk-sla__row--p3 .praktisk-sla__pri { background: rgba(127,168,182,0.18); color: var(--brand-primary); }
.praktisk-sla__pri-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}
.praktisk-sla__table strong { color: var(--text); font-weight: var(--fw-bold); }

/* ── Support-kanaler (3-card grid) ───────────────────────────────────── */
.praktisk-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: var(--space-l);
  margin-top: var(--space-l);
}
.praktisk-channel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-l);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.praktisk-channel:hover {
  transform: translateY(-3px);
  border-color: rgba(184,90,58,0.42);
  box-shadow: 0 8px 24px rgba(49,79,89,0.08);
}
.praktisk-channel__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(127,168,182,0.14);
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-m);
  transition: background .25s, color .25s;
}
.praktisk-channel:hover .praktisk-channel__icon {
  background: rgba(184,90,58,0.16);
  color: var(--accent);
}
.praktisk-channel__icon svg { width: 22px; height: 22px; }
.praktisk-channel__title {
  font-size: 17px;
  font-weight: var(--fw-bold);
  margin: 0 0 8px;
  color: var(--text);
}
.praktisk-channel__body {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: var(--text-muted);
}
.praktisk-channel__body a {
  color: var(--brand-primary);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.praktisk-channel__body a:hover { color: var(--accent); }
.praktisk-channel__meta {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── Status ──────────────────────────────────────────────────────────── */
.praktisk-status {
  display: grid;
  gap: var(--space-l);
  margin-top: var(--space-l);
}
.praktisk-status__card {
  display: block;
  padding: var(--space-l);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.praktisk-status__card:not(.praktisk-status__card--placeholder):hover {
  transform: translateY(-2px);
  border-color: rgba(184,90,58,0.42);
  box-shadow: 0 8px 24px rgba(49,79,89,0.08);
}
/* Placeholder-variant — status-side ikke live endnu, neutral grå styling */
.praktisk-status__card--placeholder {
  background: linear-gradient(135deg, rgba(127,168,182,0.06) 0%, rgba(214,228,240,0.10) 100%);
  border-style: dashed;
}
.praktisk-status__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.praktisk-status__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(127,168,182,0.18), 0 0 12px rgba(127,168,182,0.45);
  animation: praktiskStatusPulse 2.4s ease-in-out infinite;
}
/* Når status-siden er live, kan denne klasse skiftes til --live for grøn */
.praktisk-status__card--placeholder .praktisk-status__dot {
  animation-duration: 3.6s;
  opacity: 0.7;
}
@keyframes praktiskStatusPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.18); }
}
.praktisk-status__label {
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--text);
}
.praktisk-status__url {
  margin-left: auto;
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
  font-family: var(--font-mono, monospace);
  font-style: italic;
}
.praktisk-status__desc {
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: 56ch;
}
.praktisk-uptime {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: var(--space-m);
  margin: 0;
}
.praktisk-uptime > div {
  padding: var(--space-m);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.praktisk-uptime dt {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.praktisk-uptime dd {
  font-family: var(--font);
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--brand-primary);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ── Onboarding-tidslinje ────────────────────────────────────────────── */
.praktisk-timeline {
  list-style: none;
  padding: 0;
  margin: var(--space-l) 0 0;
  position: relative;
}
.praktisk-timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(127,168,182,0.5) 0%, rgba(184,90,58,0.5) 100%);
  border-radius: 1px;
}
.praktisk-timeline__item {
  position: relative;
  padding: 0 0 var(--space-l) 48px;
}
.praktisk-timeline__item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(127,168,182,0.12);
  transition: border-color .25s, box-shadow .25s;
}
.praktisk-timeline__item:hover::before {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(184,90,58,0.18);
}
.praktisk-timeline__item:last-child { padding-bottom: 0; }
.praktisk-timeline__when {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.praktisk-timeline__title {
  font-size: 17px;
  font-weight: var(--fw-bold);
  margin: 0 0 6px;
  color: var(--text);
}
.praktisk-timeline__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: 56ch;
}

/* ── GDPR-grid ───────────────────────────────────────────────────────── */
.praktisk-gdpr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--space-m);
  margin: var(--space-l) 0 0;
}
.praktisk-gdpr__item {
  padding: var(--space-m);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .2s, transform .2s;
}
.praktisk-gdpr__item:hover {
  border-color: rgba(127,168,182,0.5);
  transform: translateY(-1px);
}
.praktisk-gdpr__label {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin: 0 0 6px;
}
.praktisk-gdpr__body {
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}
.praktisk-gdpr__body strong { color: var(--accent); font-weight: var(--fw-bold); }

/* ── CTA ──────────────────────────────────────────────────────────────── */
.praktisk-cta {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--brand-primary) 0%, color-mix(in srgb, var(--brand-primary) 70%, rgb(0, 0, 0)) 100%);
  color: rgb(255, 255, 255);
  text-align: center;
  overflow: hidden;
}
.praktisk-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(214,228,240,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.praktisk-cta__head {
  position: relative;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: var(--fw-bold);
  margin: 0 0 var(--space-m);
  color: rgb(255, 255, 255);
  letter-spacing: -0.01em;
}
.praktisk-cta__lede {
  position: relative;
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 50ch;
  margin: 0 auto var(--space-xl);
  line-height: 1.55;
}
.praktisk-cta__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
  justify-content: center;
}
.praktisk-cta__actions .btn { min-height: 44px; }
.praktisk-cta__btn-light {
  border-color: rgba(255,255,255,0.45);
  color: rgb(255, 255, 255);
  background: transparent;
}
.praktisk-cta__btn-light:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}

/* ── Scroll-reveal — content er altid synligt (FIX R5: ingen opacity:0 wait) ── */
html.js .praktisk-page [data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
html.js .praktisk-page [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
html.js .praktisk-quicklink {
  opacity: 1;
  transform: none;
  transition: opacity .4s ease-out, transform .4s ease-out, color .2s, border-color .2s, background .2s;
}
html.js .praktisk-hero.is-revealed .praktisk-quicklink {
  opacity: 1;
  transform: translateY(0);
}
html.js .praktisk-hero.is-revealed .praktisk-quicklink:nth-child(1) { transition-delay: .3s; }
html.js .praktisk-hero.is-revealed .praktisk-quicklink:nth-child(2) { transition-delay: .38s; }
html.js .praktisk-hero.is-revealed .praktisk-quicklink:nth-child(3) { transition-delay: .46s; }
html.js .praktisk-hero.is-revealed .praktisk-quicklink:nth-child(4) { transition-delay: .54s; }
html.js .praktisk-hero.is-revealed .praktisk-quicklink:nth-child(5) { transition-delay: .62s; }
html.js .praktisk-hero.is-revealed .praktisk-quicklink:nth-child(6) { transition-delay: .70s; }

/* ── FAQ — kollapsbare details/summary ───────────────────────────────── */
.praktisk-faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-s, 12px);
  margin-top: var(--space-l);
}
.praktisk-faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.praktisk-faq__item:hover {
  border-color: rgba(127,168,182,0.5);
}
.praktisk-faq__item[open] {
  border-color: rgba(184,90,58,0.42);
  box-shadow: 0 4px 18px rgba(49,79,89,0.06);
}
.praktisk-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 16px var(--space-l);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
  min-height: 44px;
  transition: color .2s, background .2s;
}
.praktisk-faq__q::-webkit-details-marker { display: none; }
.praktisk-faq__q::after {
  content: "";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--brand-primary);
  border-bottom: 2px solid var(--brand-primary);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s, border-color .25s;
}
.praktisk-faq__item[open] .praktisk-faq__q::after {
  transform: rotate(-135deg) translate(-2px, -2px);
  border-color: var(--accent);
}
.praktisk-faq__q:hover { color: var(--accent); }
.praktisk-faq__q:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.praktisk-faq__a {
  padding: 0 var(--space-l) 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}
.praktisk-faq__a p { margin: 0 0 12px; }
.praktisk-faq__a p:last-child { margin-bottom: 0; }
.praktisk-faq__a strong { color: var(--text); font-weight: var(--fw-bold); }
.praktisk-faq__a a {
  color: var(--brand-primary);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
}
.praktisk-faq__a a:hover { color: var(--accent); border-bottom-style: solid; }

/* Smooth open-animation når browseren understøtter det */
@supports (interpolate-size: allow-keywords) {
  .praktisk-faq__item {
    interpolate-size: allow-keywords;
  }
  .praktisk-faq__item::details-content {
    block-size: 0;
    overflow: clip;
    transition: block-size .3s ease, content-visibility .3s allow-discrete;
  }
  .praktisk-faq__item[open]::details-content {
    block-size: auto;
  }
}

/* ── Timeline — handlings-liste pr. fase ─────────────────────────────── */
.praktisk-timeline__list {
  list-style: none;
  padding: 0;
  margin: var(--space-s, 10px) 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 56ch;
}
.praktisk-timeline__list li {
  position: relative;
  padding-left: 22px;
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--text-muted);
}
.praktisk-timeline__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--brand-primary);
  border-bottom: 2px solid var(--brand-primary);
  transform: rotate(-45deg);
  border-radius: 1px;
}
/* Prequel-step (før kontrakt) — markeres visuelt som "før forløbet starter" */
.praktisk-timeline__item--prequel::before {
  background: rgba(127,168,182,0.10);
  border-style: dashed;
}
.praktisk-timeline__item--prequel .praktisk-timeline__when {
  color: var(--brand-primary);
}

/* ── Mobil ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .praktisk-section { padding: var(--space-l) 0; }
  .praktisk-hero { padding: var(--space-xl) 0 var(--space-l); }
  .praktisk-hero__title { font-size: clamp(28px, 7vw, 40px); }
  .praktisk-hero__quicklinks { gap: var(--space-s); }
  .praktisk-quicklink { padding: 10px 12px; font-size: 13px; }
  .praktisk-cta__actions { flex-direction: column; align-items: stretch; }
  .praktisk-cta__actions .btn { width: 100%; justify-content: center; }
  .praktisk-status__url { margin-left: 0; }
  /* SLA-tabel: skift fra table-layout til kort-layout på mobil */
  .praktisk-sla__table thead { display: none; }
  .praktisk-sla__table,
  .praktisk-sla__table tbody,
  .praktisk-sla__table tr,
  .praktisk-sla__table td { display: block; }
  .praktisk-sla__table tr {
    padding: var(--space-m);
    border-bottom: 1px solid var(--border);
  }
  .praktisk-sla__table tr:last-child { border-bottom: none; }
  .praktisk-sla__table td {
    padding: 6px 0;
    border-bottom: none;
  }
  .praktisk-sla__table td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  .praktisk-sla__table td:nth-of-type(2)::before { content: "Åbningstid"; }
  .praktisk-sla__table td:nth-of-type(3)::before { content: "Messedøgn"; }
  .praktisk-sla__table td:nth-of-type(4)::before { content: "Aften & weekend"; }
}

@media (max-width: 480px) {
  .praktisk-section__head { font-size: var(--fs-3xl); }
}

/* ── Reduced motion ───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .praktisk-status__dot,
  .praktisk-section--contrast::before,
  .praktisk-promise__num { animation: none; }
  .praktisk-channel,
  .praktisk-quicklink,
  .praktisk-status__card,
  .praktisk-gdpr__item,
  .praktisk-faq__item,
  .praktisk-faq__q::after,
  .praktisk-timeline__item::before,
  .praktisk-promise__item { transition: none; }
  html.js .praktisk-page [data-reveal] { opacity: 1; transform: none; transition: none; }
  html.js .praktisk-quicklink { opacity: 1; transform: none; transition: none; }
}

/* ── Dark mode ────────────────────────────────────────────────────────── */
[data-theme="dark"] .praktisk-section--subtle {
  background: linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 80%, var(--brand-primary)) 100%);
}
[data-theme="dark"] .praktisk-section--subtle::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
}
[data-theme="dark"] .praktisk-section--contrast {
  background: color-mix(in srgb, var(--brand-primary) 35%, rgb(0, 0, 0));
}
[data-theme="dark"] .praktisk-promise__item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
}
[data-theme="dark"] .praktisk-promise__item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.32);
}
[data-theme="dark"] .praktisk-quicklink { background: var(--surface); border-color: var(--border); color: var(--text); }
[data-theme="dark"] .praktisk-sla__table { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .praktisk-sla__table th { background: rgba(127,168,182,0.10); border-color: var(--border); }
[data-theme="dark"] .praktisk-sla__table td { border-color: var(--border); color: var(--text); }
[data-theme="dark"] .praktisk-channel,
[data-theme="dark"] .praktisk-status__card,
[data-theme="dark"] .praktisk-gdpr__item,
[data-theme="dark"] .praktisk-faq__item { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .praktisk-faq__q { color: var(--text); }
[data-theme="dark"] .praktisk-faq__a { color: var(--text-muted); }
[data-theme="dark"] .praktisk-uptime > div { background: var(--bg); border-color: var(--border); }
[data-theme="dark"] .praktisk-cta {
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary) 50%, rgb(0, 0, 0)) 0%, rgb(10, 20, 24) 100%);
}
[data-theme="dark"] .praktisk-section__note { background: rgba(127,168,182,0.18); }
[data-theme="dark"] .praktisk-sla__row--p1 .praktisk-sla__pri { background: rgba(220,38,38,0.20); color: rgb(252, 165, 165); }
[data-theme="dark"] .praktisk-sla__row--p2 .praktisk-sla__pri { background: rgba(212,160,23,0.20); color: rgb(252, 211, 77); }
