/* ============================================================
   MK Branding v2 — mørkt, rent sort/hvidt
   ============================================================ */

:root {
  --bg: #09090B;
  --line: #1e1e1e;
  --line-2: #27272a;
  --zinc-700: #3f3f46;
  --zinc-600: #52525b;
  --zinc-500: #71717a;
  --zinc-400: #a1a1aa;
  --zinc-300: #d4d4d8;
  --white: #ffffff;
  --r: 10px;
  --r-sm: 8px;
  --maxw: 1024px;
  --maxw-wide: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Signika", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Oswald", "Signika", sans-serif;
}

* { box-sizing: border-box; }

/* ── Bløde side-skift (View Transitions API) ─────────────── */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation: vt-out 0.26s var(--ease) both; }
  ::view-transition-new(root) { animation: vt-in 0.36s var(--ease) both; }
}
@keyframes vt-out { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; text-wrap: balance; }
p { margin: 0; }
::selection { background: rgba(255,255,255,0.22); color: #fff; }

* { scrollbar-width: thin; scrollbar-color: #3f3f46 #131316; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #131316; }
::-webkit-scrollbar-thumb { background: #3f3f46; border-radius: 3px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: var(--maxw-wide); margin: 0 auto; padding: 0 24px; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  font-size: 0.9rem; font-weight: 500;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease);
  white-space: nowrap;
}
.btn-white { background: var(--white); color: #18181b; }
.btn-white:hover { background: #e4e4e7; transform: translateY(-1px); }
.btn-outline { border-color: var(--zinc-700); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--zinc-500); background: rgba(255,255,255,0.04); transform: translateY(-1px); }
.btn-text { color: var(--zinc-300); font-size: 0.9rem; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
.btn-text:hover { color: var(--white); }
.btn-text .arrow { transition: transform 0.2s var(--ease); }
.btn-text:hover .arrow { transform: translateX(4px); }

/* ── NAVBAR ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  border-bottom: 1px solid var(--line-2);
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 9px; font-weight: 600; color: var(--white); font-size: 0.98rem; }
.nav-logo-mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--white); color: #09090b;
  display: grid; place-items: center;
  font-size: 0.66rem; font-weight: 800; letter-spacing: -0.03em;
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 0.9rem; color: var(--zinc-400); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta-wrap { display: flex; align-items: center; gap: 14px; }

.menu-btn { display: none; background: none; border: 0; cursor: pointer; width: 38px; height: 38px; padding: 8px; border-radius: 8px; }
.menu-btn span { display: block; height: 1.5px; background: var(--zinc-300); margin: 4px 0; border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s; }
.menu-btn.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu { display: none; border-top: 1px solid var(--line-2); background: rgba(9,9,11,0.97); padding: 16px 24px 22px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 11px 0; color: var(--zinc-300); font-size: 0.98rem; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 14px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 190px 0 120px;
  border-bottom: 1px solid var(--line);
}
.hero-glow {
  position: absolute; pointer-events: none;
  top: 0; left: 50%;
  transform: translate(-50%, -35%);
  width: 1100px; height: 700px; max-width: 150vw;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.055) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 10; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.82rem; color: var(--zinc-400);
  border: 1px solid var(--line-2); border-radius: 999px;
  padding: 6px 14px; margin-bottom: 28px;
}
.hero-kicker .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}
.hero h1 {
  font-size: clamp(2.25rem, 5.4vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--white);
  max-width: 20ch;
}
.hero-sub { margin-top: 24px; font-size: 1.125rem; color: var(--zinc-400); max-width: 58ch; }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { position: relative; background: var(--bg); padding: 110px 0; }
.section-tight { padding: 76px 0; }
.section + .section { border-top: 1px solid var(--line); }

.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 20px; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--white); }
.eyebrow span { color: var(--zinc-400); font-size: 0.875rem; }
.eyebrow .chev { color: var(--zinc-600); }

.section h2 {
  font-size: clamp(1.85rem, 4.4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  max-width: 22ch;
}
.section-lead { margin-top: 20px; color: var(--zinc-400); max-width: 62ch; font-size: 1.02rem; }
.section-lead.lead-lg { font-size: 1.2rem; line-height: 1.6; color: var(--zinc-300); max-width: 60ch; }
.section h2.wide { max-width: none; }
@media (min-width: 760px) { .section h2.wide { white-space: nowrap; } }
.section-lead strong { color: var(--white); font-weight: 500; }

/* Trust */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 40px; }
.trust-item { color: var(--zinc-300); font-weight: 500; font-size: 0.98rem; display: flex; align-items: center; gap: 11px; }
.trust-item svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--white); }

/* ── SERVICE-KORT (Marketing / Hjemmesider) ──────────────── */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
.service {
  position: relative; display: flex; flex-direction: column;
  min-height: 300px;
  border: 1px solid var(--line-2); border-radius: 16px;
  background: #0c0c0f;
  padding: 38px 34px 34px;
  transition: border-color 0.28s, transform 0.28s var(--ease), background 0.28s;
  overflow: hidden;
}
.service::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px circle at 50% -20%, rgba(255,255,255,0.06), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
a.service:hover { border-color: var(--zinc-600); transform: translateY(-5px); background: #0e0e12; }
a.service:hover::after { opacity: 1; }
.service-soon { opacity: 0.72; cursor: default; }
.service-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 500; color: var(--zinc-400); border: 1px solid var(--line-2); border-radius: 999px; padding: 6px 13px; }
.service-badge svg { width: 14px; height: 14px; color: var(--zinc-400); flex-shrink: 0; }
.service-label { font-size: 0.72rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--zinc-500); margin-bottom: 14px; }
.service h3 { font-size: 1.6rem; font-weight: 600; letter-spacing: -0.02em; color: var(--white); margin-bottom: 14px; }
.service p { color: var(--zinc-400); font-size: 1rem; flex: 1; }
.service-list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 0.94rem; color: var(--zinc-300); }
.service-list .tick { color: var(--white); font-weight: 700; flex-shrink: 0; }
.service-foot {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.service-price { font-size: 0.92rem; color: var(--zinc-400); }
.service-price strong { color: var(--white); font-weight: 600; font-size: 1.05rem; }
.service-go { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; color: var(--white); transition: gap 0.2s var(--ease); }
a.service:hover .service-go { gap: 13px; }

/* Inkluderet */
.incl-box { margin-top: 52px; border: 1px solid var(--line-2); border-radius: 16px; background: #111214; padding: 36px 34px; }
.incl-head .btn { padding: 9px 18px; font-size: 0.82rem; }
.incl-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px 32px; flex-wrap: wrap; margin-bottom: 30px; }
.incl-head h3 { font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.incl-head h3 em { font-style: normal; text-decoration: underline; text-underline-offset: 4px; }
.incl-head p { color: var(--zinc-400); font-size: 0.96rem; max-width: 58ch; }
.incl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px 34px; }
.incl-item { display: flex; align-items: center; gap: 11px; color: var(--zinc-300); font-size: 0.96rem; }
.incl-check { color: var(--white); font-weight: 700; flex-shrink: 0; }

/* Pris */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; align-items: stretch; }
.price-card .btn { margin-top: auto; }
.price-card {
  border: 1px solid var(--line-2); border-radius: 16px;
  background: #0c0c0f; padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.price-card:hover { border-color: var(--zinc-600); transform: translateY(-3px); }
.price-card.featured { border-color: var(--zinc-500); background: #101014; }
.price-badge {
  align-self: flex-start; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600; color: #09090b; background: var(--white);
  padding: 4px 11px; border-radius: 999px; margin-bottom: 16px;
}
.price-label { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--zinc-500); margin-bottom: 10px; }
.price-name { font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.price-main { font-size: 2.6rem; font-weight: 500; letter-spacing: -0.035em; color: var(--white); line-height: 1; }
.price-main span { font-size: 0.95rem; font-weight: 400; color: var(--zinc-500); letter-spacing: 0; }
.price-year { margin-top: 8px; font-size: 0.9rem; color: var(--zinc-500); }
.price-note { margin-top: 14px; font-size: 0.82rem; color: var(--zinc-500); padding-bottom: 22px; border-bottom: 1px solid var(--line); }
/* "(ekskl. moms)" under hver pris */
.price-year::after,
.bundle-now::after {
  content: "(ekskl. moms)";
  display: block;
  margin-top: 7px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--zinc-500);
}
/* Opt-kort ("Vælg det, der passer til dig"): inline efter prisen */
.opt-price::after {
  content: " (ekskl. moms)";
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--zinc-500);
  vertical-align: middle;
}
.price-feats { margin: 22px 0 28px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.feat-group-title { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--zinc-500); margin-bottom: 10px; }
.feat-group ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.price-feats li { display: flex; align-items: center; gap: 11px; font-size: 0.95rem; color: var(--zinc-300); }
.pf-yes { color: var(--white); font-weight: 700; flex-shrink: 0; }
.pf-no { color: var(--zinc-700); font-weight: 700; flex-shrink: 0; }
.price-feats li.off { color: var(--zinc-600); }
.price-card .btn { width: 100%; justify-content: center; }

/* FAQ */
.faq { margin-top: 46px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-size: 1.02rem; font-weight: 500; color: var(--white); transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--zinc-300); }
.faq-icon { color: var(--zinc-500); font-size: 1.3rem; line-height: 1; transition: transform 0.25s var(--ease); flex-shrink: 0; }
.faq details[open] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 0 24px; color: var(--zinc-400); font-size: 0.98rem; max-width: 70ch; }
.faq-a a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* CTA */
.cta { padding: 96px 0; background: var(--bg); border-top: 1px solid var(--line); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta h2 { font-size: clamp(1.7rem, 3.8vw, 42px); font-weight: 500; letter-spacing: -0.028em; color: var(--white); }
.cta-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Footer */
.footer { border-top: 1px solid var(--line-2); background: var(--bg); padding: 56px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--zinc-500); font-size: 0.92rem; margin-top: 12px; max-width: 38ch; }
.footer h4 { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--zinc-500); margin: 0 0 16px; font-weight: 600; }
.footer-col a, .footer-col span { display: block; color: var(--zinc-400); font-size: 0.92rem; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--zinc-500); font-size: 0.84rem;
}
.footer-bottom a:hover { color: var(--zinc-300); }

/* ── OM MIG (forside) ────────────────────────────────────── */
.about { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.about h2 { font-size: clamp(1.7rem, 3.6vw, 40px); font-weight: 500; letter-spacing: -0.028em; color: var(--white); }
.about h2 em { font-style: normal; color: var(--white); }
.about p { margin-top: 20px; color: var(--zinc-400); font-size: 1.05rem; max-width: 54ch; }
.about-links { margin-top: 30px; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.about-link {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 20px; border: 1px solid var(--line-2); border-radius: 12px; background: #0c0c0f;
  color: var(--white); font-size: 0.95rem; font-weight: 500;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.about-link:hover { border-color: var(--zinc-600); background: #101014; transform: translateY(-2px); }
.about-link .arrow { color: var(--zinc-500); transition: transform 0.2s var(--ease); }
.about-link:hover .arrow { transform: translateX(4px); color: var(--white); }
.pledge { border: 1px solid var(--line-2); border-radius: 16px; background: #0c0c0f; padding: 32px 30px; }
.pledge-quote { font-size: 1.15rem; line-height: 1.55; color: var(--white); font-weight: 500; }
.pledge-quote em { font-style: normal; text-decoration: underline; text-underline-offset: 4px; }
.pledge-by { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.pledge-name { display: block; font-family: 'Caveat', cursive; font-weight: 700; font-size: clamp(3rem, 6vw, 4.4rem); line-height: 0.8; color: var(--white); }
.pledge-role { display: block; margin-top: 12px; font-size: 0.85rem; color: var(--zinc-500); }

/* ── UNDERSIDE-HERO ──────────────────────────────────────── */
.subhero { position: relative; overflow: hidden; padding: 170px 0 70px; border-bottom: 1px solid var(--line); }
.backlink { display: inline-flex; align-items: center; gap: 8px; color: var(--zinc-500); font-size: 0.9rem; margin-bottom: 26px; transition: color 0.2s; }
.backlink:hover { color: var(--white); }
.subhero h1 { font-size: clamp(2.1rem, 5vw, 52px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.08; color: var(--white); }
.subhero-lead { margin-top: 20px; font-size: 1.12rem; color: var(--zinc-400); max-width: 60ch; }

/* ── PROSE (marketing-tekst) ─────────────────────────────── */
.prose { max-width: 64ch; }
.prose > p { color: var(--zinc-400); font-size: 1.05rem; line-height: 1.75; margin-bottom: 18px; }
.prose > p:first-child { color: var(--zinc-300); font-size: 1.2rem; line-height: 1.6; }
.prose h2 { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; color: var(--white); margin: 40px 0 12px; }
.prose strong, .prose em { color: var(--white); font-style: normal; font-weight: 600; }

/* ── OPTION-KORT (3 tiers) ───────────────────────────────── */
.opt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.opt-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
.opt {
  border: 1px solid var(--line-2); border-radius: 16px; background: #0c0c0f;
  padding: 30px 28px; display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.opt:hover { border-color: var(--zinc-600); transform: translateY(-4px); }
.opt.featured { border-color: var(--zinc-500); background: #101014; }
.opt-badge { align-self: flex-start; font-size: 0.66rem; letter-spacing: 0.07em; text-transform: uppercase; font-weight: 600; color: #09090b; background: var(--white); padding: 4px 11px; border-radius: 999px; margin-bottom: 15px; }
.opt-label { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--zinc-400); margin-bottom: 10px; }
.opt-label svg { width: 13px; height: 13px; color: var(--zinc-300); }
.opt-name { font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.opt-tagline { font-size: 0.96rem; line-height: 1.5; color: var(--zinc-200); margin-bottom: 18px; }
.opt-tagline strong { color: var(--white); font-weight: 600; }
.opt-price { font-size: 2rem; font-weight: 500; letter-spacing: -0.03em; color: var(--white); line-height: 1; margin-bottom: 6px; }
.opt-price span { font-size: 0.9rem; font-weight: 400; color: var(--zinc-500); letter-spacing: 0; }
.opt-price .from { font-size: 1rem; color: var(--zinc-500); font-weight: 400; }
.opt-desc { font-size: 0.9rem; color: var(--zinc-500); margin-bottom: 20px; }
.opt-feats { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.opt-feats li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--zinc-300); }
.opt-feats .tick { color: var(--white); font-weight: 700; flex-shrink: 0; }
.opt .btn { width: 100%; justify-content: center; margin-top: auto; }
.market-trust { display: inline-flex; align-items: center; gap: 11px; margin-top: 20px; padding: 12px 17px; border: 1px solid var(--line-2); border-radius: 10px; background: #0c0c0f; font-size: 0.92rem; line-height: 1.45; color: var(--zinc-300); }
.market-trust svg { width: 18px; height: 18px; color: var(--white); flex-shrink: 0; }
.market-trust strong { color: var(--white); font-weight: 600; }

/* ── PLUGINS ─────────────────────────────────────────────── */
.plugins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 34px; margin-top: 40px; }
.plugin { border-top: 1px solid var(--zinc-700); padding-top: 18px; }
.plugin h3 { font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.plugin p { font-size: 0.94rem; color: var(--zinc-400); line-height: 1.6; }
.plugin p em { color: var(--white); font-style: normal; font-weight: 500; }
.plugins-note { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px 30px; flex-wrap: wrap; }
.plugins-note p { color: var(--zinc-400); font-size: 0.96rem; }
.plugins-note strong { color: var(--white); }
.plugins-note a { color: var(--white); font-weight: 500; white-space: nowrap; text-decoration: underline; text-underline-offset: 3px; }

/* ── SOLUTION (afgrænset AI-løsning) ─────────────────────── */
.solution { margin-top: 48px; border: 1px solid var(--line-2); border-radius: 18px; background: #0c0c0f; padding: 40px 40px 36px; }
.solution + .solution { margin-top: 28px; }
.solution-head { max-width: 66ch; }
.solution-tag { display: inline-block; font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--zinc-400); border: 1px solid var(--line-2); border-radius: 999px; padding: 5px 13px; margin-bottom: 18px; }
.solution-head h3 { font-size: 1.7rem; font-weight: 600; letter-spacing: -0.02em; color: var(--white); margin-bottom: 12px; }
.solution-head > p { color: var(--zinc-400); font-size: 1.02rem; line-height: 1.65; }
.solution-head > p em { color: var(--white); font-style: normal; font-weight: 500; }
.solution-head > p strong { color: var(--white); font-weight: 600; }
.solution-perks { display: flex; flex-wrap: wrap; gap: 10px 12px; margin-top: 24px; }
.solution-perks span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 500; color: var(--zinc-300); border: 1px solid var(--line-2); border-radius: 999px; padding: 7px 15px; }
.solution-perks span::before { content: "✓"; color: var(--white); font-weight: 700; font-size: 0.8rem; }
.solution-top { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: 52px; align-items: start; }
.solution-top .solution-head { max-width: none; }
.demo-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--zinc-500); margin-bottom: 14px; }

/* left column — metrics + live AI status */
.solution-metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 28px; border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; }
.solution-metrics > div { padding: 16px 12px; text-align: center; }
.solution-metrics > div + div { border-left: 1px solid var(--line-2); }
.solution-metrics dt { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--white); letter-spacing: -0.01em; }
.solution-metrics dd { margin: 5px 0 0; font-size: 0.75rem; color: var(--zinc-400); line-height: 1.35; }
.ai-status { margin-top: 20px; border: 1px solid var(--line-2); border-radius: 12px; background: #0a0a0c; padding: 18px 20px; }
.ai-status-head { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 600; color: var(--white); margin-bottom: 15px; }
.ai-status-head .pulse { width: 8px; height: 8px; border-radius: 999px; background: var(--white); box-shadow: 0 0 0 0 rgba(255,255,255,.45); animation: pulseDot 2.4s ease-out infinite; }
.ai-status ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ai-status li { display: flex; align-items: center; gap: 11px; font-size: 0.88rem; color: var(--zinc-300); }
.ai-status li svg { width: 15px; height: 15px; color: var(--white); flex-shrink: 0; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.4); } 70% { box-shadow: 0 0 0 7px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }

.demo-visual { position: relative; }
.demo-visual::before { content: ""; position: absolute; inset: -10% -8% -4%; background: radial-gradient(ellipse 60% 52% at 62% 42%, rgba(255,255,255,0.07), rgba(255,255,255,0) 72%); z-index: 0; pointer-events: none; }
.demo-visual > * { position: relative; z-index: 1; }
.solution .plugins-grid { margin-top: 40px; padding-top: 38px; border-top: 1px solid var(--line-2); }
.plugin.plugin-hi { border-top-color: var(--white); }
.plugin.plugin-hi h3 { display: inline-flex; align-items: baseline; gap: 9px; }
.plugin.plugin-hi h3::after { content: "Vigtigt"; font-family: var(--font-display); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #09090B; background: var(--white); border-radius: 4px; padding: 2px 7px; transform: translateY(-1px); }
.plugin-ico { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1px solid var(--line-2); border-radius: 10px; margin-bottom: 15px; }
.plugin-ico svg { width: 19px; height: 19px; color: var(--zinc-200); }
.plugin.plugin-hi .plugin-ico { border-color: var(--zinc-500); background: var(--white); }
.plugin.plugin-hi .plugin-ico svg { color: #09090B; }
.solution-foot { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line-2); }
.solution-foot h4 { font-size: 1.02rem; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.solution-foot ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 30px; list-style: none; }
.solution-foot li { color: var(--zinc-400); font-size: 0.92rem; line-height: 1.6; padding-left: 18px; position: relative; }
.solution-foot li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 999px; background: var(--zinc-500); }
.solution-foot strong { color: var(--white); font-weight: 600; }

/* ── CHAT-DEMO (eksempel på en samtale) ──────────────────── */
.chat-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chat-tab { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font); font-size: 0.84rem; font-weight: 500; color: var(--zinc-400); background: transparent; border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 15px; cursor: pointer; transition: color 0.18s, border-color 0.18s, background 0.18s; }
.chat-tab svg { width: 15px; height: 15px; flex-shrink: 0; }
.chat-tab:hover { color: var(--white); border-color: var(--zinc-500); }
.chat-tab.is-active { background: var(--white); color: #09090B; border-color: var(--white); font-weight: 600; }

.chat-demo { border: 1px solid var(--line-2); border-radius: 18px; background: #0a0a0c; overflow: hidden; box-shadow: 0 50px 90px -50px rgba(0,0,0,0.95); }
.chat-demo-bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: #111214; }
.chat-dot { width: 9px; height: 9px; border-radius: 999px; background: var(--zinc-700); }
.chat-demo-title { margin-left: 8px; display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.04em; color: var(--zinc-200); }
.bar-avatar { width: 22px; height: 22px; border-radius: 999px; background: var(--white); color: #09090B; font-family: var(--font-display); font-size: 0.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.chat-online { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 0.72rem; color: var(--zinc-400); }
.chat-online .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--white); box-shadow: 0 0 0 0 rgba(255,255,255,.45); animation: pulseDot 2.4s ease-out infinite; }

.chat-demo-body { padding: 22px 20px; display: flex; flex-direction: column; gap: 16px; min-height: 348px; max-height: 452px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.chat-demo-body::-webkit-scrollbar { width: 8px; }
.chat-demo-body::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; }
.chat-demo-body::-webkit-scrollbar-track { background: transparent; }
.chat-demo-body.fade { animation: chatFade 0.3s ease; }
@keyframes chatFade { from { opacity: 0; } to { opacity: 1; } }

.chat-row { display: flex; gap: 10px; align-items: flex-end; }
.chat-row.user { justify-content: flex-end; }
.chat-row.bot { justify-content: flex-start; }
.chat-avatar { flex-shrink: 0; width: 30px; height: 30px; border-radius: 999px; background: var(--white); color: #09090B; font-family: var(--font-display); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.02em; display: flex; align-items: center; justify-content: center; }
.chat-col { display: flex; flex-direction: column; max-width: 80%; }
.chat-row.user .chat-col { align-items: flex-end; }
.chat-bubble { padding: 12px 16px; border-radius: 16px; font-size: 0.95rem; line-height: 1.55; }
.chat-row.user .chat-bubble { background: var(--white); color: #09090B; font-weight: 500; border-bottom-right-radius: 5px; }
.chat-row.bot .chat-bubble { background: #17171b; color: var(--zinc-200); border: 1px solid var(--line-2); border-bottom-left-radius: 5px; }
.chat-row.bot .chat-bubble strong { color: var(--white); font-weight: 700; }
.chat-time { margin-top: 5px; padding: 0 4px; font-size: 0.7rem; color: var(--zinc-600); }

.chat-bubble.chat-typing { display: inline-flex; gap: 4px; align-items: center; padding: 15px 16px; }
.chat-typing span { width: 7px; height: 7px; border-radius: 999px; background: var(--zinc-500); animation: typingBounce 1.2s ease-in-out infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.18s; }
.chat-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingBounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-5px); opacity: 1; } }

.chat-foot { padding: 11px 18px; border-top: 1px solid var(--line); background: #0d0d10; font-size: 0.72rem; color: var(--zinc-500); text-align: center; }
.chat-demo-cta { margin-top: 20px; }
.chat-demo-cta .btn { padding: 14px 26px; font-size: 0.95rem; }
.chat-demo-cta .btn svg { width: 16px; height: 16px; margin-left: 2px; transition: transform 0.2s ease; }
.chat-demo-cta .btn:hover svg { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .chat-demo-body.fade { animation: none; }
  .chat-online .dot, .ai-status-head .pulse { animation: none; }
  .chat-typing span { animation: none; opacity: 0.7; }
  .chat-demo-cta .btn:hover svg { transform: none; }
}

/* ── BUNDLE (marketing pakke) ────────────────────────────── */
.bundle { margin-top: 20px; border: 1px solid var(--line-2); border-radius: 18px; background: #0c0c0f; overflow: hidden; }
.bundle-top { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; padding: 40px; align-items: center; }
.bundle-opts { display: flex; flex-direction: column; gap: 12px; }
.bundle-opt { border: 1px solid var(--line-2); border-radius: 12px; padding: 22px; display: flex; justify-content: space-between; align-items: center; gap: 18px; transition: border-color 0.2s; }
.bundle-opt.featured { border-color: var(--zinc-500); }
.bundle-opt-label { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--zinc-500); margin-bottom: 8px; }
.bundle-opt-feats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.bundle-opt-feats li { font-size: 0.88rem; color: var(--zinc-300); }
.bundle-opt-pricing { text-align: right; flex-shrink: 0; }
.bundle-was { font-size: 0.82rem; color: var(--zinc-600); text-decoration: line-through; }
.bundle-now { font-size: 1.6rem; font-weight: 500; color: var(--white); letter-spacing: -0.02em; }
.bundle-now span { font-size: 0.82rem; color: var(--zinc-500); font-weight: 400; }
.bundle-save { font-size: 0.82rem; color: var(--zinc-400); margin-top: 4px; }
.bundle-right h3 { font-size: 1.5rem; font-weight: 500; letter-spacing: -0.02em; color: var(--white); margin-bottom: 14px; }
.bundle-right p { color: var(--zinc-400); font-size: 0.98rem; margin-bottom: 22px; }
.bundle-foot { padding: 16px 40px; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--zinc-500); }

.notice { border: 1px solid var(--line-2); border-radius: 12px; background: #0c0c0f; padding: 16px 20px; margin-top: 30px; font-size: 0.9rem; color: var(--zinc-400); }
.notice strong { color: var(--white); }

/* ── KONTAKT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; margin-top: 44px; align-items: start; }
.contact-info { display: flex; flex-direction: column; }
.ci-row { display: flex; flex-direction: column; gap: 5px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.ci-row:first-child { padding-top: 0; }
.ci-k { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--zinc-500); }
.ci-v { font-size: 1.05rem; color: var(--white); font-weight: 500; }
.ci-v a:hover { color: var(--zinc-300); }
.ci-v.small { font-size: 0.94rem; font-weight: 400; color: var(--zinc-400); line-height: 1.6; }
.contact-socials { margin-top: 24px; display: flex; gap: 12px; }
.contact-socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 10px; color: var(--zinc-300); transition: border-color 0.2s, color 0.2s, transform 0.2s var(--ease); }
.contact-socials a:hover { border-color: var(--zinc-500); color: var(--white); transform: translateY(-2px); }
.contact-socials svg { width: 18px; height: 18px; }

.form-card { border: 1px solid var(--line-2); border-radius: 18px; background: #0c0c0f; padding: 34px 32px; }
.form-status { display: none; padding: 13px 16px; border-radius: 10px; margin-bottom: 18px; font-size: 0.92rem; }
.form-status.success { display: block; background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid var(--zinc-600); }
.form-status.error { display: block; background: transparent; color: var(--white); border: 1px solid var(--zinc-500); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; color: var(--zinc-300); margin-bottom: 8px; font-weight: 500; }
.field .req { color: var(--zinc-500); }
.field input, .field textarea {
  width: 100%; background: #09090b; border: 1px solid var(--line-2); border-radius: 10px;
  padding: 13px 15px; color: var(--white); font-family: var(--font); font-size: 0.98rem;
  transition: border-color 0.2s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--zinc-600); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--zinc-400); }
.field textarea { min-height: 130px; }
.field input.input-error, .field textarea.input-error { border-color: #a1a1aa; }
.field-error { color: var(--zinc-400); font-size: 0.82rem; margin-top: 6px; min-height: 1em; }
.form-req-note { font-size: 0.82rem; color: var(--zinc-500); margin-bottom: 16px; }
.form-card button[type="submit"] { width: 100%; justify-content: center; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── BLOG-OVERSIGT ───────────────────────────────────────── */
.blog-intro { max-width: 60ch; font-size: 1.1rem; color: var(--zinc-400); line-height: 1.7; margin: 16px 0 8px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.blog-card { display: flex; flex-direction: column; border: 1px solid var(--line-2); border-radius: 16px; background: #0c0c0f; padding: 30px 28px; text-decoration: none; color: inherit; transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s; }
.blog-card:hover { border-color: var(--zinc-600); transform: translateY(-4px); background: #0e0e12; }
.blog-card-cat { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--zinc-500); margin-bottom: 12px; }
.blog-card-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--white); line-height: 1.2; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 0.98rem; color: var(--zinc-400); line-height: 1.6; flex: 1; margin-bottom: 22px; }
.blog-card-foot { display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; color: var(--zinc-500); }
.blog-card-more { font-weight: 500; color: var(--white); }
.blog-soon { margin-top: 26px; font-size: 0.96rem; color: var(--zinc-400); }
.blog-soon a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 720px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── ARTIKEL ─────────────────────────────────────────────── */
.article { max-width: 720px; margin: 0 auto; padding: clamp(140px, 16vw, 168px) 24px 84px; }
.article-back { display: inline-flex; align-items: center; gap: 7px; color: var(--zinc-500); font-size: 0.9rem; margin-bottom: 22px; transition: color 0.2s; }
.article-back:hover { color: var(--white); }
.article-cat { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--zinc-400); }
.article h1 { font-family: var(--font-display); font-size: clamp(2rem, 4.6vw, 3rem); font-weight: 600; line-height: 1.1; color: var(--white); margin: 12px 0 16px; text-wrap: balance; }
.article-meta { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.86rem; color: var(--zinc-500); padding-bottom: 24px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.article-lede { font-size: 1.22rem; line-height: 1.55; color: var(--white); font-weight: 500; margin-bottom: 26px; }
.article h2 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; color: var(--white); margin: 42px 0 12px; }
.article > p { font-size: 1.05rem; line-height: 1.75; color: var(--zinc-400); margin-bottom: 18px; }
.article ul { margin: 0 0 20px; padding-left: 22px; }
.article li { font-size: 1.05rem; line-height: 1.7; color: var(--zinc-400); margin-bottom: 8px; }
.article li::marker { color: var(--zinc-600); }
.article strong { color: var(--white); }
.article a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.article em { color: var(--white); font-style: normal; font-weight: 600; }
.article-note { background: #0c0c0f; border: 1px solid var(--line-2); border-left: 3px solid var(--zinc-500); border-radius: 10px; padding: 16px 20px; margin: 24px 0; }
.article-note p { margin: 0; color: var(--zinc-300); font-size: 1rem; }
.article-cta { margin-top: 48px; padding: 30px 32px; background: #0c0c0f; border: 1px solid var(--line-2); border-radius: 18px; }
.article-cta h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--white); margin: 0 0 8px; }
.article-cta p { color: var(--zinc-400); margin: 0 0 20px; }
.article-cta .cta-btn { display: inline-block; background: var(--white); color: #18181b; font-weight: 500; padding: 12px 24px; border-radius: 8px; text-decoration: none; transition: background 0.2s, transform 0.2s var(--ease); }
.article-cta .cta-btn:hover { background: #e4e4e7; transform: translateY(-1px); }

/* ── Typografi: Oswald (overskrifter) + Signika (brødtekst) ── */
h1, h2, h3,
.hero h1, .subhero h1,
.section h2, .cta h2, .about h2, .prose h2,
.service h3, .incl-head h3, .plugin h3, .bundle-right h3,
.opt-name, .price-name {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  letter-spacing: 0;
}

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .services, .price-grid, .opt-grid, .opt-grid.two { grid-template-columns: 1fr; }
  .incl-grid, .plugins-grid, .solution-foot ul { grid-template-columns: repeat(2, 1fr); }
  .solution { padding: 32px 28px 30px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .demo-split, .solution-top { grid-template-columns: 1fr; gap: 34px; }
  .chat-demo { max-width: 520px; margin: 0 auto; }
  .chat-tabs, .chat-demo-cta { max-width: 520px; margin-left: auto; margin-right: auto; }
  .bundle-top { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .bundle-foot { padding: 16px 28px; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta-wrap .btn { display: none; }
  .menu-btn { display: block; }
  .hero { padding: 150px 0 88px; }
  .section { padding: 78px 0; }
}
@media (max-width: 560px) {
  .incl-grid, .plugins-grid, .solution-foot ul { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .service { padding: 30px 24px 26px; }
  .hero-actions { gap: 14px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .bundle-opt { flex-direction: column; align-items: flex-start; gap: 14px; }
  .bundle-opt-pricing { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  * { transition-duration: 0.01ms !important; }
}
