/* ============================================================================
   SA Solutions - styles.css
   Delt stylesheet for alle sider. Bygget efter SmartReceptionist-designsystemet
   (varm off-white, teal + guld, rene flader, ingen glas/gradients).
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { background: var(--bg-base); }

:root {
  /* ── Nye semantiske tokens (design-ark) ── */
  --bg-base:      #faf8f5;
  --bg-surface:   #ffffff;
  --bg-subtle:    #f1eee8;
  --bg-strong:    #e5e2dc;

  --text-1:       #2a2a2a;
  --text-2:       #6b6b6b;
  --text-3:       #9a958c;

  --border-1:     #e5e2dc;
  --border-2:     #d9d5cd;

  --brand:        #1a4d4a;
  --brand-hover:  #0f3d3e;
  --brand-soft:   #e6efee;

  --gold:         #f4b860;
  --gold-hover:   #e8a547;
  --gold-fg:      #2a2a2a;

  --mint:         #6b8e6b;
  --mint-hover:   #5a7a5a;
  --mint-soft:    #e8f0e8;

  --success:      #4a7c59;
  --warning:      #d4943c;
  --plade:        #2a2a2a;
  --gold-soft:    #fdf3e2;
  --danger:       #b5453c;
  --orange:       #e0822e;

  --radius-card:   14px;
  --radius-button: 10px;
  --radius-pill:   9999px;

  --shadow-sm: 0 1px 3px 0 rgba(0,0,0,.06), 0 1px 2px -1px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px -2px rgba(0,0,0,.06), 0 2px 4px -2px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 32px -8px rgba(0,0,0,.08), 0 4px 8px -4px rgba(0,0,0,.04);
  --shadow-focus: 0 0 0 3px rgba(26,77,74,.12);
  --shadow-gold: 0 10px 24px -12px rgba(26,77,74,.35);
  --shadow-gold-lg: 0 18px 40px -16px rgba(26,77,74,.4);

  --font-display: 'General Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Monaco, Consolas, monospace;

  /* ── Legacy variabelnavne (bruges i hundredvis af steder i den skrabede CSS
     nedenfor) peget på de nye tokens, saa hele siden re-skinnes uden at hver
     eneste regel skal omskrives enkeltvis. KUN lyst tema - ingen data-theme
     forgrening laengere. ── */
  /* Peger paa tokens frem for haardkodede vaerdier, saa det moerke tema slaar
     igennem i hele den skrabede CSS nedenfor. --bg stod som "transparent",
     fordi det lilla WebGL-laerred skulle skinne igennem - nu hvor laerredet er
     vaek, gav det bare en hvid side. */
  --bg:       var(--bg-base);
  --surface:  var(--bg-surface);
  --card:     var(--bg-subtle);
  --border:   var(--border-1);
  --border2:  var(--border-2);
  --text:     var(--text-1);
  --muted:    var(--text-2);
  --muted2:   var(--text-3);
  --accent:   var(--brand);
  --accent2:  var(--brand-hover);
  --green:    #4a7c59;
  --green2:   #4a7c59;
  --purple:   #6b8e6b;
  --orange:   #e0822e;
  --yellow:   #f4b860;
}

@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  color: var(--text);
  background: var(--bg-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 64px;
}

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
}
h1 { letter-spacing: -.03em; }
h2, h3 { letter-spacing: -.02em; }

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-button);
}
/* Chattens skrivefelt: raekken omkring det skifter allerede kant ved fokus,
   saa den globale glorie gav bare en lille cirkel oveni. */
.cb-input:focus,
.cb-input:focus-visible { box-shadow: none; }

/* ═══════════════════════════ NAV ═══════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  /* Striben gaar helt ud til skaermkanten; indholdet holder sig i midten.
     Foer stoppede baggrunden ved 1152px, saa der var hvide kanter i begge
     sider paa store skaerme. */
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-1);
}
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) { .nav-inner { padding: 0 24px; } }
@media (min-width: 768px) { .nav-inner { padding: 0 32px; } }
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  height: auto;
}
/* margin: 0 - en gammel li-regel gav 6px i bunden, som skubbede linkene
   3px op i forhold til ordmaerket. */
.nav-links > li { position: relative; display: flex; align-items: center; margin: 0; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: background-color .12s, color .12s;
}
.nav-links a:hover { color: var(--text-1); background: var(--bg-subtle); }

.dropdown {
  display: none; position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 8px;
  min-width: 200px;
  z-index: 300;
}
.dropdown-inner {
  background: var(--bg-surface);
  border: 1px solid var(--border-1); border-radius: 12px; padding: 8px;
  box-shadow: var(--shadow-lg);
}
.nav-links > li:hover .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 9px 14px; border-radius: 7px;
  font-size: 15px; color: var(--text-2); transition: color .15s, background .15s;
}
.dropdown li a:hover { color: var(--text-1); background: var(--bg-subtle); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Theme-toggle: knappen bevares funktionelt (ikon-swap), men siden har nu
   kun ét (lyst) tema - der er ingen moerk variant at skifte til. */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 9999px;
  border: 1px solid var(--border-1);
  background: var(--bg-surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: border-color .15s, background .15s, color .15s;
  flex-shrink: 0; cursor: pointer;
}
.theme-toggle:hover { border-color: var(--border-2); background: var(--bg-subtle); color: var(--text-1); }
.theme-toggle svg { width: 16px; height: 16px; fill: currentColor; }
.theme-toggle .icon-sun { display: none; }
html[data-theme="light"] .theme-toggle .icon-moon { display: none; }
html[data-theme="light"] .theme-toggle .icon-sun  { display: block; }

/* ═══════════════════════════ KNAPPER ═══════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 600;
  background: var(--gold);
  color: var(--gold-fg);
  border: none;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:hover:not:disabled) { background: var--brand-hover); border-color: var--brand-hover); }
.btn-primary:not:disabled):active,
.btn-nav:active,
.btn-ghost:not:disabled):active { transform: scale0.98); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 600;
  background: var(--bg-surface);
  color: var(--text-1);
  border: 1px solid var(--border-2);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, border-color .2s, transform .2s;
}
.btn-ghost:hover {
  background: var(--bg-elevated, var(--bg-surface));
  border-color: var(--text-3);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(0); }


.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  border-radius: var(--radius-button);
  font-size: 14px;
  /* 1.5 som paa den anden side. Med body'ens 1.6 blev linjen 22.95px hoej i en
     36px knap, og teksten sad derfor en anelse for lavt. */
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.005em;
  /* TEAL, ikke guld. Og firkantet-afrundet, ikke pilleformet. */
  background: var(--brand);
  color: #fff !important;
  border: 1px solid var(--brand);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 120ms ease, border-color 120ms ease, transform 80ms ease;
}
.btn-nav:hover { background: var(--brand-hover); border-color: var(--brand-hover); }

/* ═══════════════════════════ HAMBURGER / MOBIL NAV ═══════════════════════════ */
.nav-burger {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border-1);
  border-radius: 6px;
  background: var(--bg-surface);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  gap: 5px;
}
.nav-burger span { display:block; width:16px; height:1.75px; background:var(--text-1); border-radius:2px; transition:transform .25s,opacity .25s; }
/* Krydset naar menuen er aaben.
 *
 * Der stod tre regler her, skrevet til en burger med TRE streger: den
 * midterste skulle forsvinde, og de to yderste dreje. Knappen har kun to
 * spans, saa reglen for nth-child(2) slukkede den nederste streg og
 * nth-child(3) ramte ingenting. Tilbage var én skrå streg.
 *
 * De to streger staar 6,75 px fra hinanden (1,75 hoej + 5 i gap), saa hver
 * skal 3,375 px mod midten for at moedes. */
.nav-burger.open span:nth-child(1) { transform: translateY(3.375px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-3.375px) rotate(-45deg); }
@media (max-width:900px) { .nav-burger { display:flex; } }

/* Den gamle dropdown. Panelet laengere nede erstatter den helt; her staar
   kun det der ikke maa forsvinde for de gamle sider. */
.mobile-nav {
  background: var(--bg-surface);
}
.mobile-nav.open { display:flex; }
.mobile-nav a { font-size: 18px; color:var(--text-2); padding:11px 0; border-bottom:1px solid var(--border-1); transition:color .15s; display:block; }
.mobile-nav a:hover { color:var(--text-1); }
.mobile-nav .mob-section { font-size: 13px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-3); padding:14px 0 4px; }
.mobile-nav .btn-nav { margin-top:14px; justify-content:center; border-bottom:none; }

/* ═══════════════════════════ EYEBROWS / BADGES ═══════════════════════════ */
.hero-badge,
.page-eyebrow,
.feat-eyebrow,
.featured-text .eyebrow,
.article-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  padding: 5px 14px 5px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 24px;
}
/* Badgen er nu et link til smartreceptionist.dk. Den maa ikke skifte udseende
   af den grund: ingen understregning, samme farve, og en antydning af at der
   sker noget naar man peger paa den. */
a.hero-badge {
  text-decoration: none;
  transition: border-color .15s, color .15s, transform .15s;
}
a.hero-badge:hover {
  border-color: var(--brand);
  color: var(--text-1);
  transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
  a.hero-badge { transition: none; }
  a.hero-badge:hover { transform: none; }
}

.hero-badge::before,
.page-eyebrow::before,
.feat-eyebrow::before,
.featured-text .eyebrow::before,
.article-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════ KORT (generisk opskrift) ═══════════════════════════
   Denne gruppe erstatter det tidligere "Glass backdrop for cards over metal
   background" udvalg - nu rene, hvide kort uden gennemsigtighed/blur. */
.sol-card, .proof-item, .feat-card,
.testimonial-card, .stat-box, .plan-card,
.card, .case-card, .ai-card, .auto-card, .mkt-card, .faq-item,
.mission-highlight, .process-step, .team-card, .timeline-item,
.featured-card, .hero-visual, .q-card, .result-card,
.breakdown-card, .fact-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sol-card:hover, .feat-card:hover, .testimonial-card:hover,
.card:hover, .case-card:hover, .ai-card:hover, .auto-card:hover, .mkt-card:hover,
.team-card:hover, .timeline-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-2);
}

/* ═══════════════════════════ FLOW-DIAGRAM NODER ═══════════════════════════ */
.flow-node {
  background: var(--bg-subtle);
  border: 1px solid var(--border-1);
}
.fn-blue   { background: var(--brand-soft); }
.fn-green  { background: var(--mint-soft); }
.fn-purple { background: rgba(244,184,96,.2); }
.fn-orange { background: rgba(224,130,46,.15); }

/* ═══════════════════════════ CTA-SEKTION ═══════════════════════════ */
.cta-section h2 {
  color: var(--text-1);
  background: none;
}

.cb-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand);
  border: none;
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.cb-toggle:hover {
  transform: scale(1.08);
  background: var(--brand-hover);
}
.cb-toggle svg { width: 22px; height: 22px; fill: #fff; transition: opacity .15s; }
.cb-toggle .icon-close { display: none; }

.cb-window {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 999;
  width: 360px;
  max-height: 520px;
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.97);
  transition: opacity .22s ease, transform .22s ease;
}
.cb-window.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.cb-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--brand);
  flex-shrink: 0;
}
.cb-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: #fff;
}
.cb-header-info { flex: 1; }
.cb-header-name { font-size: 16.5px; font-weight: 500; color: #fff; }
.cb-header-status {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 1px;
}
.cb-header-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #6ee08a;
  border-radius: 50%;
}
.cb-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.8);
  font-size: 21px;
  padding: 4px;
  line-height: 1;
  transition: color .15s;
}
.cb-close-btn:hover { color: #fff; }

.cb-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-surface);
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) transparent;
}
.cb-messages::-webkit-scrollbar { width: 4px; }
.cb-messages::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 2px; }

.cb-msg-wrap { display: flex; flex-direction: column; gap: 3px; }
.cb-msg-wrap.user { align-items: flex-end; }

.cb-msg {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 11px;
  font-size: 16px;
  line-height: 1.55;
}
.cb-msg.ai {
  background: var(--bg-subtle);
  border: 1px solid var(--border-1);
  color: var(--text-1);
  border-bottom-left-radius: 3px;
}
.cb-msg.user {
  background: #d4e5d4;
  color: #1f3a1f;
  border-bottom-right-radius: 3px;
}
/* Links i chatten.
 *
 * De var teal paa teal-agtig baggrund og saa ud som almindelig tekst, saa
 * ingen opdagede at der var noget at klikke paa. Den klassiske blaa er ikke
 * vores brandfarve, men den er den ENE farve alle mennesker genkender som et
 * link uden at skulle laere det. Her vinder genkendelse over brandet. */
.cb-msg a {
  color: #1a5fb4;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  font-weight: 500;
  word-break: break-word;
}
.cb-msg a:hover { color: #12417d; text-decoration-thickness: 2px; }
.cb-msg.user a { color: #10375f; }
html[data-theme="dark"] .cb-msg a { color: #7fb3f0; }
html[data-theme="dark"] .cb-msg a:hover { color: #a5cbf5; }

.cb-avatar img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.cb-msg-time {
  font-size: 13px;
  color: var(--text-3);
  padding: 0 4px;
}

.cb-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 13px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-1);
  border-radius: 11px;
  border-bottom-left-radius: 3px;
  width: fit-content;
}
.cb-typing span {
  width: 6px;
  height: 6px;
  background: var(--text-3);
  border-radius: 50%;
  animation: typing 1.2s infinite;
}
.cb-typing span:nth-child(2) { animation-delay: .2s; }
.cb-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.cb-footer {
  border-top: 1px solid var(--border-1);
  padding: 10px 12px;
  flex-shrink: 0;
  background: var(--bg-surface);
}
.cb-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-1);
  border-radius: 9px;
  padding: 8px 12px;
  transition: border-color .15s;
}
.cb-input-row:focus-within { border-color: var(--brand); }
.cb-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font: inherit;
  font-size: 16px;
  color: var(--text-1);
  resize: none;
  max-height: 80px;
  line-height: 1.5;
}
.cb-input::placeholder { color: var(--text-3); }
.cb-send {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s, transform .1s;
}
.cb-send:hover { background: var(--gold-hover); }
.cb-send:active { transform: scale(.92); }
.cb-send svg { width: 14px; height: 14px; fill: var(--gold-fg); }
.cb-send:disabled { opacity: .4; cursor: default; }

.cb-error {
  font-size: 14px;
  color: var(--danger);
  text-align: center;
  padding: 4px 0;
  display: none;
}

@media (max-width: 420px) {
  .cb-window { right: 12px; left: 12px; width: auto; bottom: 88px; }
  .cb-toggle { right: 16px; bottom: 20px; }
}

/* ═══════════════════════════ SCROLL REVEAL ═══════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* ═══════════════════════════ PROCES-TRIN (scoped mod spørgeskemaets
   .step, som bruges til at vise/skjule quiz-trin - se dedikeret regel
   laengere nede i siden-specifikke sektioner) ═══════════════════════════ */
.steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 600; margin-bottom: 14px;
}

/* ═══════════════════════════ FORMS / INPUTS ═══════════════════════════ */
.newsletter-row input,
.newsletter-row button {
  background: var(--bg-surface);
  border: 1px solid var(--border-2);
  color: var(--text-1);
}
.newsletter-row input:focus { border-color: var(--brand); }
.newsletter-row button:hover { color: var(--text-1); border-color: var(--text-3); }


/* ============================================================================
   Side-specifikke regler (udtrukket fra de oprindelige per-side <style>-
   blokke, dedupliceret paa tvaers af alle 24 sider, og re-skinnet til
   tokens ovenfor). Grupperet efter den side der foerst introducerede reglen
   - reglerne er globale i denne fil og paavirker kun elementer der rent
   faktisk findes paa den givne side.
   ========================================================================== */


/* ── index.html ── */
.mobile-nav {
      background: var(--bg-surface);
    }
.hero h1 {
      color: var(--text-1);
}
.tag-purple { color: #5a7a5a; }
#liquidCanvas {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: -1;
      display: block;
      pointer-events: none;
    }
@media (max-width: 767px) { #liquidCanvas { display: none; } }
.hero {
      padding: 120px 16px 96px;
      text-align: center;
      max-width: 860px;
      margin: 0 auto;
    }
.hero h1 {
      font-family: var(--font-display);
      font-size: clamp(38px, 6vw, 68px);
      font-weight: 700;
      letter-spacing: -.03em;
      line-height: 1.08;
      padding-bottom: 0.12em;
      margin-bottom: 24px;
      color: var(--text-1);
}
.hero p {
      font-size: 20px;
      font-weight: 300;
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto 36px;
      line-height: 1.65;
    }
.hero-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }
.hero-visual {
      margin: 64px auto 0;
      max-width: 900px;
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 32px 96px rgba(0, 0, 0, 0.12), 0 0 0 1px var(--border);
    }
.hv-bar {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border);
    }
.hv-dot { width: 10px; height: 10px; border-radius: 50%; }
.hv-title {
      flex: 1;
      text-align: center;
      font-size: 15px;
      color: var(--muted2);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
.hv-body {
      display: grid;
      grid-template-columns: 220px 1fr;
      min-height: 380px;
    }
.hv-sidebar {
      border-right: 1px solid var(--border);
      padding: 16px 0;
    }
.hv-sidebar-item {
      padding: 7px 16px;
      font-size: 15px;
      color: var(--muted2);
      cursor: default;
      display: flex;
      align-items: center;
      gap: 8px;
      border-radius: 4px;
      margin: 0 6px;
    }
.hv-sidebar-item.active {
      background: rgba(26, 77, 74,.15);
      color: var(--accent2);
    }
.hv-sidebar-item .s-icon {
      width: 16px;
      height: 16px;
      border-radius: 3px;
      background: var(--border2);
      flex-shrink: 0;
    }
.hv-sidebar-item.active .s-icon {
      background: rgba(26, 77, 74,.4);
    }
.hv-main {
      padding: 20px 24px;
    }
.hv-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 10px;
      border-radius: 6px;
      margin-bottom: 4px;
      border: 1px solid transparent;
      transition: border-color .2s;
    }
.hv-row:hover { border-color: var(--border); background: var(--card); }
.hv-row-icon {
      width: 18px;
      height: 18px;
      border-radius: 4px;
      flex-shrink: 0;
    }
.hv-row-text { font-size: 15px; color: var(--muted); flex: 1; }
.hv-row-tag {
      font-size: 13px;
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 500;
    }
.tag-blue  { background: rgba(26, 77, 74,.2); color: var(--accent2); }
.tag-green { background: rgba(74, 124, 89,.2); color: var(--green); }
.tag-purple { background: rgba(107, 142, 107,.2); color: var(--brand); }
.tag-grey  { background: var(--border); color: var(--muted2); }
.hv-receptionist { overflow: hidden; background: transparent; }
.hv-rec-img {
      display: block; width: 100%; height: auto;
      max-height: 420px; object-fit: cover;
      border-bottom: 1px solid var(--border);
    }
.hv-rec-body { padding: 36px 40px 40px; text-align: center; }
.hv-rec-eyebrow {
      font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
      color: var(--accent2); margin-bottom: 14px; font-weight: 600;
    }
.hv-rec-title {
      font-size: clamp(22px, 2.6vw, 28px); font-weight: 600;
      letter-spacing: -.025em; line-height: 1.25; margin-bottom: 14px; color: var(--text);
    }
.hv-rec-text {
      font-size: 16px; color: var(--muted); max-width: 580px;
      margin: 0 auto 26px; line-height: 1.65;
    }
.hv-rec-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hv-rec-actions .btn-primary,
    .hv-rec-actions .btn-ghost { text-decoration: none; }
@media (max-width: 600px) {
      .hv-rec-body { padding: 26px 22px 30px; }
      .hv-rec-img { max-height: 260px; }
    }
.hv-section-label {
      font-size: 13px;
      color: var(--muted2);
      text-transform: uppercase;
      letter-spacing: .06em;
      padding: 14px 10px 6px;
    }
.proof-bar {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 20px 16px;
      display: flex;
      justify-content: center;
      gap: 56px;
      flex-wrap: wrap;
    }
.proof-item {
      text-align: center;
    }
.proof-num {
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -.02em;
      color: var(--text-1);
}
.proof-label {
      font-size: 15px;
      color: var(--muted);
      margin-top: 2px;
    }
.features { max-width: 1080px; margin: 0 auto; padding: 0 16px; }
.feat-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      padding: 96px 0;
      border-top: 1px solid var(--border);
    }
.feat-section.reverse { direction: rtl; }
.feat-section.reverse > * { direction: ltr; }
.feat-h {
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 600;
      letter-spacing: -.025em;
      line-height: 1.2;
      margin-bottom: 16px;
    }
.feat-p {
      font-size: 18px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 28px;
    }
.feat-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
.feat-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16.5px;
      color: var(--muted);
    }
.feat-list li::before {
      content: '';
      width: 5px;
      height: 5px;
      background: var(--accent);
      border-radius: 50%;
      flex-shrink: 0;
    }
.feat-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 16px;
      color: var(--accent2);
      margin-top: 24px;
      transition: gap .15s;
    }
.feat-link:hover { gap: 10px; }
.feat-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    }
.feat-card-header {
      padding: 14px 16px;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
      color: var(--muted2);
      display: flex;
      align-items: center;
      gap: 8px;
    }
.feat-card-header .dot-row { display: flex; gap: 5px; }
.feat-card-header .dot { width: 8px; height: 8px; border-radius: 50%; }
.feat-card-body { padding: 20px; }
.flow {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
.flow-node .fn-icon {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }
.flow-node .fn-label { flex: 1; color: var(--muted); }
.flow-node .fn-status {
      font-size: 11px;
      padding: 2px 7px;
      border-radius: 4px;
    }
.flow-connector {
      width: 1px;
      height: 16px;
      background: var(--border2);
      margin-left: 24px;
    }
.chat { display: flex; flex-direction: column; gap: 10px; }
.chat-msg {
      max-width: 80%;
      padding: 9px 13px;
      border-radius: 10px;
      font-size: 13px;
      line-height: 1.5;
    }
.chat-msg.ai {
      background: var(--card);
      border: 1px solid var(--border);
      color: var(--muted);
      align-self: flex-start;
    }
.chat-msg.user {
      background: rgba(26, 77, 74,.2);
      border: 1px solid rgba(26, 77, 74,.3);
      color: var(--text);
      align-self: flex-end;
    }
.chat-label {
      font-size: 13px;
      color: var(--muted2);
      margin-bottom: 2px;
      letter-spacing: .03em;
    }
.chat-label.right { text-align: right; }
.chat-input-row {
      margin-top: 8px;
      display: flex;
      gap: 8px;
      align-items: center;
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 8px;
      padding: 8px 12px;
    }
.chat-input-row span { font-size: 12px; color: var(--muted2); flex: 1; }
.chat-send {
      width: 24px;
      height: 24px;
      background: var(--accent);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      color: #fff;
      flex-shrink: 0;
    }
.analytics { display: flex; flex-direction: column; gap: 14px; }
.analytics-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }
.analytics-label { font-size: 12px; color: var(--muted2); width: 110px; flex-shrink: 0; }
.bar-track {
      flex: 1;
      height: 6px;
      background: var(--border);
      border-radius: 3px;
      overflow: hidden;
    }
.bar-fill {
      height: 100%;
      border-radius: 3px;
      background: var(--accent);
    }
.analytics-val { font-size: 13px; color: var(--text); font-weight: 500; width: 36px; text-align: right; flex-shrink: 0; }
/* De tre noegletal i dashboard-eksemplet.
 *
 * De sagde foer "↑ / Leads", "Tid / Sparet pr. uge" og "Aktiv / Chatbot svar".
 * Det er ord uden indhold: man kan se at der er en boks, men ikke hvad den
 * viser, og slet ikke hvorfor man skulle koebe noget.
 *
 * Nu er der et tal, en udvikling og en kurve. Tallene er et EKSEMPEL, ikke en
 * kundes resultater - derfor staar der "Eksempel" i dashboardets titellinje.
 *
 * Egen klasse frem for .stat-box, fordi .stat-box er defineret fire steder i
 * denne fil med forskellige vaerdier, og den sidste vinder. */
.kpi {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 11px 12px 9px;
  background: var(--bg-surface);
  border: 1px solid var(--border-1);
  border-radius: 10px;
  transition: border-color .2s ease, transform .2s cubic-bezier(.16,1,.3,1);
}
.kpi:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.kpi-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}
.kpi-label {
  font-size: 10.5px;
  line-height: 1.25;
  color: var(--text-3);
  letter-spacing: .01em;
}
.kpi-trend {
  font-size: 10.5px;
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
/* Groen for begge: baade flere henvendelser og kortere svartid er fremgang. */
.kpi-op, .kpi-ned { color: var(--success); }
.kpi-val {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--text-1);
  font-variant-numeric: tabular-nums;
}
.kpi-spark {
  width: 100%;
  height: 26px;
  display: block;
  overflow: visible;
}
.kpi-spark polyline {
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.kpi:hover .kpi-spark polyline { stroke: var(--gold); }

/* Markoeren i dashboardets titellinje. Tallene er opdigtede, og det skal man
   kunne se uden at gaette. */
.feat-card-tag {
  margin-left: auto;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  padding: 1px 7px;
}

@media (prefers-reduced-motion: reduce) {
  .kpi { transition: none; }
  .kpi:hover { transform: none; }
}

.analytics-stats {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 8px;
      margin-top: 4px;
    }
.stat-box {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 10px 12px;
    }
.stat-box .sb-val { font-size: 17px; font-weight: 600; letter-spacing: -.02em; }
.stat-box .sb-label { font-size: 11px; color: var(--muted2); margin-top: 2px; }
.sb-up { color: var(--green); }
.integrations {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }
.int-node {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 10px;
      text-align: center;
      font-size: 14px;
      color: var(--muted2);
    }
.int-node .in-icon {
      font-size: 23px;
      margin-bottom: 5px;
      display: block;
    }
.int-node.highlighted {
      border-color: rgba(26, 77, 74,.4);
      background: rgba(26, 77, 74,.08);
      color: var(--accent2);
    }
.int-center {
      grid-column: 2;
      background: rgba(26, 77, 74,.15);
      border-color: rgba(26, 77, 74,.4);
      color: var(--text);
      font-weight: 500;
    }
.int-center .in-icon { font-size: 22px; }
.cta-section {
      border-top: 1px solid var(--border);
      text-align: center;
      padding: 96px 16px;
    }
.cta-section h2 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 600;
      letter-spacing: -.025em;
      margin-bottom: 16px;
      color: var(--text-1);
}
.cta-section p {
      font-size: 19px;
      color: var(--muted);
      margin-bottom: 36px;
    }
.stat-label { font-size: 15px; color: var(--muted); margin-top: 3px; }
.section-label {
      font-size: 15px;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--muted2);
      text-align: center;
      margin-bottom: 48px;
    }
.solutions-grid {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 16px 32px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
.sol-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 12px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      transition: border-color .2s, transform .2s;
    }
.sol-card:hover { border-color: var(--muted2); transform: translateY(-2px); }
.sol-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      margin-bottom: 16px; flex-shrink: 0;
    }
.sol-card h3 {
      font-size: 19px; font-weight: 600;
      letter-spacing: -.015em; margin-bottom: 8px;
    }
.sol-card p {
      font-size: 16px; color: var(--muted);
      line-height: 1.65; flex: 1; margin-bottom: 20px;
    }
.sol-features { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; }
.sol-feature {
      display: flex; align-items: center; gap: 8px;
      font-size: 15px; color: var(--muted2);
    }
.sol-feature::before {
      content: '';
      width: 4px; height: 4px;
      background: var(--purple);
      border-radius: 50%; flex-shrink: 0;
    }
.sol-link {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 16px; color: var(--brand); font-weight: 500;
      transition: gap .15s;
    }
.sol-link:hover { gap: 9px; }
.featured-section {
      max-width: 1080px;
      margin: 64px auto;
      padding: 0 16px;
    }
.featured-card {
      background: var(--brand-soft);
      border: 1px solid rgba(107, 142, 107,.25);
      border-radius: 16px;
      padding: 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
.featured-text h2 {
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 600; letter-spacing: -.025em;
      line-height: 1.25; margin-bottom: 14px;
    }
.featured-text p {
      font-size: 17px; color: var(--muted);
      line-height: 1.7; margin-bottom: 24px;
    }
.chat-visual {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 12px;
      overflow: hidden;
    }
.cv-header {
      padding: 12px 14px;
      border-bottom: 1px solid var(--border);
      font-size: 14px; color: var(--muted2);
      display: flex; align-items: center; gap: 8px;
    }
.cv-dots { display: flex; gap: 5px; }
.cv-dot { width: 8px; height: 8px; border-radius: 50%; }
.cv-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.cv-msg {
      max-width: 82%; padding: 9px 13px;
      border-radius: 10px; font-size: 15.5px; line-height: 1.5;
    }
.cv-msg.ai {
      background: var(--card); border: 1px solid var(--border);
      color: var(--muted); border-bottom-left-radius: 3px; align-self: flex-start;
    }
.cv-msg.user {
      background: var(--accent);
      color: #fff; border-bottom-right-radius: 3px; align-self: flex-end;
    }
.cv-label { font-size: 13px; color: var(--muted2); padding: 0 2px; }
.cv-label.right { text-align: right; align-self: flex-end; }
.cv-input {
      display: flex; gap: 8px; align-items: center;
      background: var(--card); border: 1px solid var(--border2);
      border-radius: 8px; padding: 8px 12px; margin-top: 4px;
    }
.cv-input span { font-size: 15px; color: var(--muted2); flex: 1; }
.cv-send {
      width: 24px; height: 24px;
      background: var(--accent);
      border-radius: 5px; display: flex;
      align-items: center; justify-content: center;
      font-size: 14px; color: #fff;
    }
.compare-section {
      max-width: 860px;
      margin: 80px auto;
      padding: 0 16px;
    }
.compare-section h2 {
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 600; letter-spacing: -.025em;
      text-align: center; margin-bottom: 8px;
    }
.compare-section > p {
      font-size: 17px; color: var(--muted);
      text-align: center; margin-bottom: 40px;
    }
.compare-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 12px;
      overflow: hidden;
    }
.compare-table th {
      padding: 14px 20px;
      font-size: 15px; font-weight: 500;
      text-align: left; border-bottom: 1px solid var(--border);
      color: var(--muted2);
    }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td {
      padding: 12px 20px;
      font-size: 16px; color: var(--muted);
      border-bottom: 1px solid var(--border);
    }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table .highlight { color: var(--text); font-weight: 500; }
.yes { color: var(--green); font-size: 19px; }
.no  { color: var(--muted2); font-size: 19px; }
.col-header {
      font-size: 16px !important;
      font-weight: 600 !important;
      color: var(--text) !important;
    }
.col-header.ai-col { color: var(--brand) !important; }
.how-section {
      max-width: 900px;
      margin: 80px auto;
      padding: 0 16px;
      text-align: center;
    }
.how-section h2 {
      font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 600; letter-spacing: -.025em; margin-bottom: 12px;
    }
.how-section > p { font-size: 18px; color: var(--muted); margin-bottom: 56px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 15.5px; color: var(--muted); line-height: 1.6; }
.cta-section {
      border-top: 1px solid var(--border);
      text-align: center; padding: 80px 16px;
    }
.cta-section h2 {
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 600; letter-spacing: -.025em; margin-bottom: 14px;
      color: var(--text-1);
}
.cta-section p { font-size: 18px; color: var(--muted); margin-bottom: 32px; }
.page-footer a { color: var(--muted2); transition: color .15s; }
.page-footer a:hover { color: var(--text); }
.faq-section { max-width: 800px; margin: 0 auto; padding: 80px 16px; }
.faq-section .section-title { font-size: clamp(1.6rem,3vw,2rem); font-weight: 600; margin-bottom: 40px; }
.faq-grid { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-item + .faq-item { margin-top: 4px; }
.faq-item summary { padding: 18px 22px; font-size: 18px; font-weight: 500; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 21px; color: var(--muted); flex-shrink: 0; margin-left: 16px; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 22px 18px; font-size: 17px; color: var(--muted); line-height: 1.7; }
.faq-item p a { color: var(--accent); }
@media (max-width: 900px) {
      .nav-links { display: none; }
      .solutions-grid { grid-template-columns: 1fr 1fr; }
      .featured-card { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
      .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
      .compare-table th, .compare-table td { padding: 10px 12px; font-size: 15px; }
    }
@media (max-width: 540px) {
      .solutions-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .stats-row { gap: 28px; }
      .page-hero { padding: 56px 16px 48px; }
    }
@media (max-width:420px) { .cb-window { right:12px; left:12px; width:auto; bottom:88px; } .cb-toggle { right:16px; bottom:20px; } }
.sol-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 12px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      transition: border-color .2s, transform .2s;
      cursor: default;
    }
.sol-feature::before {
      content: '';
      width: 4px; height: 4px;
      background: var(--accent);
      border-radius: 50%;
      flex-shrink: 0;
    }
.sol-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 16px;
      color: var(--accent2);
      font-weight: 500;
      transition: gap .15s;
    }
.featured-card {
      background: var(--brand-soft);
      border: 1px solid rgba(26, 77, 74,.3);
      border-radius: 16px;
      padding: 48px 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
.featured-visual {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 10px;
      overflow: hidden;
    }
.fv-header {
      padding: 12px 14px;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
      color: var(--muted2);
      display: flex;
      align-items: center;
      gap: 8px;
    }
.fv-dots { display: flex; gap: 5px; }
.fv-dot { width: 8px; height: 8px; border-radius: 50%; }
.fv-body { padding: 16px; }
.fv-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 10px;
      border-radius: 6px;
      margin-bottom: 4px;
    }
.fv-row:hover { background: var(--card); }
.fv-icon {
      width: 28px; height: 28px;
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
    }
.fv-label { font-size: 15px; color: var(--muted); flex: 1; }
.fv-badge {
      font-size: 13px; padding: 2px 7px;
      border-radius: 4px; font-weight: 500;
    }
.badge-green { background: rgba(74, 124, 89,.2); color: var(--green); }
.badge-blue  { background: rgba(26, 77, 74,.2); color: var(--accent2); }
.badge-grey  { background: var(--border); color: var(--muted2); }
.steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
    }
@media (max-width: 900px) {
      .nav-links { display: none; }
      .solutions-grid { grid-template-columns: 1fr 1fr; }
      .featured-card { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
      .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

/* ── cases.html ── */
.page-hero {
      max-width: 800px;
      margin: 0 auto;
      padding: 88px 16px 56px;
      text-align: center;
    }
.page-hero h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 600;
      letter-spacing: -.03em;
      line-height: 1.15;
      margin-bottom: 18px;
    }
.page-hero p {
      font-size: 19px;
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }
.stats-row {
      display: flex;
      justify-content: center;
      gap: 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 0 16px;
    }
.stat {
      flex: 1;
      max-width: 200px;
      padding: 28px 24px;
      text-align: center;
      border-right: 1px solid var(--border);
    }
.stat:last-child { border-right: none; }
.stat-val { font-size: 26px; font-weight: 600; letter-spacing: -.02em; color: var(--text); }
.stat-label { font-size: 15px; color: var(--muted); margin-top: 4px; }
.filter-bar {
      display: flex;
      justify-content: center;
      gap: 8px;
      padding: 48px 16px 32px;
      flex-wrap: wrap;
    }
.filter-btn {
      background: transparent;
      border: 1px solid var(--border2);
      color: var(--muted);
      padding: 7px 18px;
      border-radius: 20px;
      font-size: 16px;
      font-weight: 500;
      transition: all .15s;
    }
.filter-btn:hover { border-color: var(--accent); color: var(--text); }
.filter-btn.active {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }
.featured-section { padding: 0 16px 56px; max-width: 1140px; margin: 0 auto; }
.featured-card {
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 16px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 380px;
    }
.featured-content {
      padding: 48px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
.case-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
      margin-bottom: 20px;
      width: fit-content;
    }
.tag-auto { background: rgba(26, 77, 74,.15); color: var(--accent2); }
.tag-ai   { background: rgba(107, 142, 107,.15); color: var(--brand); }
.tag-integration { background: rgba(74, 124, 89,.15); color: var(--green); }
.tag-featured { background: rgba(244, 184, 96,.12); color: var(--yellow); }
.featured-content h2 {
      font-size: clamp(1.4rem, 2.5vw, 1.9rem);
      font-weight: 600;
      letter-spacing: -.02em;
      line-height: 1.25;
      margin-bottom: 16px;
    }
.featured-content .case-desc {
      font-size: 17px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 32px;
    }
.case-metrics {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
    }
.metric { display: flex; flex-direction: column; gap: 2px; }
.metric-val { font-size: 22px; font-weight: 600; letter-spacing: -.02em; color: var(--text); }
.metric-label { font-size: 14px; color: var(--muted2); text-transform: uppercase; letter-spacing: .04em; }
.metric-val.green { color: var(--green); }
.metric-val.purple { color: var(--brand); }
.metric-val.orange { color: var(--orange); }
.featured-visual {
      background: var(--surface);
      border-left: 1px solid var(--border);
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
.featured-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: none;
    }
.workflow {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
      max-width: 320px;
      position: relative;
      z-index: 1;
    }
.wf-node {
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 10px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 16px;
      font-weight: 500;
      animation: nodeIn .4s ease both;
    }
.wf-node:nth-child(1) { animation-delay: .1s; }
.wf-node:nth-child(3) { animation-delay: .2s; }
.wf-node:nth-child(5) { animation-delay: .3s; }
.wf-node:nth-child(7) { animation-delay: .4s; }
@keyframes nodeIn { from { opacity:0; transform:translateX(10px); } to { opacity:1; transform:translateX(0); } }
.wf-icon {
      width: 32px; height: 32px;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
.wf-icon.blue   { background: rgba(26, 77, 74,.2); }
.wf-icon.green  { background: rgba(74, 124, 89,.2); }
.wf-icon.purple { background: rgba(107, 142, 107,.2); }
.wf-icon.orange { background: rgba(224, 130, 46,.2); }
.wf-arrow {
      display: flex;
      align-items: center;
      padding-left: 22px;
      color: var(--muted2);
      font-size: 15px;
      gap: 6px;
    }
.wf-arrow::before { content: ''; width: 1px; height: 12px; background: var(--border2); }
.wf-node.active { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(26, 77, 74, 0.12); }
.wf-badge {
      margin-left: auto;
      font-size: 13px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 4px;
      white-space: nowrap;
    }
.badge-live { background: rgba(74, 124, 89,.15); color: var(--green); }
.badge-auto { background: rgba(26, 77, 74,.15); color: var(--accent2); }
.badge-done { background: rgba(255, 255, 255,.06); color: var(--muted); }
.cases-section { max-width: 1140px; margin: 0 auto; padding: 0 16px 80px; }
.cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
.case-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: border-color .2s, transform .2s;
      cursor: default;
    }
.case-card:hover {
      border-color: var(--border2);
      transform: translateY(-2px);
    }
.case-header { margin-bottom: 16px; }
.case-industry {
      font-size: 14px;
      color: var(--muted2);
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
.case-card h3 {
      font-size: 19px;
      font-weight: 600;
      letter-spacing: -.01em;
      line-height: 1.3;
      margin-bottom: 10px;
    }
.case-card p {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 24px;
    }
.case-results {
      display: flex;
      gap: 20px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }
.result-item { display: flex; flex-direction: column; gap: 1px; }
.result-val {
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -.02em;
    }
.result-label { font-size: 14px; color: var(--muted2); }
.case-footer {
      margin-top: auto;
      padding-top: 18px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
.case-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.case-tag-small {
      font-size: 14px;
      font-weight: 500;
      padding: 3px 9px;
      border-radius: 4px;
      letter-spacing: .02em;
    }
.testimonial-section {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 64px 16px;
    }
.testimonial-section {
      background: transparent;
      border-color: transparent;
    }
.testimonial-grid {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
.testimonial-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px;
    }
.testimonial-text {
      font-size: 17px;
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }
.testimonial-text::before { content: '"'; color: var(--accent2); font-size: 23px; font-style: normal; line-height: 0; vertical-align: -4px; margin-right: 2px; }
.testimonial-text::after  { content: '"'; color: var(--accent2); font-size: 23px; font-style: normal; line-height: 0; vertical-align: -4px; margin-left: 2px; }
.testimonial-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }
.author-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--border2);
      display: flex; align-items: center; justify-content: center;
      font-size: 17px;
      font-weight: 600;
      color: var(--accent2);
      flex-shrink: 0;
    }
.author-name { font-size: 16px; font-weight: 500; }
.author-role { font-size: 15px; color: var(--muted2); }
.cta-section {
      text-align: center;
      padding: 88px 16px;
      max-width: 640px;
      margin: 0 auto;
    }
.cta-section h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 600; letter-spacing: -.03em; margin-bottom: 16px; }
.cta-section p  { font-size: 18px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 900px) {
      .featured-card { grid-template-columns: 1fr; }
      .featured-visual { display: none; }
      .cases-grid { grid-template-columns: 1fr 1fr; }
      .testimonial-grid { grid-template-columns: 1fr; }
    }
@media (max-width: 600px) {
      .nav-links, .nav-actions a:not(.btn-nav) { display: none; }
      .cases-grid { grid-template-columns: 1fr; }
      .stats-row { flex-wrap: wrap; }
      .stat { max-width: none; border-right: none; border-bottom: 1px solid var(--border); }
      .stat:last-child { border-bottom: none; }
      .featured-content { padding: 28px; }
    }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ── markedsfoering.html ── */
.stat-val {
      font-size: 26px; font-weight: 600; letter-spacing: -.03em;
      color: var(--text-1);
}
.sol-feature::before {
      content: '';
      width: 4px; height: 4px;
      background: var(--green);
      border-radius: 50%; flex-shrink: 0;
    }
.sol-link {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 16px; color: var(--green2); font-weight: 500;
      transition: gap .15s;
    }
.featured-card {
      background: var(--mint-soft);
      border: 1px solid rgba(74, 124, 89,.25);
      border-radius: 16px;
      padding: 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
.lead-visual {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 12px;
      overflow: hidden;
    }
.lv-header {
      padding: 12px 14px;
      border-bottom: 1px solid var(--border);
      font-size: 14px; color: var(--muted2);
      display: flex; align-items: center; gap: 8px;
    }
.lv-dots { display: flex; gap: 5px; }
.lv-dot { width: 8px; height: 8px; border-radius: 50%; }
.lv-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.lv-row {
      display: flex; align-items: center; gap: 12px;
      background: var(--card); border: 1px solid var(--border);
      border-radius: 8px; padding: 10px 14px;
    }
.lv-icon {
      width: 30px; height: 30px; border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
      font-size: 17px; flex-shrink: 0;
    }
.lv-info { flex: 1; }
.lv-name { font-size: 15px; font-weight: 500; color: var(--text); }
.lv-sub { font-size: 14px; color: var(--muted2); margin-top: 1px; }
.lv-badge {
      font-size: 13px; font-weight: 600;
      padding: 2px 8px; border-radius: 20px;
    }
.badge-hot { background: rgba(74, 124, 89,.2); color: var(--green2); }
.badge-warm { background: rgba(224, 130, 46,.2); color: var(--gold); }
.badge-cold { background: rgba(107, 142, 107,.15); color: var(--brand); }
.lv-score { font-size: 14px; color: var(--muted2); text-align: right; }
.lv-score span { display: block; font-size: 17px; font-weight: 600; color: var(--green); }
.col-header.green-col { color: var(--green2) !important; }

/* ── om-os.html ── */
.hero {
      text-align: center;
      padding: 80px 16px 64px;
      max-width: 680px;
      margin: 0 auto;
    }
.eyebrow {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(26, 77, 74,.1); border: 1px solid rgba(26, 77, 74,.25);
      border-radius: 20px; padding: 4px 12px;
      font-size: 15px; color: var(--accent2); margin-bottom: 24px;
    }
.hero p {
      font-size: 19px; color: var(--muted); line-height: 1.7;
    }
.photo-section {
      max-width: 900px;
      margin: 0 auto 80px;
      padding: 0 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
.photo-duo {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 10px;
    }
.duo-img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      object-position: center 30%;
      border-radius: 10px;
      display: block;
    }
.duo-img:first-child {
      object-position: center 52%;
    }
@media (max-width: 600px) {
      .photo-duo { grid-template-columns: 1fr 1fr; }
      .duo-img { height: 200px; }
    }
.story-section {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 16px 80px;
    }
.story-block {
      display: grid;
      grid-template-columns: 2px 1fr;
      gap: 0 32px;
      margin-bottom: 64px;
    }
.story-line {
      background: var(--accent);
      border-radius: 2px;
      position: relative;
    }
.story-line::before {
      content: '';
      position: absolute;
      top: 4px; left: 50%;
      transform: translateX(-50%);
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 3px var(--bg);
    }
.story-content { padding-top: 0; }
.story-year {
      font-size: 14px; letter-spacing: .07em;
      text-transform: uppercase; color: var(--accent2);
      margin-bottom: 10px;
    }
.story-content h2 {
      font-size: 22px; font-weight: 600;
      letter-spacing: -.02em; line-height: 1.25;
      margin-bottom: 14px;
    }
.story-content p {
      font-size: 17px; color: var(--muted);
      line-height: 1.8; margin-bottom: 12px;
    }
.story-content p:last-child { margin-bottom: 0; }
.team-section {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 16px 80px;
    }
.team-label {
      font-size: 15px; letter-spacing: .07em;
      text-transform: uppercase; color: var(--muted2);
      text-align: center; margin-bottom: 40px;
    }
.team-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
.team-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: border-color .2s;
    }
.team-card:hover { border-color: var(--muted2); }
.team-avatar {
      width: 100%;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      flex-shrink: 0;
    }
.team-avatar img {
      width: 100%; height: 100%; object-fit: cover; object-position: center 0%;
    }
.team-avatar img#lasse-img {
      transform: scale(1.5);
      transform-origin: center 50%;
    }
.team-avatar img#jacob-img {
      transform: scale(1.12);
      transform-origin: center 50%;
    }
.team-info {
      padding: 24px 28px;
    }
.team-name {
      font-size: 19px; font-weight: 600;
      letter-spacing: -.015em; margin-bottom: 3px;
    }
.team-role {
      font-size: 15px; color: var(--accent2);
      margin-bottom: 12px; font-weight: 500;
    }
.team-bio {
      font-size: 16px; color: var(--muted); line-height: 1.65;
    }
.values-section {
      border-top: 1px solid var(--border);
      max-width: 900px;
      margin: 0 auto;
      padding: 72px 16px 80px;
    }
.values-label {
      font-size: 15px; letter-spacing: .07em;
      text-transform: uppercase; color: var(--muted2);
      text-align: center; margin-bottom: 48px;
    }
.values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
.value-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 10px;
      padding: 24px 20px;
    }
.value-icon {
      font-size: 24px; margin-bottom: 12px; display: block;
    }
.value-card h4 {
      font-size: 17px; font-weight: 600;
      margin-bottom: 7px; letter-spacing: -.01em;
    }
.value-card p {
      font-size: 15.5px; color: var(--muted); line-height: 1.65;
    }
.cta-section h2 {
      font-size: clamp(24px, 4vw, 38px);
      font-weight: 600; letter-spacing: -.025em; margin-bottom: 14px;
      color: var(--text-1);
}
@media (max-width: 720px) {
      .nav-links { display: none; }
      .team-grid { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .team-card { flex-direction: column; }
      .story-block { grid-template-columns: 1fr; }
      .story-line { display: none; }
    }
@media (max-width: 480px) {
      .hero { padding: 56px 16px 48px; }
      .photo-section, .story-section, .team-section, .values-section { padding-left: 16px; padding-right: 16px; }
      .values-grid { grid-template-columns: 1fr; }
    }

/* ── planer.html ── */
.plans-hero {
      text-align: center;
      padding: 72px 16px 56px;
    }
.plans-hero h1 {
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 600;
      letter-spacing: -.03em;
      line-height: 1.15;
      margin-bottom: 16px;
      color: var(--text-1);
}
.plans-hero p {
      font-size: 19px;
      color: var(--muted);
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.65;
    }
.plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 1020px;
      margin: 0 auto;
      padding: 0 16px 96px;
    }
.plan-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 14px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: border-color .2s;
    }
.plan-card:hover { border-color: var(--muted2); }
.plan-card.popular {
      border-color: var(--accent);
      background: var(--surface);
    }
.popular-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      padding: 3px 14px;
      border-radius: 20px;
      white-space: nowrap;
    }
.plan-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 23px;
      margin-bottom: 18px;
    }
.icon-blue   { background: rgba(26, 77, 74,.15); }
.icon-purple { background: rgba(107, 142, 107,.15); }
.icon-green  { background: rgba(74, 124, 89,.15); }
.plan-name {
      font-size: 21px;
      font-weight: 600;
      letter-spacing: -.02em;
      margin-bottom: 6px;
    }
.plan-tagline {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 24px;
      line-height: 1.5;
    }
.plan-price {
      margin-bottom: 8px;
    }
.plan-price .amount {
      font-size: 36px;
      font-weight: 600;
      letter-spacing: -.03em;
    }
.plan-price .period {
      font-size: 16px;
      color: var(--muted);
      margin-left: 4px;
    }
.plan-price-note {
      font-size: 15px;
      color: var(--muted2);
      margin-bottom: 28px;
    }
.plan-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin-bottom: 24px;
    }
.plan-features {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }
.plan-feature {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 16px;
      color: var(--muted);
      line-height: 1.45;
    }
.check {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      flex-shrink: 0;
      margin-top: 1px;
    }
.check-blue   { background: rgba(26, 77, 74,.2);  color: var(--accent2); }
.check-purple { background: rgba(107, 142, 107,.2);  color: var(--brand); }
.check-green  { background: rgba(74, 124, 89,.2);  color: var(--green); }
.plan-cta {
      width: 100%;
      padding: 11px 20px;
      border-radius: 8px;
      font-size: 17px;
      font-weight: 500;
      border: none;
      transition: background .15s, opacity .15s;
      text-align: center;
      display: block;
    }
.cta-outline {
      background: none;
      border: 1px solid var(--border2);
      color: var(--text);
    }
.cta-outline:hover { border-color: var(--muted2); background: var(--card); }
.cta-filled {
      background: var(--gold);
      color: var(--gold-fg);
      font-weight: 600;
    }
.cta-filled:hover { background: var(--gold-hover); opacity: 1; }
.plans-note {
      text-align: center;
      padding: 0 16px 64px;
      color: var(--muted2);
      font-size: 16px;
    }
.plans-note a { color: var(--accent2); }
.plans-note a:hover { text-decoration: underline; }
.faq-section { max-width: 800px; margin: 0 auto; padding: 40px 16px 80px; }
.faq-title { font-size: clamp(1.4rem,2.5vw,1.8rem); font-weight: 600; margin-bottom: 32px; }
.faq-grid { display: flex; flex-direction: column; gap: 4px; }
@media (max-width: 860px) {
      .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
      .plan-card.popular { margin-top: 12px; }
    }
@media (max-width: 480px) {
      .plans-hero { padding: 48px 16px 40px; }
      .plans-grid { padding: 0 16px 64px; }
    }

/* ── privatlivspolitik.html ── */
a:hover { text-decoration: underline; }
.page-wrap {
      max-width: 760px; margin: 0 auto;
      padding: 64px 16px 96px;
    }
.page-label {
      font-size: 15px; font-weight: 600; letter-spacing: .08em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
    }
h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; margin-bottom: 8px; }
.last-updated { font-size: 16px; color: var(--muted); margin-bottom: 48px; }
h2 { font-size: 1.15rem; font-weight: 600; margin: 40px 0 12px; color: var(--text); }
p { color: var(--border-2); margin-bottom: 16px; }
.page-wrap p,
    .page-wrap ul { color: var(--muted); }
.highlight-box p { color: var(--text); }
ul li { margin-bottom: 6px; }
.highlight-box {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 8px; padding: 20px 24px; margin: 24px 0;
    }
.highlight-box p { margin-bottom: 0; }
footer a { color: var(--muted); }
footer a:hover { color: var(--text); }

/* ── spørgeskema.html ── */
input, textarea { font: inherit; }
.page-wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 16px 56px;
    }
.site-header {
      width: 100%;
      max-width: 640px;
      display: flex;
      justify-content: center;
      padding: 12px 0 4px;
      margin-bottom: 4px;
    }
.site-header a { display: flex; align-items: center; }
.site-logo { height: 68px; width: auto; }
.progress-wrap {
      width: 100%;
      max-width: 580px;
      margin-bottom: 28px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
.progress-wrap.show { opacity: 1; }
.progress-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }
.progress-label { font-size: 13px; color: var(--muted); }
.progress-pct   { font-size: 13px; color: var(--accent2); font-weight: 500; }
.progress-track {
      height: 3px;
      background: var(--border);
      border-radius: 99px;
      overflow: hidden;
    }
.progress-bar {
      height: 100%;
      background: var(--accent);
      border-radius: 99px;
      width: 0%;
      transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
    }
.step-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 12px;
    }
.dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--border2);
      transition: background 0.25s, transform 0.25s;
    }
.dot.active  { background: var(--accent); transform: scale(1.5); }
.dot.done    { background: var(--green); }
.stage {
      width: 100%;
      max-width: 580px;
    }
.stage.out-forward  { animation: stageOutFwd  0.18s ease forwards; }
.stage.out-back     { animation: stageOutBck  0.18s ease forwards; }
.stage.in-forward   { animation: stageInFwd   0.28s cubic-bezier(0.4,0,0.2,1) forwards; }
.stage.in-back      { animation: stageInBck   0.28s cubic-bezier(0.4,0,0.2,1) forwards; }
@keyframes stageOutFwd { to   { opacity:0; transform:translateX(-18px); } }
@keyframes stageOutBck { to   { opacity:0; transform:translateX(18px);  } }
@keyframes stageInFwd  { from { opacity:0; transform:translateX(18px);  } to { opacity:1; transform:translateX(0); } }
@keyframes stageInBck  { from { opacity:0; transform:translateX(-18px); } to { opacity:1; transform:translateX(0); } }
.step { display: none; flex-direction: column; }
.step.active { display: flex; }
.welcome-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 20px;
      padding: 52px 40px;
      text-align: center;
    }
.welcome-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(26, 77, 74,.1);
      border: 1px solid rgba(26, 77, 74,.25);
      border-radius: 99px;
      padding: 5px 14px;
      font-size: 13px;
      color: var(--accent2);
      margin-bottom: 24px;
      letter-spacing: 0.03em;
    }
.welcome-card h1 {
      font-family: var(--font-display);
      font-size: clamp(24px, 5vw, 34px);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.18;
      margin-bottom: 16px;
      color: var(--text-1);
}
.welcome-card p {
      font-size: 16px;
      color: var(--muted);
      max-width: 380px;
      margin: 0 auto 32px;
      line-height: 1.7;
    }
.trust-pills {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 36px;
    }
.trust-pill {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 13px;
      color: var(--muted2);
    }
.trust-pill::before {
      content: '✓';
      width: 16px; height: 16px;
      border-radius: 50%;
      background: rgba(74, 124, 89,.1);
      color: var(--green);
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; flex-shrink: 0;
    }
.q-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 20px;
      padding: 38px 34px;
    }
.q-eyebrow {
      font-size: 11.5px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent2);
      margin-bottom: 10px;
      font-weight: 600;
    }
.q-title {
      font-family: var(--font-display);
      font-size: clamp(19px, 3.5vw, 25px);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.25;
      margin-bottom: 26px;
      color: var(--text);
    }
.options { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.opt {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 15px 18px;
      background: var(--option);
      border: 1.5px solid var(--border);
      border-radius: 11px;
      cursor: pointer;
      transition: border-color 0.16s, background 0.16s, box-shadow 0.16s, transform 0.16s;
      text-align: left;
      width: 100%;
      color: var(--text);
      position: relative;
    }
.opt:hover {
      border-color: var(--border2);
      background: rgba(241, 238, 232,.88);
      transform: translateY(-1px);
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    }
.opt.sel {
      border-color: var(--accent);
      background: rgba(26, 77, 74,.09);
      box-shadow: 0 0 0 1px rgba(26, 77, 74, 0.12), 0 4px 20px rgba(26, 77, 74, 0.12);
    }
.opt-num {
      width: 27px; height: 27px;
      border-radius: 7px;
      background: var(--border);
      border: 1px solid var(--border2);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700;
      color: var(--muted);
      flex-shrink: 0;
      transition: background 0.16s, border-color 0.16s, color 0.16s;
      font-family: var(--font-display);
    }
.opt.sel .opt-num { background: var(--accent); border-color: var(--accent); color: #fff; }
.opt-text { font-size: 15px; font-weight: 500; flex: 1; }
.opt-check {
      width: 19px; height: 19px;
      border-radius: 50%;
      border: 1.5px solid var(--border2);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.16s;
      opacity: 0;
    }
.opt.sel .opt-check { background: var(--accent); border-color: var(--accent); opacity: 1; }
.opt-check::after {
      content: '';
      width: 4px; height: 8px;
      border-right: 2px solid #fff;
      border-bottom: 2px solid #fff;
      transform: rotate(45deg) translateY(-1px);
    }
.ta-wrap { margin-bottom: 26px; }
.ta {
      width: 100%;
      min-height: 110px;
      background: var(--option);
      border: 1.5px solid var(--border);
      border-radius: 11px;
      color: var(--text);
      font-size: 15px;
      padding: 14px 18px;
      resize: vertical;
      outline: none;
      transition: border-color 0.16s, box-shadow 0.16s;
      line-height: 1.6;
    }
.ta::placeholder { color: var(--muted2); }
.ta:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26, 77, 74, 0.13); }
.ta-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 7px;
    }
.ta-hint { font-size: 12px; color: var(--muted2); }
.ta-count { font-size: 12px; color: var(--muted2); transition: color 0.16s; }
.ta-count.ok { color: var(--green); }
.field-err { font-size: 13px; color: var(--error); margin-top: 6px; display: none; }
.field-err.show { display: block; }
.btn-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }
.btn-back {
      display: flex; align-items: center; gap: 5px;
      padding: 0 16px;
      height: 46px;
      border-radius: 9px;
      border: 1.5px solid var(--border2);
      background: transparent;
      color: var(--muted);
      font-size: 14px;
      font-weight: 500;
      transition: border-color 0.16s, color 0.16s, background 0.16s;
      flex-shrink: 0;
    }
.btn-back:hover { border-color: var(--border); color: var(--text); background: rgba(255, 255, 255,.03); }
.btn-next, .btn-start {
      flex: 1;
      height: 50px;
      border-radius: 10px;
      background: var(--accent);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      font-family: var(--font-sans);
      letter-spacing: -0.01em;
      transition: background 0.16s, transform 0.16s, box-shadow 0.16s;
      border: none;
      display: flex; align-items: center; justify-content: center; gap: 7px;
    }
.btn-next:hover, .btn-start:hover {
      background: var(--accent2);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(26, 77, 74, 0.12);
    }
.btn-next:active, .btn-start:active { transform: translateY(0); }
.btn-next:disabled {
      opacity: 0.38;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }
.btn-start {
      max-width: 260px;
      height: 54px;
      font-size: 16px;
      margin: 0 auto;
    }
.btn-start:hover { box-shadow: 0 8px 28px rgba(26, 77, 74, 0.12); }
.kbd-hint {
      text-align: center;
      font-size: 11.5px;
      color: var(--muted2);
      margin-top: 14px;
    }
.kbd {
      display: inline-block;
      padding: 1px 5px;
      background: var(--border);
      border: 1px solid var(--border2);
      border-radius: 4px;
      font-size: 10.5px;
      font-family: monospace;
    }
.result-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 20px;
      padding: 42px 36px;
      text-align: center;
    }
.result-icon {
      width: 68px; height: 68px;
      border-radius: 50%;
      margin: 0 auto 22px;
      display: flex; align-items: center; justify-content: center;
      font-size: 30px;
    }
.result-icon.q  { background: rgba(74, 124, 89,.1);  border: 1px solid rgba(74, 124, 89,.22); }
.result-icon.nq { background: rgba(107, 142, 107,.1);  border: 1px solid rgba(107, 142, 107,.22); }
.result-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 4px 12px;
      border-radius: 99px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
.result-badge.q  { background: rgba(74, 124, 89,.1);  border: 1px solid rgba(74, 124, 89,.22); color: var(--green);  }
.result-badge.nq { background: rgba(107, 142, 107,.1);  border: 1px solid rgba(107, 142, 107,.22); color: var(--purple); }
.score-line {
      font-size: 13px; color: var(--muted2); margin-bottom: 18px;
    }
.score-line strong { color: var(--accent2); }
.result-title {
      font-family: var(--font-display);
      font-size: clamp(20px, 4vw, 28px);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.22;
      margin-bottom: 14px;
      color: var(--text-1);
}
.result-text {
      font-size: 16px;
      color: var(--muted);
      max-width: 440px;
      margin: 0 auto 30px;
      line-height: 1.7;
    }
.cal-wrap {
      margin-top: 26px;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border2);
      min-height: 580px;
      background: rgba(250, 248, 245,.5);
      text-align: left;
    }
#cal-inline { width: 100%; min-height: 580px; }
.divider {
      display: flex; align-items: center; gap: 12px;
      margin: 26px 0 20px;
      color: var(--muted2); font-size: 13px;
    }
.divider::before, .divider::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }
.nl-form { display: flex; gap: 9px; max-width: 380px; margin: 0 auto; }
.nl-input {
      flex: 1; height: 46px;
      background: var(--option);
      border: 1.5px solid var(--border);
      border-radius: 9px;
      color: var(--text);
      font-size: 14px;
      padding: 0 14px;
      outline: none;
      transition: border-color 0.16s, box-shadow 0.16s;
    }
.nl-input::placeholder { color: var(--muted2); }
.nl-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26, 77, 74, 0.12); }
.btn-nl {
      height: 46px; padding: 0 18px;
      background: var(--accent);
      color: #fff; border: none;
      border-radius: 9px;
      font-size: 14px; font-weight: 600;
      cursor: pointer;
      transition: background 0.16s;
      white-space: nowrap;
    }
.btn-nl:hover { background: var(--accent2); }
.nl-ok { display: none; font-size: 14px; color: var(--green); margin-top: 12px; }
@media (max-width: 580px) {
      .welcome-card, .q-card, .result-card, .contact-card { padding: 26px 18px; border-radius: 14px; }
      .btn-row { flex-direction: column-reverse; }
      .btn-back { width: 100%; justify-content: center; }
      .nl-form { flex-direction: column; }
      .btn-nl { width: 100%; }
    }
.contact-card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 20px;
      padding: 34px 34px;
      margin-top: 14px;
    }
.contact-card h3 {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 6px;
      color: var(--text);
    }
.contact-card > p {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 22px;
      line-height: 1.6;
    }
.cf-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 10px;
    }
.cf-grid .cf-full { grid-column: 1 / -1; }
.cf-field {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
.cf-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
.cf-input, .cf-textarea {
      background: var(--option);
      border: 1.5px solid var(--border);
      border-radius: 9px;
      color: var(--text);
      font-size: 14px;
      padding: 11px 14px;
      outline: none;
      transition: border-color 0.16s, box-shadow 0.16s;
      width: 100%;
    }
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--muted2); }
.cf-input:focus, .cf-textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(26, 77, 74, 0.12);
    }
.cf-textarea { resize: vertical; min-height: 90px; line-height: 1.55; }
.btn-cf {
      width: 100%;
      height: 48px;
      margin-top: 14px;
      border-radius: 10px;
      background: var(--accent);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      font-family: var(--font-sans);
      letter-spacing: -0.01em;
      border: none;
      cursor: pointer;
      transition: background 0.16s, transform 0.16s, box-shadow 0.16s;
      display: flex; align-items: center; justify-content: center; gap: 7px;
    }
.btn-cf:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26, 77, 74, 0.12); }
.btn-cf:active { transform: none; }
.btn-cf:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
.cf-ok {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 14px;
      padding: 13px;
      background: rgba(74, 124, 89,.08);
      border: 1px solid rgba(74, 124, 89,.2);
      border-radius: 10px;
      font-size: 14px;
      color: var(--green);
      font-weight: 500;
    }
@media (max-width: 480px) {
      .cf-grid { grid-template-columns: 1fr; }
    }
.andet-wrap {
      display: none;
      margin-top: 10px;
    }
.andet-wrap.show { display: block; }
.andet-wrap .ta { min-height: 80px; }

/* ── blog/index.html ── */
.blog-section { max-width: 1140px; margin: 0 auto; padding: 0 16px 80px; }
.blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
.blog-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: border-color .2s, transform .2s;
    }
.blog-card:hover {
      border-color: var(--border2);
      transform: translateY(-2px);
    }
.case-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
      margin-bottom: 16px;
      width: fit-content;
    }
.tag-guides      { background: rgba(74, 124, 89,.15); color: var(--green); }
.tag-marketing   { background: rgba(224, 130, 46,.15); color: var(--orange); }
.blog-card h3 {
      font-size: 19px;
      font-weight: 600;
      letter-spacing: -.01em;
      line-height: 1.3;
      margin-bottom: 10px;
    }
.blog-excerpt {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.65;
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
.blog-footer {
      margin-top: auto;
      padding-top: 18px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      flex-wrap: wrap;
    }
.blog-meta {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
.blog-date {
      font-size: 14px;
      color: var(--muted2);
      letter-spacing: .02em;
    }
.blog-read-time {
      font-size: 14px;
      color: var(--muted2);
    }
.blog-link {
      font-size: 16px;
      color: var(--accent2);
      font-weight: 500;
      white-space: nowrap;
      transition: color .15s;
    }
.blog-link:hover { color: var(--text); }
@media (max-width: 900px) {
      .blog-grid { grid-template-columns: 1fr 1fr; }
    }
@media (max-width: 600px) {
      .nav-links, .nav-actions a:not(.btn-nav) { display: none; }
      .blog-grid { grid-template-columns: 1fr; }
    }

/* ── blog/5-processer-du-kan-automatisere.html ── */
.mobile-nav { background: var(--bg-surface); }
html,body{font-family:'Inter',-apple-system,sans-serif;font-size:16px;color:var(--text);background:var(--bg);line-height:1.5;-webkit-font-smoothing:antialiased;}
.logo-mark{height:46px;width:auto;object-fit:contain;display:block;}
.nav-links>li{position:relative;}
.arrow{font-size:9px;}
.nav-links>li:hover .dropdown{opacity:1;pointer-events:auto;}
@media(max-width:900px){.nav-burger{display:flex;}.nav-links{display:none;}}
.article-hero{max-width:760px;margin:0 auto;padding:56px 32px 40px;}
.article-hero h1{font-size:clamp(1.6rem,3.5vw,2.4rem);font-weight:600;letter-spacing:-.03em;line-height:1.2;margin-bottom:20px;}
.article-meta{display:flex;align-items:center;gap:16px;flex-wrap:wrap;}
.article-author{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--muted);}
.author-avatar{width:28px;height:28px;border-radius:50%;object-fit:cover;object-position:center top;}
.article-date,.article-read-time{font-size:13px;color:var(--muted2);}
.article-divider{border:none;border-top:1px solid var(--border);margin:0;}
.article-body{max-width:760px;margin:0 auto;padding:40px 32px 80px;}
.article-body h2{font-size:1.3rem;font-weight:600;letter-spacing:-.02em;margin:48px 0 16px;line-height:1.3;}
.article-body h3{font-size:1.05rem;font-weight:600;margin:32px 0 12px;}
.article-body p{color:var(--muted);line-height:1.8;margin-bottom:20px;}
.article-body ul,.article-body ol{color:var(--muted);line-height:1.8;margin-bottom:20px;padding-left:20px;}
.article-body ul{list-style:disc;}
.article-body ol{list-style:decimal;}
.article-body li{margin-bottom:8px;}
.article-body strong{color:var(--text);font-weight:600;}
.takeaway{background:var(--surface);border:1px solid var(--border2);border-left:3px solid var(--accent);border-radius:10px;padding:24px 28px;margin:40px 0;}
.takeaway-label{font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--accent2);margin-bottom:10px;}
.takeaway p{color:var(--muted);margin-bottom:0;line-height:1.7;}
.process-card{background:var(--surface);border:1px solid var(--border2);border-radius:10px;padding:24px 28px;margin:24px 0;}
.process-num{font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--accent2);margin-bottom:8px;}
.process-card h3{font-size:1.05rem;font-weight:600;margin-bottom:10px;margin-top:0;}
.process-card p{color:var(--muted);margin-bottom:0;line-height:1.7;}
.article-cta{background:var(--surface);border:1px solid var(--border2);border-radius:14px;padding:40px;text-align:center;margin-top:60px;}
.article-cta h3{font-size:1.2rem;font-weight:600;margin-bottom:12px;}
.article-cta p{color:var(--muted);margin-bottom:24px;max-width:440px;margin-left:auto;margin-right:auto;}
.page-footer a{color:var(--muted2);transition:color .15s;}
.page-footer a:hover{color:var(--text);}
@media(max-width:600px){.article-hero,.article-body{padding-left:20px;padding-right:20px;}}
.page-footer,
    .page-footer a { color: var(--text-2); }

/* ── blog/ai-chatbot-vs-faq.html ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
.mobile-nav{background: var(--bg-surface);}
.article-body ul{color:var(--muted);line-height:1.8;margin-bottom:20px;padding-left:20px;list-style:disc;}
.compare-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:24px 0 32px;}
.compare-card{background:var(--surface);border:1px solid var(--border2);border-radius:10px;padding:20px 24px;}
.compare-card h3{font-size:14px;font-weight:600;margin-bottom:12px;margin-top:0;}
.compare-card ul{color:var(--muted);font-size:13.5px;line-height:1.7;padding-left:16px;list-style:disc;margin-bottom:0;}
.compare-card li{margin-bottom:6px;}
@media(max-width:540px){.compare-grid{grid-template-columns:1fr;}}

/* ── blog/ai-leadgenerering.html ── */
.step-list{counter-reset:steps;margin:24px 0 32px;}
.step-item{display:flex;gap:20px;margin-bottom:28px;align-items:flex-start;}
.step-content h3{font-size:15px;font-weight:600;margin-bottom:6px;margin-top:0;}
.step-content p{color:var(--muted);font-size:14px;line-height:1.7;margin-bottom:0;}
.stat-row{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:28px 0;}
.stat-box{background:var(--surface);border:1px solid var(--border2);border-radius:10px;padding:20px;text-align:center;}
.stat-box .stat-num{font-size:1.8rem;font-weight:700;color:var(--accent2);display:block;line-height:1;}
.stat-box .stat-label{font-size:12px;color:var(--muted);margin-top:6px;display:block;}
@media(max-width:560px){.stat-row{grid-template-columns:1fr;}}

/* ── blog/automatisering-vs-medarbejder.html ── */
.stat-box{background:var(--surface);border:1px solid var(--border2);border-radius:10px;padding:24px 28px;margin:24px 0;display:flex;gap:32px;flex-wrap:wrap;}
.stat-item{flex:1;min-width:140px;}
.stat-number{font-size:1.6rem;font-weight:600;color:var(--text);letter-spacing:-.02em;line-height:1.1;margin-bottom:4px;}
.stat-label{font-size:12px;color:var(--muted2);}
.decision-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:32px 0;}
.decision-card{background:var(--surface);border:1px solid var(--border2);border-radius:10px;padding:24px;}
.decision-card h3{font-size:1rem;font-weight:600;margin-bottom:12px;margin-top:0;}
.decision-card ul{color:var(--muted);font-size:14px;padding-left:16px;list-style:disc;}
.decision-card li{margin-bottom:6px;}
.decision-card.ansaet{border-top:3px solid var(--green);}
.decision-card.automatiser{border-top:3px solid var(--accent);}
.decision-label{font-size:10px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;margin-bottom:8px;}
.decision-card.ansaet .decision-label{color:var(--green);}
.decision-card.automatiser .decision-label{color:var(--accent2);}
@media(max-width:580px){.decision-row{grid-template-columns:1fr;}}

/* ── blog/fakturering-automatisering.html ── */
.before-after{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:24px 0 32px;}
.ba-card{background:var(--surface);border:1px solid var(--border2);border-radius:10px;padding:20px 24px;}
.ba-card.before{border-top:3px solid var(--danger);}
.ba-card.after{border-top:3px solid var(--green);}
.ba-card h3{font-size:13px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;margin-bottom:12px;margin-top:0;}
.ba-card.before h3{color:var(--danger);}
.ba-card.after h3{color:var(--green);}
.ba-card ul{color:var(--muted);font-size:13.5px;line-height:1.7;padding-left:16px;list-style:disc;margin-bottom:0;}
.ba-card li{margin-bottom:6px;}
@media(max-width:540px){.before-after{grid-template-columns:1fr;}}
.result-banner{background:rgba(74, 124, 89,.08);border:1px solid rgba(74, 124, 89,.25);border-radius:12px;padding:28px 32px;margin:32px 0;text-align:center;}
.result-banner .result-big{font-size:2.4rem;font-weight:700;color:var(--green);display:block;line-height:1;}
.result-banner .result-label{font-size:14px;color:var(--muted);margin-top:8px;display:block;}
.flow-steps{margin:24px 0 32px;}
.flow-step{display:flex;gap:16px;align-items:flex-start;margin-bottom:20px;}
.flow-arrow{display:flex;flex-direction:column;align-items:center;gap:0;}
.flow-dot{width:10px;height:10px;border-radius:50%;background:var(--accent);flex-shrink:0;margin-top:5px;}
.flow-line{width:2px;height:36px;background:var(--border2);margin-top:4px;}
.flow-step:last-child .flow-line{display:none;}
.flow-text h3{font-size:14px;font-weight:600;margin-bottom:4px;margin-top:0;}
.flow-text p{color:var(--muted);font-size:13.5px;line-height:1.6;margin-bottom:0;}

/* ── blog/hvad-koster-ai-implementering.html ── */
.logo-mark { height:46px; width:auto; object-fit:contain; display:block; }
.arrow { font-size:9px; }
.nav-actions a { font-size:13.5px; color:var(--muted); transition:color .15s; }
@media (max-width:900px) { .nav-burger { display:flex; } .nav-links { display:none; } }
.article-hero { max-width:760px; margin:0 auto; padding:56px 32px 40px; }
.article-hero h1 { font-size:clamp(1.6rem,3.5vw,2.4rem); font-weight:600; letter-spacing:-.03em; line-height:1.2; margin-bottom:20px; }
.article-meta { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.article-author { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--muted); }
.author-avatar { width:28px; height:28px; border-radius:50%; object-fit:cover; object-position:center top; }
.article-date { font-size:13px; color:var(--muted2); }
.article-read-time { font-size:13px; color:var(--muted2); }
.article-divider { border:none; border-top:1px solid var(--border); margin:0; }
.article-body { max-width:760px; margin:0 auto; padding:40px 32px 80px; }
.article-body h2 { font-size:1.3rem; font-weight:600; letter-spacing:-.02em; margin:48px 0 16px; line-height:1.3; }
.article-body h3 { font-size:1.05rem; font-weight:600; margin:32px 0 12px; }
.article-body p { color:var(--muted); line-height:1.8; margin-bottom:20px; }
.article-body ul, .article-body ol { color:var(--muted); line-height:1.8; margin-bottom:20px; padding-left:20px; }
.article-body ul { list-style:disc; }
.article-body ol { list-style:decimal; }
.article-body li { margin-bottom:8px; }
.article-body strong { color:var(--text); font-weight:600; }
.takeaway { background:var(--surface); border:1px solid var(--border2); border-left:3px solid var(--accent); border-radius:10px; padding:24px 28px; margin:40px 0; }
.takeaway-label { font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--accent2); margin-bottom:10px; }
.takeaway p { color:var(--muted); margin-bottom:0; line-height:1.7; }
.price-table { width:100%; border-collapse:collapse; margin:24px 0 32px; font-size:14px; }
.price-table th { text-align:left; padding:10px 14px; background:var(--surface); border:1px solid var(--border); color:var(--text); font-weight:500; }
.price-table td { padding:10px 14px; border:1px solid var(--border); color:var(--muted); }
.price-table tr:hover td { background:var(--surface); }
.article-cta { background:var(--surface); border:1px solid var(--border2); border-radius:14px; padding:40px; text-align:center; margin-top:60px; }
.article-cta h3 { font-size:1.2rem; font-weight:600; margin-bottom:12px; }
.article-cta p { color:var(--muted); margin-bottom:24px; max-width:440px; margin-left:auto; margin-right:auto; }
.page-footer a { color:var(--muted2); transition:color .15s; }
.page-footer a:hover { color:var(--text); }
@media (max-width:600px) { .article-hero, .article-body { padding-left:20px; padding-right:20px; } }

/* ── blog/vaelg-automatiseringsvaerktoej.html ── */
.tool-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px;margin:24px 0 32px;}
.tool-card{background:var(--surface);border:1px solid var(--border2);border-radius:10px;padding:20px 22px;}
.tool-card h3{font-size:14px;font-weight:600;margin-bottom:4px;margin-top:0;}
.tool-card .tool-tag{font-size:11px;color:var(--accent2);margin-bottom:12px;display:block;}
.tool-card ul{color:var(--muted);font-size:13px;line-height:1.7;padding-left:16px;list-style:disc;margin-bottom:0;}
.tool-card li{margin-bottom:5px;}
@media(max-width:680px){.tool-grid{grid-template-columns:1fr;}}
.decision-table{width:100%;border-collapse:collapse;margin:24px 0 32px;font-size:13.5px;}
.decision-table th{text-align:left;padding:10px 14px;border-bottom:2px solid var(--border2);color:var(--muted2);font-weight:600;font-size:11px;letter-spacing:.06em;text-transform:uppercase;}
.decision-table td{padding:12px 14px;border-bottom:1px solid var(--border);color:var(--muted);}
.decision-table td:first-child{color:var(--text);font-weight:500;}

/* ── Beregnere/KUNDESERVICE.html ── */
.nav-logo img { height: 48px; width: auto; /* Skyggen her gav logoet en moerk glorie paa den lyse bar. */ }
.nav-logo-text {
      font-family: var(--font-sans); font-weight: 700;
      font-size: 18px; color: var(--text); text-shadow: 0 1px 6px rgba(0,0,0,0.6);
    }
.nav-back {
      position: fixed; top: 20px; right: 28px; z-index: 100;
      font-size: 14px; font-weight: 600; color: var(--text);
      display: flex; align-items: center; gap: 6px;
      padding: 8px 18px; border-radius: 9999px;
      border: 1px solid rgba(255, 255, 255,0.15);
      background: rgba(250, 248, 245,0.55);      transition: color .15s, border-color .15s, background .15s; text-decoration: none;
    }
.nav-back:hover { color: #fff; border-color: rgba(255, 255, 255,0.3); background: rgba(250, 248, 245,0.75); }
.page { max-width: 640px; margin: 0 auto; padding: 0 20px 80px; }
.hero { text-align: center; padding: 96px 0 40px; }
.logo {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-display);
      font-size: 18px; font-weight: 700; color: var(--text);
      text-decoration: none; margin-bottom: 32px;
    }
.logo-mark {
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 800;
    }
.badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(26, 77, 74,0.12); border: 1px solid rgba(26, 77, 74,0.25);
      border-radius: 100px; padding: 5px 14px;
      font-size: 12px; font-weight: 500; color: var(--accent2);
      margin-bottom: 20px; letter-spacing: 0.03em;
    }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.hero h1 span { color: var(--accent2); }
.hero p { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 420px; margin: 0 auto; }
.calc-card {
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 20px;
      padding: 28px 24px;
      margin-bottom: 16px;
    }
.calc-card h2 {
      font-family: var(--font-display);
      font-size: 13px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--muted); margin-bottom: 24px;
    }
.input-group { margin-bottom: 28px; }
.input-group:last-child { margin-bottom: 0; }
.input-label {
      display: flex; justify-content: space-between; align-items: baseline;
      margin-bottom: 10px;
    }
.input-label span:first-child { font-size: 15px; font-weight: 500; color: var(--text); }
.input-value {
      font-family: var(--font-sans);
      font-size: 18px; font-weight: 700; color: var(--accent2);
      min-width: 80px; text-align: right;
    }
input[type="range"] {
      -webkit-appearance: none;
      width: 100%; height: 6px;
      background: var(--border2);
      border-radius: 100px;
      outline: none; cursor: pointer;
    }
input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 2px 8px rgba(26, 77, 74, 0.12);
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.15s;
    }
input[type="range"]::-webkit-slider-thumb:hover {
      transform: scale(1.15);
      box-shadow: 0 4px 16px rgba(26, 77, 74, 0.12);
    }
input[type="range"]::-moz-range-thumb {
      width: 26px; height: 26px; border-radius: 50%; border: none;
      background: var(--gold);
      cursor: pointer;
    }
.slider-labels {
      display: flex; justify-content: space-between;
      margin-top: 5px; font-size: 11px; color: var(--muted2);
    }
.auto-bar-wrap {
      background: rgba(26, 77, 74,0.06);
      border: 1px solid rgba(26, 77, 74,0.15);
      border-radius: 12px; padding: 14px 16px; margin-top: 24px;
    }
.auto-bar-top {
      display: flex; justify-content: space-between;
      font-size: 13px; color: var(--muted); margin-bottom: 10px;
    }
.auto-bar-top strong { color: var(--accent2); font-weight: 600; }
.auto-bar-bg { height: 8px; background: var(--border2); border-radius: 100px; overflow: hidden; }
.auto-bar-fill {
      height: 100%;
      background: var(--accent);
      border-radius: 100px; width: 70%;
      transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
.results-section { margin-bottom: 16px; }
.results-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 10px; margin-bottom: 14px;
    }
.result-card {
      background: var(--card); border: 1px solid var(--border2);
      border-radius: 16px; padding: 18px 12px; text-align: center;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
.result-card.highlight {
      border-color: rgba(74, 124, 89,0.4);
      box-shadow: 0 0 24px rgba(74, 124, 89, 0.08);
    }
.result-period {
      font-size: 11px; font-weight: 500;
      text-transform: uppercase; letter-spacing: 0.06em;
      color: var(--muted); margin-bottom: 8px;
    }
.result-amount {
      font-family: var(--font-sans);
      font-size: clamp(16px, 4vw, 22px);
      font-weight: 800; color: var(--green); line-height: 1.1;
    }
.result-unit { font-size: 11px; color: var(--muted2); margin-top: 4px; }
.context-msg {
      border-radius: 12px; padding: 14px 16px;
      font-size: 14px; line-height: 1.55; color: var(--muted);
    }
.context-msg.green {
      background: rgba(74, 124, 89,0.07);
      border: 1px solid rgba(74, 124, 89,0.2);
    }
.context-msg.blue {
      background: rgba(26, 77, 74,0.07);
      border: 1px solid rgba(26, 77, 74,0.2);
    }
.context-msg strong { color: var(--green); }
.context-msg.blue strong { color: var(--accent2); }
.disclaimer { text-align: center; font-size: 11px; color: var(--muted2); margin-top: 10px; line-height: 1.5; }
.cta-card {
      background: var(--brand-soft);
      border: 1px solid rgba(26, 77, 74,0.25);
      border-radius: 20px; padding: 28px 24px; text-align: center;
    }
.cta-card h3 {
      font-family: var(--font-display);
      font-size: 20px; font-weight: 700; line-height: 1.3; margin-bottom: 8px;
    }
.cta-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 22px; }
.btn-primary:active { transform: translateY(0); }
.cta-alt { margin-top: 14px; font-size: 13px; color: var(--muted2); }
.cta-alt a { color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--border2); transition: color 0.2s; }
.cta-alt a:hover { color: var(--text); }
.icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.footer { text-align: center; padding-top: 32px; font-size: 12px; color: var(--muted2); }
.footer a { color: var(--muted2); text-decoration: none; }
.footer a:hover { color: var(--muted); }
@media (max-width: 400px) {
      .calc-card { padding: 22px 18px; }
      .results-grid { gap: 8px; }
      .result-card { padding: 14px 8px; }
    }

/* ── Beregnere/TILBUD.html ── */
.hero p { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 440px; margin: 0 auto; }
.fact-box {
      background: rgba(244, 184, 96,0.07);
      border: 1px solid rgba(244, 184, 96,0.25);
      border-radius: 14px; padding: 16px 18px;
      margin-bottom: 16px;
      display: flex; gap: 14px; align-items: flex-start;
    }
.fact-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: rgba(244, 184, 96,0.15); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
.fact-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fact-body { font-size: 13px; line-height: 1.55; color: var(--muted); }
.fact-body strong { color: var(--orange); font-weight: 600; }
.input-group { margin-bottom: 26px; }
.input-value {
      font-family: var(--font-sans); font-size: 18px;
      font-weight: 700; color: var(--accent2); min-width: 100px; text-align: right;
    }
.breakdown-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 10px; margin-bottom: 10px;
    }
.breakdown-card {
      background: var(--card); border: 1px solid var(--border2);
      border-radius: 14px; padding: 16px;
    }
.breakdown-card.time-card { border-color: rgba(26, 77, 74,0.3); }
.breakdown-card.lead-card { border-color: rgba(244, 184, 96,0.3); }
.breakdown-label {
      font-size: 11px; font-weight: 500; text-transform: uppercase;
      letter-spacing: 0.06em; margin-bottom: 4px;
    }
.breakdown-label.time { color: var(--accent2); }
.breakdown-label.lead { color: var(--orange); }
.breakdown-sublabel { font-size: 11px; color: var(--muted2); margin-bottom: 10px; line-height: 1.4; }
.breakdown-amount {
      font-family: var(--font-sans);
      font-size: clamp(18px, 4vw, 24px); font-weight: 800; line-height: 1;
    }
.breakdown-amount.time { color: var(--accent2); }
.breakdown-amount.lead { color: var(--orange); }
.breakdown-unit { font-size: 11px; color: var(--muted2); margin-top: 4px; }
.total-card {
      background: var(--mint-soft);
      border: 1px solid rgba(74, 124, 89,0.35);
      border-radius: 16px; padding: 20px;
      margin-bottom: 10px;
    }
.total-top {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 14px;
    }
.total-label {
      font-family: var(--font-sans); font-size: 13px;
      font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green);
    }
.total-periods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.total-period { text-align: center; }
.total-period-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted2); margin-bottom: 4px; }
.total-period-amount {
      font-family: var(--font-sans);
      font-size: clamp(15px, 3.5vw, 20px); font-weight: 800; color: var(--green);
    }
.total-period-unit { font-size: 10px; color: var(--muted2); }
.context-msg {
      background: rgba(74, 124, 89,0.07); border: 1px solid rgba(74, 124, 89,0.2);
      border-radius: 12px; padding: 14px 16px;
      font-size: 14px; line-height: 1.55; color: var(--muted);
    }
@media (max-width: 400px) {
      .calc-card { padding: 22px 18px; }
      .breakdown-grid { grid-template-columns: 1fr; }
    }

/* ── vidensdeling/BANANA.html ── */
.nav-logo img {
      height: 56px;
      width: auto;
      /* Skyggen her gav logoet en moerk glorie paa den lyse bar. */
    }
.nav-logo-text {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 21px;
      color: var(--text);
      text-shadow: 0 1px 6px rgba(0,0,0,0.6);
    }
.nav-back {
      position: fixed;
      top: 20px;
      right: 28px;
      z-index: 100;
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 18px;
      border-radius: 9999px;
      border: 1px solid rgba(255, 255, 255,0.15);
      background: rgba(250, 248, 245,0.55);
      transition: color .15s, border-color .15s, background .15s;
      text-decoration: none;
    }
.hero {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 120px 24px 64px;
      max-width: 760px;
      margin: 0 auto;
    }
.hero-badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--yellow);
      animation: pulse 2s infinite;
    }
.hero-sub {
      font-size: 18px;
      font-weight: 300;
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto 12px;
      line-height: 1.65;
    }
.hero-note {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      color: var(--muted2);
      background: rgba(255, 255, 255,0.04);
      border: 1px solid var(--border);
      border-radius: 9999px;
      padding: 5px 14px;
      margin-top: 18px;
    }
.hero-note-icon { font-size: 14px; }
.filter-hint {
      position: relative;
      z-index: 1;
      text-align: center;
      font-size: 13px;
      color: var(--muted2);
      margin-bottom: 16px;
    }
.filter-wrap {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      padding: 0 24px 48px;
    }
.filter-btn {
      padding: 7px 18px;
      border-radius: 9999px;
      border: 1px solid var(--border2);
      background: transparent;
      color: var(--muted);
      font-size: 14px;
      font-weight: 500;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      transition: all .15s;
    }
.filter-btn:hover { color: var(--text); border-color: var(--muted2); }
.grid-wrap {
      position: relative;
      z-index: 1;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px 80px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
@media (max-width: 900px) { .grid-wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-wrap { grid-template-columns: 1fr; } }
.card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: border-color .2s, transform .2s;
    }
.card:hover { border-color: var(--border2); transform: translateY(-2px); }
.card.hidden { display: none; }
.card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      background: var(--bg-base);
    }
.card-body {
      padding: 18px 20px 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 12px;
    }
.card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }
.card-cat {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 9999px;
      background: rgba(26, 77, 74,0.15);
      color: var(--accent2);
      border: 1px solid rgba(26, 77, 74,0.25);
      white-space: nowrap;
    }
.card-template-tag {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(244, 184, 96,0.7);
      background: rgba(244, 184, 96,0.08);
      border: 1px solid rgba(244, 184, 96,0.18);
      padding: 2px 8px;
      border-radius: 9999px;
      white-space: nowrap;
    }
.card-title {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.3;
    }
.card-prompt {
      background: rgba(255, 255, 255,0.03);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 14px;
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.65;
      font-style: italic;
      max-height: 130px;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--border2) transparent;
      flex: 1;
      white-space: pre-wrap;
      word-break: break-word;
    }
.card-prompt::-webkit-scrollbar { width: 4px; }
.card-prompt::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 4px; }
.card-copy-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      width: 100%;
      padding: 9px 16px;
      background: rgba(26, 77, 74,0.12);
      border: 1px solid rgba(26, 77, 74,0.25);
      border-radius: 8px;
      color: var(--accent2);
      font-size: 13.5px;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      transition: background .15s, border-color .15s, color .15s;
      margin-top: auto;
    }
.card-copy-btn:hover {
      background: rgba(26, 77, 74,0.22);
      border-color: rgba(26, 77, 74,0.45);
      color: #fff;
    }
.card-copy-btn.copied {
      background: rgba(74, 124, 89,0.12);
      border-color: rgba(74, 124, 89,0.3);
      color: var(--green);
    }
.card-copy-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--border);
      padding: 28px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
.footer-logo {
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 15px;
      color: var(--muted2);
    }
.footer-note {
      font-size: 13px;
      color: var(--muted2);
    }
.lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0,0,0,0.92);
      align-items: center;
      justify-content: center;
      padding: 24px;
      cursor: zoom-out;
    }
.lightbox.open { display: flex; }
.lightbox-inner {
      position: relative;
      max-width: min(90vw, 1100px);
      max-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
.lightbox-img {
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 40px 120px rgba(0, 0, 0, 0.12);
      display: block;
      cursor: default;
    }
.lightbox-close {
      position: fixed;
      top: 20px; right: 24px;
      width: 40px; height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255,0.2);
      background: rgba(255, 255, 255,0.08);
      color: rgba(255, 255, 255,0.8);
      font-size: 20px;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .15s, border-color .15s;
    }
.lightbox-close:hover {
      background: rgba(255, 255, 255,0.15);
      border-color: rgba(255, 255, 255,0.4);
      color: #fff;
    }
.lightbox-caption {
      position: fixed;
      bottom: 24px; left: 50%;
      transform: translateX(-50%);
      font-size: 13px;
      color: rgba(255, 255, 255,0.45);
      white-space: nowrap;
      pointer-events: none;
    }
.card-img {
      cursor: zoom-in;
      transition: opacity .15s;
    }
.card-img:hover { opacity: 0.88; }
.empty-state {
      grid-column: 1 / -1;
      text-align: center;
      padding: 60px 24px;
      color: var(--muted2);
      font-size: 15px;
      display: none;
    }
.empty-state.visible { display: block; }

/* ── vidensdeling/KLAR.html ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
.top-bar { background: var(--gold); height: 5px; margin: -32px -20px 32px; }
.logo { font-size: 12px; font-weight: 700; color: var(--text-2); letter-spacing: 0.5px; margin-bottom: 24px; }
h1 { font-size: 26px; font-weight: 700; color: var(--text-1); line-height: 1.2; margin-bottom: 10px; letter-spacing: -0.3px; }
h2 { font-size: 17px; font-weight: 700; color: var(--text-1); margin-bottom: 10px; }
.intro { font-size: 15px; color: var(--text-2); margin-bottom: 32px; line-height: 1.65; }
.section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-3);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e2dc;
  }
.q-card {
    background: #fff;
    border-radius: 8px;
    padding: 18px 22px;
    margin-bottom: 10px;
    border: 1px solid #e5e2dc;
    page-break-inside: avoid;
    break-inside: avoid;
  }
.q-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 6px;
  }
.q-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 12px;
    line-height: 1.4;
  }
.options { display: flex; flex-direction: column; gap: 7px; }
.option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-1);
    line-height: 1.4;
  }
.box {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--text-3);
    border-radius: 3px;
    flex-shrink: 0;
  }
.q-note {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 10px;
    font-style: italic;
    line-height: 1.5;
  }
.write-field {
    background: var(--bg-base);
    border: 1px dashed var(--text-3);
    border-radius: 4px;
    padding: 10px 12px;
    min-height: 52px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-3);
    font-style: italic;
  }
.result-card {
    background: #fff;
    border-radius: 8px 8px 0 0;
    padding: 18px 22px;
    border: 1px solid #e5e2dc;
    border-bottom: none;
    page-break-inside: avoid;
    break-inside: avoid;
  }
.result-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
  }
.result-row:last-child { margin-bottom: 0; }
.result-score {
    font-size: 13px;
    font-weight: 700;
    background: var(--plade);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 3px;
    flex-shrink: 0;
    white-space: nowrap;
  }
.result-text { font-size: 13px; color: var(--text-1); line-height: 1.5; }
.result-text strong { color: var(--text-1); }
.cta-box {
    background: var(--plade);
    border-radius: 0 0 8px 8px;
    padding: 12px 20px;
    text-align: center;
    page-break-inside: avoid;
    break-inside: avoid;
  }
.cta-box p { color: #fff; font-size: 13px; line-height: 1.5; margin-bottom: 4px; }
.cta-box a { color: var(--gold); font-weight: 700; text-decoration: none; font-size: 13px; }

/* ── vidensdeling/MODEL.html ── */
h2 { font-size: 18px; font-weight: 700; color: var(--text-1); margin-bottom: 10px; margin-top: 28px; }
.card {
    background: #fff;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 14px;
    border: 1px solid #e5e2dc;
    page-break-inside: avoid;
    break-inside: avoid;
  }
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
.model-name { font-size: 18px; font-weight: 700; }
.score {
    font-size: 22px;
    font-weight: 800;
  }
.model-sub { font-size: 12px; color: var(--text-2); margin-bottom: 12px; }
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid;
  }
.tag-good { background: rgba(74, 124, 89,0.08); color: var(--success); border-color: rgba(74, 124, 89,0.2); }
.tag-bad  { background: rgba(181, 69, 60,0.08); color: var(--danger); border-color: rgba(181, 69, 60,0.2); }
.tag-warn { background: rgba(212, 148, 60,0.08); color: #d4943c; border-color: rgba(212, 148, 60,0.2); }
.verdict {
    font-size: 13px;
    color: var(--text-1);
    background: var(--bg-base);
    border-left: 3px solid var(--gold);
    padding: 10px 12px;
    border-radius: 0 4px 4px 0;
    line-height: 1.55;
  }
.verdict strong { color: var(--text-1); }
.score-row { display: flex; gap: 8px; margin-bottom: 10px; }
.score-item { flex: 1; }
.score-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-2); margin-bottom: 4px; }
.score-val { font-size: 15px; font-weight: 800; }
.bar-bg { height: 4px; background: #e5e2dc; border-radius: 2px; margin-top: 4px; overflow: hidden; }
.bar { height: 100%; border-radius: 2px; }
.c-gpt    { color: #1a7a50; }
.b-gpt    { background: #10a37f; }
.c-claude { color: #a05020; }
.b-claude { background: #c07040; }
.c-gemini { color: #1a50b0; }
.b-gemini { background: #4285f4; }
.c-grok   { color: var(--text-2); }
.b-grok   { background: var(--text-3); }
.decision { background: #fff; border-radius: 8px; padding: 20px 24px; border: 1px solid #e5e2dc; margin-bottom: 14px; page-break-inside: avoid; break-inside: avoid; }
.d-question { font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: 10px; }
.d-row { display: flex; gap: 10px; margin-bottom: 6px; align-items: flex-start; }
.d-if { font-size: 12px; font-weight: 700; background: var(--plade); color: var(--gold); padding: 2px 6px; border-radius: 3px; flex-shrink: 0; white-space: nowrap; }
.d-then { font-size: 13px; color: var(--text-1); line-height: 1.45; }
.d-then strong { color: var(--text-1); }
.section-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); margin: 28px 0 12px; }
.cta-box { background: var(--plade); border-radius: 8px; padding: 12px 20px; margin-top: 20px; text-align: center; page-break-inside: avoid; break-inside: avoid; }

/* ── vidensdeling/ORD.html ── */
.word-card {
    background: #fff;
    border-radius: 8px;
    padding: 18px 22px;
    margin-bottom: 10px;
    border: 1px solid #e5e2dc;
    page-break-inside: avoid;
    break-inside: avoid;
  }
.word-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
  }
.word { font-size: 20px; font-weight: 700; color: var(--text-1); }
.word-en { font-size: 12px; color: var(--text-3); font-style: italic; }
.definition { font-size: 14px; color: var(--text-1); line-height: 1.6; margin-bottom: 8px; }
.analogy {
    font-size: 13px;
    color: var(--text-2);
    background: var(--bg-base);
    border-left: 3px solid var(--gold);
    padding: 8px 12px;
    border-radius: 0 4px 4px 0;
    line-height: 1.5;
    font-style: italic;
  }
.level-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 20px;
    margin-bottom: 8px;
  }
.level-1 { background: rgba(74, 124, 89,0.1); color: var(--success); border: 1px solid rgba(74, 124, 89,0.2); }
.level-2 { background: rgba(212, 148, 60,0.1); color: #d4943c; border: 1px solid rgba(212, 148, 60,0.2); }
.cta-box { background: var(--plade); border-radius: 0 0 8px 8px; padding: 12px 20px; margin-top: 0; text-align: center; page-break-inside: avoid; break-inside: avoid; }

/* ── vidensdeling/PROMPT.html ── */
.template {
    background: var(--bg-surface);
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 14px;
    border: 1px solid var(--border-1);
    page-break-inside: avoid;
    break-inside: avoid;
  }
.t-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }
.t-num {
    background: var(--plade);
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
.t-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-1);
  }
.t-body {
    background: var(--bg-base);
    border-left: 3px solid var(--gold);
    padding: 12px 14px;
    border-radius: 0 4px 4px 0;
    font-size: 13px;
    color: var(--text-1);
    line-height: 1.65;
    font-style: italic;
  }
.t-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-2);
    margin-top: 10px;
  }
.cta-box a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
  }
.divider {
    border: none;
    border-top: 1px solid #e5e2dc;
    margin: 8px 0 12px;
  }
.row {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
    align-items: flex-start;
  }
.badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--text-1);
    padding: 2px 6px;
    border-radius: 2px;
    flex-shrink: 0;
    white-space: nowrap;
    margin-top: 2px;
  }
.val {
    font-size: 13px;
    color: #5a5a5a;
    font-style: italic;
    line-height: 1.5;
  }

/* ══════════════════════════════════════════════════════════════════════════
   SMARTRECEPTIONIST PAA FORSIDEN
   Erstatter det gamle AI-receptionist-billede. Telefonen er samme mockup som
   paa smartreceptionist.dk's forside - bygget i markup frem for et
   skaermbillede, saa den er skarp paa alle skaerme og foelger temaet.
   Afsnittet skal fungere som en reklame, ikke fylde hele forsiden.
   ══════════════════════════════════════════════════════════════════════════ */

.sr-promo {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  max-width: 1020px;
  margin: 56px auto 0;
  padding: 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  text-align: left;
}
.sr-promo-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.sr-promo-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-wrap: balance;
}
.sr-promo-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 22px;
  max-width: 52ch;
}
.sr-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── Telefonen: bygget som PhoneMockup.tsx ── */
/* Formen er iPhone 17 Pro, regnet ud fra de faktiske maal:
 *   krop    71,9 x 150,0 mm          -> forhold 1 : 2,086
 *   skaerm  6,3", 1206 x 2622 px     -> forhold 1 : 2,174
 *
 * Kanten omkring skaermen falder ud af de to forhold: 3,74 % af bredden. Og
 * hjoerneradius kommer fra Apples egen 62 pt paa en 402 pt bred skaerm.
 *
 * ALT er udtrykt i --phone-w, saa telefonen har praecis samme form uanset hvor
 * bred den saettes. Foer havde hver placering sin egen hoejde, fordi hoejden
 * fulgte indholdet: 1,714 paa forsiden af smartreceptionist, 1,900 paa samme
 * side i telefonformat, 1,827 og 1,855 herovre. Ingen af dem lignede en
 * iPhone, og ingen af dem lignede hinanden.
 *
 * Skal telefonen have en anden stoerrelse, saa ret KUN --phone-w. */
.phone-frame {
  --phone-w: 280px;
  position: relative;
  width: var(--phone-w);
  aspect-ratio: 71.9 / 150;
  padding: calc(var(--phone-w) * 0.0374);
  background: #09090b;
  border-radius: calc(var(--phone-w) * 0.180);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.7);
  outline: 1px solid rgba(255,255,255,.1);
  outline-offset: -1px;
}
@media (min-width: 640px) { .phone-frame { --phone-w: 320px; } }

/* Sideknapperne paa telefonen.
 *
 * Der var én knap i hver side, placeret med faste pixelvaerdier (96px og
 * 128px) der ikke fulgte med naar telefonen skiftede stoerrelse.
 *
 * En iPhone 17 Pro har fem: i venstre side handlingsknappen oeverst og
 * derunder lydstyrke op og ned som to adskilte knapper. I hoejre side
 * taend/sluk.
 *
 * Alt er sat i procent af telefonens HOEJDE, saa knapperne sidder det samme
 * sted uanset hvor stor figuren er. Tallene er regnet ud fra kroppens 150 mm:
 *   handling       32,3 mm fra top, 6,5 mm lang
 *   lydstyrke op   42,8 mm,        11 mm
 *   lydstyrke ned  56,3 mm,        11 mm
 *   taend/sluk     40,5 mm,        17 mm
 */
.phone-btn {
  position: absolute;
  width: 1.1%;
  background: #27272a;
}
.phone-btn-venstre { left: -1.1%; border-radius: 2px 0 0 2px; }
.phone-btn-hoejre  { right: -1.1%; border-radius: 0 2px 2px 0; }

.phone-btn-handling  { top: 21.5%; height: 4.3%; }
.phone-btn-op        { top: 28.5%; height: 7.3%; }
.phone-btn-ned       { top: 37.5%; height: 7.3%; }
.phone-btn-taend     { top: 27.0%; height: 11.3%; }


.phone-screen {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: calc(var(--phone-w) * 0.143);
  background: #fff;
  /* Skaermen har nu en fast hoejde, saa samtalen skal have lov at fylde den
     ud. Ellers ville der staa et tomt felt nederst. */
  display: flex;
  flex-direction: column;
}
.phone-msgs { flex: 1; }
.phone-notch {
  position: absolute;
  left: 50%;
  top: 1.26%;
  transform: translateX(-50%);
  /* 125 x 37 pt paa en 402 x 874 pt skaerm. */
  width: 31.1%;
  height: 4.23%;
  border-radius: 9999px;
  background: #09090b;
  z-index: 20;
}
.phone-status {
  /* Statuslinjen som paa en iPhone 17 Pro.
   *
   * Alt var i faste pixels foer, saa uret havde samme stoerrelse uanset hvor
   * stor telefonen var tegnet. Nu er det regnet ud af de rigtige maal:
   *   skaerm          402 x 874 pt
   *   Dynamic Island  125 x 37 pt, 11 pt fra toppen
   *   klokkeslaet     17 pt, centreret i venstre "oere"
   *
   * Oeret er (402 - 125) / 2 = 138,5 pt = 34,45 % af skaermbredden. Derfor
   * tre spalter: oere, pille, oere. Saa lander uret praecis hvor det goer paa
   * en rigtig telefon, uanset hvor stor figuren er. */
  display: grid;
  grid-template-columns: 34.45% 31.1% 34.45%;
  align-items: center;
  height: 6.2%;
  padding: 0;
  font-size: calc(var(--phone-w) * 0.0391);
  font-weight: 600;
  letter-spacing: -.01em;
  color: #18181b;
  flex-shrink: 0;
}
/* Spalten SKAL angives eksplicit. Statuslinjen har to boern - klokken og
   ikonerne - saa uden dette landede ikonerne i midterspalten, praecis bag den
   sorte pille, og forsvandt. Med grid-column staar de rigtigt uanset om der er
   to eller tre boern. */
.phone-status > :first-child {
  grid-column: 1;
  justify-self: center;
  font-variant-numeric: tabular-nums;
}
.phone-status > .phone-icons,
.phone-status > :last-child {
  grid-column: 3;
  justify-self: center;
}
.phone-icons { display: inline-flex; align-items: center; gap: 4px; color: #18181b; }
.phone-battery {
  position: relative;
  display: inline-block;
  width: 22px; height: 10px;
  border: 1px solid rgba(24,24,27,.8);
  border-radius: 3px;
}
.phone-battery i {
  position: absolute;
  inset: 1px;
  width: 80%;
  border-radius: 2px;
  background: #18181b;
}
.phone-battery::after {
  content: "";
  position: absolute;
  right: -3px; top: 3px;
  width: 1.5px; height: 4px;
  border-radius: 0 2px 2px 0;
  background: rgba(24,24,27,.8);
}
.phone-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(228,228,231,.7);
}
.phone-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-hover);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center;
}
.phone-name { margin-top: 6px; font-size: 13px; font-weight: 600; color: #18181b; }
.phone-meta { font-size: 10px; font-weight: 500; color: #71717a; }
.phone-msgs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  min-height: 460px;
}
.phone-chip {
  align-self: center;
  border-radius: 9999px;
  background: #f4f4f5;
  color: #52525b;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 12px;
}
.phone-chip.done { background: #e8f0e8; color: #4a6b4a; }
.phone-msg {
  max-width: 85%;
  padding: 10px 14px;
  font-size: 12.5px;
  line-height: 1.375;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.phone-msg.them { align-self: flex-start; border-bottom-left-radius: 6px; background: #f4f4f5; color: #18181b; }
.phone-msg.me   { align-self: flex-end;   border-bottom-right-radius: 6px; background: #1A4D4A; color: #fff; }

@media (max-width: 900px) {
  .sr-promo { grid-template-columns: 1fr; gap: 28px; padding: 28px; text-align: center; }
  .sr-promo-text { margin-left: auto; margin-right: auto; }
  .sr-promo-actions { justify-content: center; }
  .sr-promo-phone { order: -1; }
}
@media (max-width: 620px) {
  .sr-promo { margin-top: 36px; padding: 22px; border-radius: var(--radius-card); }
  .phone-msgs { min-height: 280px; }
}
@media (prefers-reduced-motion: reduce) {
  .phone-frame { transform: none; }
}

/* ══════════════════════════════════════════════════════════════════════════
   TOOLBAR OG SIDEFOD - bygget som paa smartreceptionist.dk
   ══════════════════════════════════════════════════════════════════════════ */


.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--text-1);
  transition: opacity .15s;
}
.nav-logo:hover { opacity: .8; }
.nav-logo .logo-mark {
  width: 28px; height: 28px;
  /* Logoet er et PNG med gennemsigtig baggrund - ingen hvid firkant bag. */
  background: none;
  border-radius: 0;
}
.nav-wordmark {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--text-1);
}

.theme-toggle svg { width: 18px; height: 18px; fill: none; }
.theme-toggle .icon-sun { display: none; }
html[data-theme="light"] .theme-toggle .icon-moon { display: none; }
html[data-theme="light"] .theme-toggle .icon-sun  { display: block; }

/* ── Sidefod ── */
footer {
  position: relative;
  background: var(--bg-base);
  color: var(--text-1);
  /* Ingen border-top: smartreceptionist.dk har ingen streg mellem siden og
     sidefoden - de deler samme flade og glider over i hinanden. */
  padding: 80px 24px 32px;
}
.footer-inner {
  /* Samme 1152px-kolonne som toolbaren, saa teksterne flugter med resten af
     siden i stedet for at gaa helt ud til kanten. */
  max-width: 1152px;
  margin: 0 auto;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.f-brand { display: flex; flex-direction: column; gap: 16px; }
.f-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-1);
  text-decoration: none;
  transition: opacity .15s;
}
.f-logo:hover { opacity: .8; }
.f-logo img { width: 56px; height: 56px; }
.f-brand p {
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.625;
  color: color-mix(in srgb, var(--text-1) 55%, transparent);
  margin: 0;
}
.f-col { display: flex; flex-direction: column; gap: 16px; }
/* Maalt paa smartreceptionist.dk: Inter, 11px, 600, knibning -0.022em og
   tekstfarven paa 40 %. Klassen dér hedder font-mono, men Tailwind-opsaetningen
   mapper den til Inter - saa en rigtig monospace-stak var forkert. */
.f-col h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.022em;
  color: color-mix(in srgb, var(--text-1) 40%, transparent);
  margin: 0;
}
.f-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.f-col a {
  font-size: 14px;
  line-height: 1.4286;
  font-weight: 400;
  color: color-mix(in srgb, var(--text-1) 75%, transparent);
  text-decoration: none;
  transition: color .15s;
}
.f-col a:hover { color: var(--brand); }
.footer-rule { height: 1px; background: var(--border-1); margin-top: 64px; }
.footer-bottom {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: color-mix(in srgb, var(--text-1) 45%, transparent); margin: 0; }

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (max-width: 860px) {
  .footer-cols { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (min-width: 861px) {
  .nav-burger { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════════
   PRODUKTSIDEN
   Kun to ting: SmartReceptionist og automatisering. Markedsfoering og
   AI-loesninger er fjernet, saa de seks der er tilbage kan fylde noget.
   ══════════════════════════════════════════════════════════════════════════ */



.p-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  text-align: center;
}
.p-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.p-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
  text-wrap: pretty;
}

/* ── SmartReceptionist: eget produkt, saa det faar hele bredden ── */
.p-hero-product {
  max-width: 1152px;
  margin: 0 auto 96px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}
.p-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.p-hp-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.p-hp-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 24px;
  max-width: 54ch;
}
.p-hp-points { list-style: none; margin: 0 0 28px; padding: 0; }
.p-hp-points li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-1);
  margin-bottom: 11px;
}
.p-hp-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .16;
}
.p-hp-points li::after {
  content: "";
  position: absolute;
  left: 4px; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.p-hp-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.p-hp-phone { display: flex; justify-content: center; position: relative; }

/* ── Ydelserne ── */
.p-section {
  max-width: 1152px;
  margin: 0 auto 96px;
  padding: 0 24px;
}
.p-section-head { margin-bottom: 36px; max-width: 60ch; }
.p-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 0 0 10px;
}
.p-section-head p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}
.p-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.p-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.p-card:hover { border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.p-card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.p-card > p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 20px;
}
.p-points { list-style: none; margin: 0; padding: 18px 0 0; border-top: 1px solid var(--border-1); }
.p-points li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 9px;
}
.p-points li:last-child { margin-bottom: 0; }
.p-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .5;
}

/* ── Priser ── */
.p-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.p-plan {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.p-plan-featured { border-color: var(--brand); box-shadow: var(--shadow-md); }
.p-plan-badge {
  position: absolute;
  top: -11px; left: 32px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  border-radius: 9999px;
  padding: 4px 12px;
}
.p-plan h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.p-plan-tag { font-size: 14.5px; line-height: 1.55; color: var(--text-2); margin: 0 0 20px; }
.p-plan-price { margin: 0 0 4px; color: var(--text-2); font-size: 14px; }
.p-plan-price span {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-1);
  margin-right: 4px;
}
.p-plan-note { font-size: 13px; color: var(--text-3); margin: 0 0 4px; }
.p-plan .p-points { flex: 1; margin-bottom: 24px; }
.p-plan-cta { width: 100%; }
.p-fineprint {
  max-width: 66ch;
  margin: 32px auto 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-3);
  text-align: center;
}

/* ── Afslutning ── */
.p-cta {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 112px;
  text-align: center;
}
.p-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: -0.022em;
  margin: 0 0 10px;
  text-wrap: balance;
}
.p-cta p { font-size: 16.5px; color: var(--text-2); margin: 0 0 24px; }

@media (max-width: 980px) {
  .p-hero-product { grid-template-columns: 1fr; gap: 40px; }
  .p-hp-phone { order: -1; }
  .p-plans { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .p-hero { padding: 48px 20px 36px; }
  .p-grid { grid-template-columns: 1fr; }
  .p-card, .p-plan { padding: 24px; }
  .p-section, .p-hero-product { padding: 0 20px; margin-bottom: 64px; }
}

/* ── Telefonens animationer, kopieret fra smartreceptionist.dk ── */
@keyframes phone-enter {
  from { opacity: 0; transform: translateY(24px) rotate(-1deg); }
  to   { opacity: 1; transform: translateY(0) rotate(-3deg); }
}
@keyframes phone-enter-lige {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes msg-fade-up {
  from { opacity: 0; transform: translateY(9px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-phone-enter { animation: phone-enter 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.anim-msg { animation: msg-fade-up 0.5s ease-out both; }

@media (prefers-reduced-motion: reduce) {
  .anim-msg { animation: none; opacity: 1; transform: none; }
  .anim-phone-enter { animation: none; opacity: 1; transform: rotate(-3deg); }
}


/* ── Gendannet: reglerne herunder blev slettet ved et uheld, da de gamle
   sidefods-regler skulle fjernes. Slette-regexen brugte ^\} med multiline,
   men reglerne er indrykkede, saa den aad alt frem til naeste ikke-indrykkede
   klammeparentes - herunder hele mission- og proces-afsnittet. ── */
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.stats-row {
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      padding: 40px 16px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      margin-bottom: 80px;
    }
.mission-section {
      max-width: 900px;
      margin: 0 auto;
      padding: 80px 16px;
      border-top: 1px solid var(--border);
    }
.mission-section h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 600; letter-spacing: -.03em;
      margin-bottom: 20px; line-height: 1.25;
    }
.mission-section p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; max-width: 680px; }
.mission-highlight {
      background: var(--surface); border: 1px solid var(--border2);
      border-radius: 10px; padding: 20px 24px; margin-top: 24px;
      font-size: 18px; color: var(--text); font-weight: 500; line-height: 1.6;
      border-left: 3px solid var(--accent);
    }
.mission-label {
      font-size: 15px; font-weight: 600; letter-spacing: .08em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
    }
.process-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
      margin-top: 40px;
    }
.process-step {
      background: var(--surface); border: 1px solid var(--border2);
      border-radius: 10px; padding: 20px 18px;
    }
.process-step h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.process-step p { font-size: 16px; color: var(--muted); margin: 0; line-height: 1.6; }
@media (max-width: 700px) { .process-grid { grid-template-columns: 1fr 1fr; } }
.process-duo {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 10px;
      margin-top: 40px;
    }
.process-duo {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 10px;
      margin-top: 40px;
    }
.process-duo-img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      object-position: center 52%;
      border-radius: 10px;
      display: block;
    }
.process-duo-img:last-child {
      object-position: center 30%;
    }
.footer-social { display: flex; gap: 18px; }
.footer-social a { color: var(--muted2); transition: color .15s; }
.footer-social a:hover { color: var(--text); }
.mission-section {
      max-width: 900px;
      margin: 0 auto;
      padding: 80px 16px;
      border-top: 1px solid var(--border);
    }
@media (max-width: 700px) { .process-grid { grid-template-columns: 1fr 1fr; } }
.process-duo {
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 10px;
      margin-top: 40px;
    }
.process-duo-img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      object-position: center 52%;
      border-radius: 10px;
      display: block;
    }
.process-duo-img:last-child {
      object-position: center 30%;
    }
@media (max-width: 600px) {
      .process-duo { grid-template-columns: 1fr 1fr; }
      .process-duo-img { height: 200px; }
    }
@media (max-width: 900px) {
      .nav-links { display: none; }
      .feat-section {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 64px 0;
      }
      .feat-section.reverse { direction: ltr; }
      .footer-top { grid-template-columns: 1fr 1fr 1fr; }
      .proof-bar { gap: 32px; }
      .hv-body { grid-template-columns: 1fr; }
      .hv-sidebar { display: none; }
    }
@media (max-width: 540px) {
      .hero { padding: 64px 16px 48px; }
      .features { padding: 0 16px; }
      .proof-bar { padding: 16px; gap: 24px; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
      .analytics-stats { grid-template-columns: 1fr 1fr; }
    }
@media (max-width:900px) { .nav-burger { display:flex; } }

/* ── ai.html ── */
.nav-links .arrow { font-size: 14px; }
.page-hero {
      padding: 80px 16px 64px;
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }
.page-hero h1 {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 600;
      letter-spacing: -.03em;
      line-height: 1.1;
      margin-bottom: 20px;
      color: var(--text-1);
}
@media (max-width: 900px) {
      .nav-links { display: none; }
      .solutions-grid { grid-template-columns: 1fr 1fr; }
      .featured-card { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
      .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
      .compare-table th, .compare-table td { padding: 10px 12px; font-size: 15px; }
    }
@media (max-width: 540px) {
      .solutions-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .stats-row { gap: 28px; }
      .page-hero { padding: 56px 16px 48px; }
    }
@media (max-width:420px) { .cb-window { right:12px; left:12px; width:auto; bottom:88px; } .cb-toggle { right:16px; bottom:20px; } }
.f-brand p,
    .f-col a,
    .footer-bottom,
    .page-footer,
    .footer-social a { color: var(--text-2); }

/* ── automatisering.html ── */
.stat-val {
      font-size: 26px; font-weight: 600; letter-spacing: -.03em;
      color: var(--text-1);
}

/* ══════════════════════════════════════════════════════════════════════════
   MOERKT TEMA
   Knappen satte data-theme paa <html>, men der fandtes ingen moerk palet at
   skifte til - saa der skete ingenting. Vaerdierne er de samme som paa
   smartreceptionist.dk.
   ══════════════════════════════════════════════════════════════════════════ */
html[data-theme="dark"] {
  --bg-base:      #0a0a0a;
  --bg-surface:   #111113;
  --bg-elevated:  #161618;
  --bg-subtle:    #18181b;
  --bg-strong:    #27272a;

  --text-1:       #fafafa;
  --text-2:       #a1a1aa;
  --text-3:       #71717a;

  --border-1:     #27272a;
  --border-2:     #3f3f46;

  --brand-soft:   #14312f;

  /* Teal paa naesten-sort er ikke laesbart.
   *
   * Paletten skiftede baggrund og tekst, men lod maerkefarven staa. Resultatet
   * var at hver eyebrow, hvert feat-link, hvert aarstal i historien og hver
   * blog-etikette blev moerkegroen paa sort. Maalt kontrast: 0,12 til 0,20 -
   * altsaa naesten usynligt.
   *
   * Maerkefarven bliver ikke en anden farve her, den bliver den samme farve i
   * en lysere valoer, saa den stadig er vores og samtidig kan laeses. */
  --brand:        #7ec8bf;
  --brand-hover:  #9bd8d0;

  /* Guld er lyst nok i forvejen, men teksten PAA guld skal vende om. */
  --gold-fg:      #1a1a1a;

  /* Groen og roed skal ogsaa loeftes, ellers forsvinder de samme steder. */
  --success:      #7bc490;
  --green:        #7bc490;
  --danger:       #e98d84;
  --warning:      #e8b968;
  --orange:       #f0a25e;
  --mint:         #9bc49b;

  /* De bloede toner blev aldrig vendt om, saa de blev ved med at vaere lyse
     plader med lys tekst ovenpaa. */
  --mint-soft:    #1b2a1e;
  --gold-soft:    #2c2418;
  --plade:        #1e1e21;

  --shadow-xs: 0 1px 2px 0 rgba(0,0,0,.3);
  --shadow-sm: 0 1px 3px 0 rgba(0,0,0,.4), 0 1px 2px -1px rgba(0,0,0,.3);
  --shadow-md: 0 4px 12px -2px rgba(0,0,0,.5), 0 2px 4px -2px rgba(0,0,0,.3);
  --shadow-lg: 0 12px 32px -8px rgba(0,0,0,.6), 0 4px 8px -4px rgba(0,0,0,.4);
}
/* Toolbarens knap er hvid paa moerk bund, praecis som paa den anden side. */
html[data-theme="dark"] .btn-nav {
  background: #fafafa;
  color: #0a0a0a !important;
  border-color: #fafafa;
}
html[data-theme="dark"] .btn-nav:hover { background: #e4e4e7; border-color: #e4e4e7; }
/* Telefonens skaerm bliver ikke moerk - det er en telefon, ikke en flade. */
html[data-theme="dark"] .phone-screen { background: #fff; }

/* ══════════════════════════════════════════════════════════════════════════
   MOBIL - som paa smartreceptionist.dk
   Toolbaren dér viser kun ét tekstlink og burgeren. Min havde logo, tema-knap,
   Book moede OG burger proppet ind paa 390px. Hero-knapperne er fuld bredde,
   og telefonen skal kunne vaere der uden at loebe ud over kanten.
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  /* Tema-knappen og CTA'en hoerer til i menuen paa mobil, ligesom paa den
     anden side. Book moede staar oeverst i den udfoldede menu. */
  .nav-actions .theme-toggle { display: none; }
  .nav-inner {
    gap: 12px;
    /* Samme luft i kanten som paa smartreceptionist.dk. Der stod 16px i
       den generelle regel, men noget senere gav 32px, saa logoet stod
       dobbelt saa langt inde som paa den anden side. */
    padding: 0 16px;
  }
  .nav-actions { gap: 8px; }

  /* CTA'en i baren skal se ud som "Log ind" paa den anden side: ren tekst,
     ikke en fyldt knap. Den fyldte knap staar stadig oeverst i menuen, hvor
     den anden side ogsaa har sin. To knapper i en 390 px bred bar goer
     baren tung og skubber burgeren ud mod kanten. */
  /* Maalt mod smartreceptionist.dk's "Log ind" og sat til de samme tal:
     radius 6px, ingen fast hoejde (32,25px falder ud af linjehoejden),
     10px vandret luft, ingen kant, ingen bogstavafstand. */
  .nav-actions .btn-nav {
    background: transparent;
    border: 0;
    /* Grundreglen saetter color med !important, saa den skal modsvares. */
    color: var(--text-1) !important;
    font-weight: 600;
    letter-spacing: normal;
    border-radius: 6px;
    height: auto;
    padding: 6px 10px;
    line-height: 1.5;
  }
  .nav-actions .btn-nav:hover {
    background: var(--bg-subtle);
    border-color: transparent;
    color: var(--text-1) !important;
  }
  html[data-theme="dark"] .nav-actions .btn-nav {
    background: transparent;
    border-color: transparent;
    color: var(--text-1) !important;
  }
  /* Menuens egen knap skal blive ved med at vaere en rigtig knap. */
  .mobile-nav .btn-nav {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff !important;
    padding: 0 18px;
  }
  html[data-theme="dark"] .mobile-nav .btn-nav {
    background: #fafafa;
    color: #0a0a0a !important;
    border-color: #fafafa;
  }

  /* Hero-knapperne i fuld bredde, stablet - som paa den anden side. */
  .hero-actions,
  .hero-btns,
  .sr-promo-actions,
  .p-hp-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .hero-actions .btn-primary, .hero-actions .btn-ghost,
  .hero-btns .btn-primary,    .hero-btns .btn-ghost,
  .sr-promo-actions .btn-primary, .sr-promo-actions .btn-ghost,
  .p-hp-actions .btn-primary, .p-hp-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* Maalt paa smartreceptionist.dk ved 390px: telefonen er 344px bred, har
     10px ramme, 2.75rem hjoerner og er IKKE drejet. Min var 270px, 8px, 2.1rem
     og drejet - derfor virkede den for smal. Negative marginer lader den bryde
     ud af kortets indvendige luft, saa den kan naa de 344px. */
  .phone-frame {
    --phone-w: min(344px, calc(100vw - 46px));
    transform: none;
    /* Telefonen laa klods op ad venstre kant med al luften i hoejre side.
       De negative marginer paa .sr-promo-phone giver plads til at figuren maa
       vaere bredere end tekstspalten, men de centrerer den ikke - og uden en
       auto-margin bliver et blok-element med fast bredde liggende til
       venstre. Ved 430 px var der 36 px slap i hoejre side og nul i venstre. */
    margin-left: auto;
    margin-right: auto;
  }
  .sr-promo-phone { margin-left: -14px; margin-right: -14px; }
  .sr-promo-phone::after { inset: -16px; }
  .phone-msgs { min-height: 470px; }
  /* Animationens slutbillede saetter rotate(-3deg) med fill-mode: both, saa en
     ren transform: none bliver overtrumfet. Mobil faar sin egen keyframe. */
  .anim-phone-enter { animation-name: phone-enter-lige; }
}

@media (max-width: 860px) {
  /* Kortet klippede telefonens top, fordi .hero-visual har overflow: hidden
     og telefonen var hoejere end pladsen. */
  .sr-promo { overflow: visible; }
}

@media (max-width: 420px) {
  /* Kun luften omkring skrumper - selve telefonen beholder sin stoerrelse,
     saa den ser ud som paa den anden side. */
  .sr-promo { padding: 22px 14px; }
  .p-hero-product { padding: 0 14px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   INTERAKTIVE ELEMENTER I FEATURE-KORTENE
   Graferne, tekstboblerne og talrækkerne var helt statiske. Nu reagerer de
   diskret paa musen - et par procent stoerre eller en anelse kraftigere farve.
   Bevidst SMAAT: det skal foles levende, ikke hoppende.
   ══════════════════════════════════════════════════════════════════════════ */

/* Selve kortet loefter sig en anelse, saa man kan se det er noget der lever. */
.feat-card {
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease, border-color .25s ease;
}
.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-2);
}

/* ── Grafen under "Beslut dig på data" ── */
.analytics-row {
  transition: transform .2s cubic-bezier(.16,1,.3,1);
  transform-origin: left center;
}
.analytics-row:hover { transform: scale(1.015); }
.bar-track { transition: background-color .2s ease; }
.analytics-row:hover .bar-track { background: var(--bg-strong); }
.bar-fill {
  transition: filter .2s ease, transform .25s cubic-bezier(.16,1,.3,1);
  transform-origin: left center;
}
.analytics-row:hover .bar-fill { filter: saturate(1.25) brightness(1.06); transform: scaleY(1.18); }
.analytics-val { transition: color .2s ease, transform .2s ease; }
.analytics-row:hover .analytics-val { color: var(--brand); transform: scale(1.06); }
.analytics-stats > * {
  transition: transform .2s cubic-bezier(.16,1,.3,1), color .2s ease;
}
.analytics-stats > *:hover { transform: scale(1.04); color: var(--brand); }

/* ── Tekstboblerne under "AI der håndterer kundeservice døgnet rundt" ── */
.chat-msg {
  transition: transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s ease, filter .2s ease;
}
.chat-msg.user { transform-origin: right center; }
.chat-msg.ai   { transform-origin: left center; }
.chat-msg:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-sm);
  filter: brightness(1.03);
}
.chat-input-row { transition: border-color .2s ease, background-color .2s ease; }
.chat-input-row:hover { border-color: var(--brand); }
.chat-send { transition: transform .2s cubic-bezier(.16,1,.3,1), background-color .2s ease; }
.chat-send:hover { transform: scale(1.08); background: var(--brand-hover); }

/* ── Punkterne i listerne og de smaa prikker i kort-hovedet ── */
.feat-list li { transition: transform .18s ease, color .18s ease; }
.feat-list li:hover { transform: translateX(2px); color: var(--text-1); }
.dot { transition: transform .2s ease; }
.feat-card:hover .dot-row .dot { transform: scale(1.15); }

@media (prefers-reduced-motion: reduce) {
  .feat-card, .feat-card:hover,
  .analytics-row, .analytics-row:hover,
  .bar-fill, .chat-msg, .chat-msg:hover,
  .chat-send, .chat-send:hover, .dot, .feat-list li {
    transform: none !important;
    transition: none !important;
  }
}


/* ═══════════════════ KONTAKTMULIGHEDERNE PAA /PRODUKTER ═══════════════════
 *
 * Her stod priserne. De er flyttet vaek, fordi hver loesning bliver bygget
 * til den enkelte, og et prisskilt uden sammenhaeng gav flere afbud end
 * samtaler. Nu staar der i stedet hvordan man faar fat i os, med den
 * mulighed folk oftest vil have foerst: at vi ringer til dem.
 */
.k-valg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.k-kort {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px;
  background: var(--bg-surface);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-card);
  text-decoration: none;
  transition: border-color .18s ease, transform .18s cubic-bezier(.16,1,.3,1), box-shadow .18s ease;
}
.k-kort:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md, 0 8px 24px -12px rgba(40,34,24,.18));
}
.k-navn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.k-vaerdi {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--text-1);
}
.k-note { font-size: 14px; color: var(--text-2); }

.k-form {
  margin-top: 14px;
  padding: 24px 22px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.k-form-tekst h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.k-form-tekst p { font-size: 15px; color: var(--text-2); }
.k-felter {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.k-felt { display: flex; flex-direction: column; gap: 5px; }
.k-felt span { font-size: 13px; font-weight: 500; color: var(--text-2); }
.k-felt input {
  height: 44px;
  padding: 0 13px;
  font: inherit;
  font-size: 15px;
  color: var(--text-1);
  background: var(--bg-surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-button);
  transition: border-color .15s ease;
}
.k-felt input:focus { outline: none; border-color: var(--brand); }
.k-felter .btn-primary { height: 44px; white-space: nowrap; }

.k-svar { font-size: 14.5px; min-height: 1.4em; }
.k-god { color: var(--success); font-weight: 500; }
.k-daarlig { color: var(--danger, var(--danger)); }

@media (max-width: 620px) {
  .k-felter { grid-template-columns: 1fr; }
  .k-felter .btn-primary { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .k-kort { transition: none; }
  .k-kort:hover { transform: none; }
}


/* ═══════════ NAAR MAN LANDER PAA EN BESTEMT YDELSE ═══════════
 *
 * Forsidens afsnit linker nu til den enkelte ydelse, ikke bare til siden.
 * To ting skal virke for at det er til gavn:
 *
 * Toolbaren klaeber i toppen, saa uden luft over ankeret ville overskriften
 * lande BAG den, og man ville tro man var landet forkert.
 *
 * Og otte ens kort ser ens ud. Uden et kort oejeblik hvor det rigtige lyser
 * op, skal man selv gaette hvilket af dem man kom efter.
 */
.p-card[id] { scroll-margin-top: 96px; }

.p-card:target {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 16%, transparent);
  animation: kort-fremhaev 2.4s ease-out 1;
}

@keyframes kort-fremhaev {
  0%, 55% { background: color-mix(in srgb, var(--brand) 7%, var(--bg-surface)); }
  100%    { background: var(--bg-surface); }
}

/* Ogsaa de stoerre afsnit, saa #kontakt og #smartreceptionist rammer rent. */
.p-section[id], .p-hero-product[id] { scroll-margin-top: 88px; }

@media (prefers-reduced-motion: reduce) {
  .p-card:target { animation: none; }
  html { scroll-behavior: auto; }
}


/* ═══════════ DE SIDSTE TO SIDER I DARK MODE ═══════════
 *
 * Beregnerne og vidensdelingen har deres eget stylesheet, som blev lagt i
 * forlaengelse af det oevrige. De faa steder der stadig laaser en lys flade
 * eller en hvid tekst, staar her.
 */
html[data-theme="dark"] .nav-back:hover {
  color: var(--text-1);
  background: var(--bg-subtle);
  border-color: var(--border-2);
}
/* Orange tekst paa en gultonet flade er ulaeselig naar begge er lyse. */
html[data-theme="dark"] .fact-body strong { color: var(--text-1); }
html[data-theme="dark"] .fact-body { color: var(--text-2); }


/* ═════════════════ MOBILMENUEN ═════════════════
 *
 * Kopieret egenskab for egenskab fra components/navigation/MobileMenu.tsx paa
 * smartreceptionist.dk. Foer var den her en dropdown der foldede sig ud under
 * baren; den anden er et panel der glider ind fra hoejre over et sloeret
 * moerkt slør. De havde intet til faelles.
 *
 * Ogsaa animationerne: sloeret toner op paa 250 ms, panelet glider ind paa
 * 350 ms med kurven (.16, 1, .3, 1) - den samme framer-motion bruger.
 */
.mob-slor {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.mob-slor.open { opacity: 1; pointer-events: auto; }

.mobile-nav {
  position: fixed;
  right: 0;
  left: auto;
  top: 0;
  bottom: auto;
  padding: 0;
  border-bottom: 0;
  z-index: 56;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 24rem;
  background: var(--bg-base);
  color: var(--text-1);
  box-shadow: 0 0 60px -10px rgba(0, 0, 0, .5);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
  /* Panelet er ALTID i DOM'en, saa det kan glide - ikke display:none. */
  visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }

/* ── Toppen af panelet ── */
.mob-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-1);
  padding: 16px 20px;
  flex-shrink: 0;
}
.mobile-nav a.mob-navn {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 10px;
  padding: 0;
  border-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-1);
  text-decoration: none;
}
.mob-navn img { width: 56px; height: 56px; object-fit: contain; }
.mob-top-knapper { display: flex; align-items: center; gap: 8px; }

.mob-tema,
.mob-luk {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  color: var(--text-2);
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.mob-tema {
  border: 1px solid var(--border-1);
  background: var(--bg-surface);
}
.mob-tema:hover,
.mob-luk:hover { background: var(--bg-subtle); color: var(--text-1); }
.mob-tema svg, .mob-luk svg { width: 18px; height: 18px; }
.mob-luk svg { width: 20px; height: 20px; }

/* Sol og maane krydsfader, praecis som paa den anden side. */
.mob-tema .ikon-sol,
.mob-tema .ikon-maane {
  position: absolute;
  transition: transform .3s ease, opacity .3s ease;
}
.mob-tema { position: relative; }
.mob-tema .ikon-sol   { transform: rotate(0deg)  scale(1); opacity: 1; }
.mob-tema .ikon-maane { transform: rotate(90deg) scale(0); opacity: 0; }
html[data-theme="dark"] .mob-tema .ikon-sol   { transform: rotate(90deg) scale(0); opacity: 0; }
html[data-theme="dark"] .mob-tema .ikon-maane { transform: rotate(0deg)  scale(1); opacity: 1; }

/* ── Punkterne ── */
.mob-punkter {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  padding: 24px 20px;
  overflow-y: auto;
}
.mobile-nav .mob-punkter a,
.mobile-nav a.mob-punkt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 9999px;
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-1);
  text-decoration: none;
  border-bottom: 0;
  transition: background-color .15s ease;
}
.mobile-nav .mob-punkter a:hover { background: var(--bg-subtle); }
.mob-punkter a .pil {
  color: var(--text-3);
  transition: transform .15s ease, color .15s ease;
}
.mob-punkter a:hover .pil { transform: translateX(4px); color: var(--brand); }

/* ── Knapperne nederst ── */
.mob-bund {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border-1);
  padding: 20px 20px max(env(safe-area-inset-bottom), 20px);
  flex-shrink: 0;
}
.mobile-nav a.mob-knap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 100%;
  border-radius: 9999px;
  border: 1px solid var(--border-1);
  background: var(--bg-surface);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  border-bottom: 1px solid var(--border-1);
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.mobile-nav a.mob-knap:hover {
  background: var(--bg-subtle);
  border-color: var(--border-2);
  color: var(--text-1);
}
/* Bookingknappen: samme maal, groen bund. */
.mobile-nav a.mob-knap-groen {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 600;
}
.mobile-nav a.mob-knap-groen:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
}
html[data-theme="dark"] .mobile-nav a.mob-knap-groen {
  background: #fafafa;
  border-color: #fafafa;
  color: #0a0a0a;
}

@media (prefers-reduced-motion: reduce) {
  .mob-slor, .mobile-nav, .mob-punkter a .pil { transition: none; }
}
@media (min-width: 861px) {
  .mob-slor, .mobile-nav { display: none; }
}
