@import url("/assets/fonts/fonts.css");

/* ============================================================
   Bogføring & Regnskab — "The Confident Accountant"
   Rolig autoritet: dyb blå + hvid luft, Exo 2 + Nunito,
   1px-kanter, 8px-radius, pill-CTA'er, ingen tunge skygger.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* flader */
  --bg:        #ffffff;
  --bg-2:      #f8f8f8;
  --paper:     #ffffff;

  /* tekst */
  --ink:       #0e2a40;   /* overskrifter */
  --text:      #383838;   /* brød */
  --muted:     #777777;   /* labels, breadcrumbs */

  /* brand — én blå familie */
  --blue:      #084A79;   /* primær: CTA, aktiv nav, ikoner */
  --navy:      #062857;   /* footer, hover på blå, hero-accent */
  --mid:       #3091D1;   /* links, chips, hover-kanter */
  --blue-wash: #EBF3F9;   /* blød blå flade til ikoner/chips */

  /* linjer */
  --line:      #E1E1E1;

  /* radius — stramt */
  --r:    8px;
  --r-pill: 999px;

  /* skygge — kun én, ultralet */
  --shadow-soft: 0 10px 30px -18px rgba(8,74,121,.25);

  /* typografi */
  --step--1: clamp(.86rem, .83rem + .12vw, .92rem);
  --step-0:  clamp(1.02rem, 1rem + .1vw, 1.0625rem);   /* 17px-ish */
  --step-1:  clamp(1.15rem, 1.08rem + .3vw, 1.3rem);
  --step-2:  clamp(1.45rem, 1.3rem + .6vw, 1.8rem);
  --step-3:  clamp(1.9rem, 1.55rem + 1.4vw, 2.6rem);
  --step-4:  clamp(2.4rem, 1.8rem + 2.6vw, 3.5rem);

  /* layout */
  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(60px, 8vw, 110px);

  --ease: cubic-bezier(.25, .6, .3, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture, video { display: block; max-width: 100%; }
img, video { height: auto; } /* width/height-attrs må ikke strække ved max-width-skalering */
a { color: var(--mid); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* ---------- Overskrifter ---------- */
h1, h2, h3, h4 {
  font-family: "Exo 2", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -.015em;
  font-weight: 700;
}
h1 { font-size: var(--step-4); font-weight: 800; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }

.mono { font-family: ui-monospace, "Cascadia Mono", Consolas, monospace; font-size: .92em; letter-spacing: .01em; }

/* ---------- Utilities ---------- */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.skip { position: absolute; left: -9999px; top: 0; background: var(--blue); color: #fff; padding: 10px 18px; z-index: 999; border-radius: 0 0 var(--r) 0; }
.skip:focus { left: 0; }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Exo 2", sans-serif; font-weight: 600; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--blue); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 26px; height: 2px; background: var(--blue); }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head .lede { margin-top: 14px; color: var(--text); font-size: var(--step-1); line-height: 1.55; }

/* ---------- Knapper — pill ---------- */
.btn {
  --btn-bg: var(--blue); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .85em 1.7em; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  font-family: "Nunito", sans-serif; font-weight: 700; font-size: .98rem;
  transition: background .15s ease-in, border-color .15s ease-in, color .15s ease-in;
  transform: translateZ(0); /* eget kompositions-lag: undgår stale raster-søm når forældre reveal-animeres */
}
.btn:hover { --btn-bg: var(--navy); text-decoration: none; }
.btn svg { width: 17px; height: 17px; }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--blue); --btn-bd: var(--blue); }
.btn--outline:hover { --btn-bg: var(--blue); --btn-fg: #fff; --btn-bd: var(--blue); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--blue); --btn-bd: transparent; }
.btn--light:hover { --btn-bg: var(--blue-wash); --btn-fg: var(--navy); }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); }
.btn--ghost-light:hover { --btn-bg: rgba(255,255,255,.12); --btn-bd: #fff; }
.btn--lg { padding: 1em 2.1em; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 700; color: var(--blue); font-size: .95rem;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .18s var(--ease); }
a:hover .link-arrow svg, .link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header — hvid, sticky, tynd linje ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -20px rgba(8,74,121,.35); }
.nav {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px;
  min-height: 78px; padding-block: 10px;
}
.brand { display: inline-flex; align-items: center; }
.brand:hover { text-decoration: none; }
.brand__logo { height: 46px; width: auto; }

nav[aria-label="Hovedmenu"] { justify-self: center; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links > li > a,
.nav__trigger {
  display: inline-flex; align-items: center; gap: .35em;
  padding: 9px 13px; border-radius: var(--r);
  font-weight: 600; font-size: .95rem; color: var(--ink);
  white-space: nowrap;
  transition: color .15s, background .15s;
}
.nav__links > li > a:hover,
.nav__trigger:hover { color: var(--blue); background: var(--blue-wash); text-decoration: none; }
.nav__links > li > a[aria-current="page"] { color: var(--blue); box-shadow: inset 0 -2px 0 var(--blue); border-radius: var(--r) var(--r) 0 0; }
.nav__trigger svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.has-menu[data-open="true"] .nav__trigger svg { transform: rotate(180deg); }

/* dropdown — kant, ikke skygge-tung */
.has-menu { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  width: min(420px, 86vw);
  display: grid; grid-template-columns: 1fr; gap: 2px;
  padding: 10px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.has-menu:hover .dropdown,
.has-menu[data-open="true"] .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 6px; color: var(--ink);
  transition: background .12s;
}
.dropdown a:hover { background: var(--bg-2); text-decoration: none; }
.dropdown .ico {
  width: 34px; height: 34px; flex: none; border-radius: 6px;
  display: grid; place-items: center;
  background: var(--blue-wash); color: var(--blue);
}
.dropdown .ico svg { width: 18px; height: 18px; }
.dropdown b { display: flex; flex-direction: column; font-weight: 700; font-size: .93rem; }
.dropdown b span { font-weight: 400; font-size: .78rem; color: var(--muted); margin-top: 1px; }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; color: var(--ink); font-size: .95rem; white-space: nowrap;
}
.nav__phone:hover { color: var(--blue); text-decoration: none; }
.nav__phone svg { width: 17px; height: 17px; color: var(--blue); }
.nav__cta .btn { padding: .68em 1.4em; }

.burger { display: none; width: 42px; height: 42px; border-radius: var(--r); border: 1px solid var(--line); position: relative; background: var(--bg-2); }
.burger span, .burger span::before, .burger span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 17px; height: 2px;
  background: var(--ink); border-radius: 2px; transform: translate(-50%, -50%);
  transition: transform .22s var(--ease), opacity .18s;
}
.burger span::before { transform: translate(-50%, -6px); }
.burger span::after { transform: translate(-50%, 4px); }
.menu-open .burger span { background: transparent; }
.menu-open .burger span::before { transform: translate(-50%, -50%) rotate(45deg); }
.menu-open .burger span::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- Hero — split på hvid, offset-blok bag foto ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  display: flex; align-items: center;
  min-height: clamp(520px, 62vh, 640px);
  padding-block: clamp(64px, 8vw, 110px);
  background:
    radial-gradient(90% 150% at 82% -20%, rgba(20,105,160,.55) 0%, transparent 60%),
    radial-gradient(70% 120% at 0% 110%, rgba(10,74,125,.5) 0%, transparent 55%),
    linear-gradient(160deg, #072F5F 0%, #083D66 52%, #052248 100%);
}
.hero::before {
  /* fint arkitektonisk grid — roligt, ikke prikket */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 100%);
}
.hero::after {
  /* stor ring bag kortet */
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 640px; height: 640px; right: -60px; top: -200px;
  border: 1.5px solid rgba(127,196,238,.28); border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(127,196,238,.045);
}
.hero > .container { position: relative; z-index: 1; width: 100%; }
.hero__inner { max-width: 660px; }

/* mørk hero: typografi og knapper */
.hero .eyebrow { color: #9CCBEC; }
.hero .eyebrow::before { background: #3091D1; }
.hero h1 { color: #fff; }
.hero h1 .u { color: #7FC4EE; }
.hero__lede { color: rgba(255,255,255,.86); }
.hero .btn { transition: background .15s ease-in, border-color .15s ease-in, color .15s ease-in, transform .18s var(--ease); }
.hero .btn:hover { transform: translateY(-2px); }

/* hero-grid: tekst + rapport-kort */
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.hero__card {
  width: min(430px, 100%); justify-self: end;
  background: #fff; border-radius: 12px; padding: 26px 26px 20px;
  box-shadow: 0 40px 90px -35px rgba(2,16,40,.75), 0 12px 32px -18px rgba(2,16,40,.5);
}
.hc-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.hc-title { font-family: "Exo 2", sans-serif; font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.hc-badge {
  display: inline-flex; gap: 6px; align-items: center;
  background: var(--blue-wash); color: var(--blue);
  font-size: .76rem; font-weight: 700; letter-spacing: .04em;
  padding: 5px 12px; border-radius: var(--r-pill); white-space: nowrap;
}
.hc-badge svg { width: 13px; height: 13px; }
.hc-chart { display: flex; gap: 9px; align-items: flex-end; height: 108px; margin: 20px 2px 0; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.hc-chart i { flex: 1; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, #A9CDE7, #C9DFF0); }
.hc-chart i.hi { background: linear-gradient(180deg, #3091D1, #084A79); }
.hc-rows { margin-top: 14px; display: grid; gap: 11px; }
.hc-rows li { display: flex; align-items: baseline; gap: 12px; font-size: .88rem; color: var(--muted); }
.hc-rows b { color: var(--ink); font-size: .95rem; margin-left: auto; white-space: nowrap; }
.hc-rows .delta { font-weight: 700; font-size: .76rem; color: var(--blue); background: var(--blue-wash); border-radius: var(--r-pill); padding: 2px 9px; white-space: nowrap; }
.hc-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; gap: 9px; align-items: center; font-size: .82rem; color: var(--muted); }
.hc-foot svg { width: 15px; height: 15px; color: var(--blue); flex: none; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { justify-self: start; }
}

/* mini trust-punkter under CTA'erne */
.hero__mini { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 28px; }
.hero__mini span { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.78); }
.hero__mini svg { width: 15px; height: 15px; color: #7FC4EE; flex: none; }

.hero__lede { margin-top: 22px; font-size: var(--step-1); line-height: 1.6; max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__note { display: flex; align-items: center; gap: 8px; margin-top: 22px; font-size: .9rem; color: var(--muted); }
.hero__note svg { width: 16px; height: 16px; color: var(--blue); flex: none; }

.hero__media { position: relative; display: flex; }
.hero__media::before {
  /* tynd offset-kontur — let og elegant på den mørke flade */
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--r); z-index: 0;
}
.hero__media { max-width: 430px; justify-self: end; }
.hero__media img {
  position: relative; z-index: 1;
  width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r);
  border: 4px solid rgba(255,255,255,.95);
  box-shadow: 0 34px 70px -30px rgba(2,16,40,.65);
}
.hero__chip {
  position: absolute; left: -18px; bottom: 26px; z-index: 2;
  background: #fff;
  border-radius: var(--r);
  box-shadow: 0 20px 50px -18px rgba(2,16,40,.55);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.hero__badge {
  position: absolute; right: -14px; top: 22px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border-radius: var(--r-pill);
  box-shadow: 0 16px 40px -16px rgba(2,16,40,.55);
  padding: 9px 16px; font-size: .85rem; font-weight: 700; color: var(--ink);
}
.hero__badge svg { width: 16px; height: 16px; color: var(--blue); }
@media (max-width: 640px) { .hero__badge { right: 8px; } }
.hero__chip .ico { width: 38px; height: 38px; border-radius: 6px; background: var(--blue-wash); color: var(--blue); display: grid; place-items: center; flex: none; }
.hero__chip .ico svg { width: 20px; height: 20px; }
.hero__chip b { display: block; font-family: "Exo 2", sans-serif; font-size: 1.05rem; color: var(--ink); }
.hero__chip span { display: block; font-size: .78rem; color: var(--muted); }

/* ---------- Tillidsstrip ---------- */
.truststrip { border-block: 1px solid var(--line); background: #fff; }
.truststrip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding-block: 22px;
}
.tItem { display: flex; align-items: center; gap: 12px; justify-content: center; font-size: .92rem; color: var(--text); font-weight: 600; white-space: nowrap; }
.tItem svg { width: 20px; height: 20px; color: var(--blue); flex: none; }

/* ---------- Servicekort ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.scard {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 24px 22px; color: inherit; overflow: hidden;
  transition: border-color .18s var(--ease);
}
.scard::before {
  /* accentlinje der klipper ind fra venstre ved hover */
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--blue); transform: scaleY(0); transform-origin: top;
  transition: transform .22s var(--ease);
}
.scard:hover { border-color: var(--mid); text-decoration: none; }
.scard:hover::before { transform: scaleY(1); }
.scard__ico { width: 44px; height: 44px; border-radius: 6px; background: var(--blue-wash); color: var(--blue); display: grid; place-items: center; }
.scard__ico svg { width: 22px; height: 22px; }
.scard h3 { font-size: 1.15rem; margin-top: 4px; }
.scard p { font-size: .93rem; color: var(--text); flex-grow: 1; }
.scard .link-arrow { margin-top: 6px; }

/* ---------- Prispakker ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pcard {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 28px;
}
.pcard--featured { border: 2px solid var(--blue); position: relative; }
.pcard__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: var(--r-pill); white-space: nowrap;
}
.pcard h3 { font-size: 1.2rem; }
.pcard .pdesc { font-size: .9rem; color: var(--muted); margin-top: 4px; }
.pcard .price { margin-top: 18px; font-family: "Exo 2", sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--ink); }
.pcard .price span { font-size: .95rem; font-weight: 600; color: var(--muted); font-family: "Nunito", sans-serif; }
.pcard ul { margin: 20px 0 24px; display: grid; gap: 9px; flex-grow: 1; }
.pcard li { position: relative; padding-left: 26px; font-size: .93rem; }
.pcard li svg { position: absolute; left: 0; top: 4px; width: 16px; height: 16px; color: var(--blue); }
.pcard .pnote { text-align: center; margin-top: 10px; font-size: .8rem; color: var(--muted); }

/* ---------- Proces — store tal ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 4vw, 44px); counter-reset: step; }
.step { position: relative; padding-top: 10px; }
.step__n {
  font-family: "Exo 2", sans-serif; font-weight: 800; font-size: clamp(3.4rem, 6vw, 4.6rem);
  line-height: 1; color: var(--blue); opacity: .16; display: block;
}
.step h3 { margin-top: -20px; font-size: 1.15rem; }
.step p { margin-top: 8px; font-size: .95rem; }

/* ---------- Split (billede + indhold) ---------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.split > div:not(.split__media) { align-self: center; }
.split__media { position: relative; display: flex; }
.split__media::before {
  content: ""; position: absolute; inset: 20px -20px -20px 20px;
  background: var(--blue-wash); border-radius: var(--r); z-index: -1;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); border: 1px solid var(--line); }
.feature-list { display: grid; gap: 16px; margin-top: 26px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list .tick {
  width: 26px; height: 26px; flex: none; margin-top: 2px;
  border-radius: 50%; background: var(--blue-wash); color: var(--blue);
  display: grid; place-items: center;
}
.feature-list .tick svg { width: 14px; height: 14px; }
.feature-list b { display: block; color: var(--ink); font-weight: 700; font-size: 1rem; }
.feature-list span { display: block; color: var(--text); font-size: .92rem; margin-top: 1px; }

/* ---------- Stats ---------- */
.statrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: center; }
.statrow .stat { padding: 26px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); }
.statrow .stat b { display: block; font-family: "Exo 2", sans-serif; font-weight: 800; font-size: 2.1rem; color: var(--blue); }
.statrow .stat span { display: block; margin-top: 4px; font-size: .9rem; color: var(--muted); }

/* ---------- Blog-teasere ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bcard {
  display: flex; flex-direction: column; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px; color: inherit;
  transition: border-color .18s var(--ease);
}
.bcard:hover { border-color: var(--mid); text-decoration: none; }
.bcard .tag { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.bcard h3 { font-size: 1.08rem; line-height: 1.3; }
.bcard p { font-size: .9rem; color: var(--text); flex-grow: 1; }

/* ---------- FAQ — smal, enkelt kolonne ---------- */
.faq { max-width: 760px; margin-inline: auto; display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 17px 20px; font-family: "Exo 2", sans-serif; font-weight: 600; font-size: 1rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq .pm { position: relative; width: 20px; height: 20px; flex: none; }
.faq .pm::before, .faq .pm::after { content: ""; position: absolute; background: var(--blue); left: 50%; top: 50%; transform: translate(-50%, -50%); transition: transform .2s var(--ease); }
.faq .pm::before { width: 12px; height: 2px; }
.faq .pm::after { width: 2px; height: 12px; }
.faq details[open] .pm::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details p { padding: 0 20px 18px; font-size: .95rem; }
.faq details[open] summary { border-bottom: 1px solid var(--line); margin-bottom: 12px; }

/* ---------- CTA-bånd — flad blå ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 130% at 85% 0%, rgba(48,145,209,.35) 0%, transparent 55%),
    linear-gradient(135deg, #0B5C95 0%, #084A79 48%, #062857 100%);
  color: #fff; text-align: center;
  padding-block: clamp(56px, 7vw, 96px);
}
.cta-band::before {
  /* diskret prik-tekstur */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1.4px);
  background-size: 22px 22px; opacity: .55;
}
.cta-band::after {
  /* stor blød cirkel-kontur — liv uden støj */
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 420px; height: 420px; left: -140px; bottom: -200px;
  border: 22px solid rgba(48,145,209,.28); border-radius: 50%;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 24ch; margin-inline: auto; }
.cta-band p { max-width: 54ch; margin: 16px auto 0; color: rgba(255,255,255,.85); font-size: var(--step-1); }
.cta-band .eyebrow { color: rgba(255,255,255,.85); }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: rgba(255,255,255,.6); }
.cta-band .hero__actions { justify-content: center; margin-top: 30px; }

/* ---------- Footer — dyb navy ---------- */
.site-footer { background: var(--navy); color: #B9C7DA; padding-block: clamp(48px, 6vw, 76px) 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 38px; }
.footer-brand p { margin-top: 16px; font-size: .92rem; max-width: 30rem; }
.footer-brand__logo { height: 44px; width: auto; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; font-family: "Exo 2", sans-serif; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #B9C7DA; font-size: .93rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 12px; font-size: .93rem; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--mid); flex: none; margin-top: 3px; }
.footer-contact a { color: #B9C7DA; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .84rem; color: #8FA3BE;
}
.footer-bottom a { color: #8FA3BE; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Page-hero (undersider) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(44px, 6vw, 76px);
  background:
    radial-gradient(60% 130% at 88% 0%, rgba(48,145,209,.16) 0%, transparent 55%),
    linear-gradient(135deg, #EFF6FA 0%, #E7F0F7 55%, #F4F8FB 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  /* diskret prik-tekstur i brandblå */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(8,74,121,.06) 1px, transparent 1.4px);
  background-size: 24px 24px;
}
.page-hero::after {
  /* blød cirkel-kontur i højre side — skabelonens geometriske motiv */
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 380px; height: 380px; right: -110px; top: -120px;
  border: 22px solid rgba(48,145,209,.13); border-radius: 50%;
}
.page-hero > .container { position: relative; z-index: 1; }
.crumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .84rem; color: var(--muted); margin-bottom: 16px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--blue); }
.crumbs svg { width: 13px; height: 13px; color: var(--line); }
.crumbs [aria-current] { color: var(--blue); font-weight: 600; }
.page-hero h1 { max-width: 21ch; }
.page-hero .lede { margin-top: 16px; font-size: var(--step-1); max-width: 38rem; line-height: 1.55; }

/* ---------- Prose (artikler/undersider) ---------- */
.prose { max-width: 720px; }
.prose h2 { margin-top: 2.2em; font-size: var(--step-2); }
.prose h3 { margin-top: 1.5em; }
.prose p { margin-top: 1em; }
.prose ul, .prose ol { margin: 1em 0 0 1.2em; display: grid; gap: .5em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose a { font-weight: 600; }
.prose table { width: 100%; border-collapse: collapse; margin-top: 1.2em; font-size: .93rem; }
@media (max-width: 700px) {
  /* tabeller scroller vandret på små skærme i stedet for at sprænge layoutet */
  .prose table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
}
.prose th { text-align: left; font-family: "Exo 2", sans-serif; font-size: .85rem; letter-spacing: .04em; color: var(--ink); background: var(--bg-2); }
.prose th, .prose td { padding: 11px 14px; border: 1px solid var(--line); }
.prose tr:nth-child(even) td { background: #fcfcfc; }

/* ---------- Form ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 4vw, 38px); }
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 700; font-size: .88rem; color: var(--ink); margin-bottom: 6px; }
.field .req { color: var(--mid); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r);
  font: inherit; color: var(--text); background: #fff;
  transition: border-color .15s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(8,74,121,.12); }
.form__consent { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: var(--muted); }
.form__consent input { margin-top: 3px; }
.form-note { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); }
.form-status { font-size: .9rem; }

.contact-list { display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ci { width: 42px; height: 42px; flex: none; border-radius: 6px; background: var(--blue-wash); color: var(--blue); display: grid; place-items: center; }
.contact-list .ci svg { width: 20px; height: 20px; }
.contact-list .lbl { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact-list a, .contact-list .val { font-size: 1.02rem; font-weight: 700; color: var(--ink); }

/* ---------- Underside-layout: prose + sticky aside ---------- */
.layout-aside { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(32px, 5vw, 64px); align-items: start; }
.layout-aside > aside { position: sticky; top: 100px; }
@media (max-width: 900px) {
  .layout-aside { grid-template-columns: minmax(0, 1fr); }
  .layout-aside > aside { position: static; }
}

/* ---------- Fillout: skeleton mens formularen loader ---------- */
/* MÅLT med Playwright: Fillout centrerer selv feltet i embed'et med 30px
   min-sidepadding og capper feltet ved ~525px. Feltets bredde er altså ALTID
   min(embed − 60px, 525px), centreret. Embed'et fylder bare kortet (width 100%),
   og vi giver TEKSTEN præcis samme bredde-formel — min(100% − 60px, 525px),
   centreret — så tekst og felt matcher matematisk ved ENHVER skærmbredde.
   Ingen negative margener, ingen breakpoints. (Embed-div må ikke have inline width.) */
.form-card:has([data-fillout-id]) > h2,
.form-card:has([data-fillout-id]) > p { width: calc(100% - 60px); max-width: 525px; margin-inline: auto; }
.form-card [data-fillout-id] {
  position: relative; min-height: 480px;
  width: 100%; margin-inline: 0;
}
.form-card [data-fillout-id]::before {
  content: ""; position: absolute; inset: 0; z-index: 2; background: #fff;
}
.form-card [data-fillout-id]::after {
  content: ""; position: absolute; left: 6px; right: 6px; top: 10px; bottom: 10px; z-index: 3;
  background:
    linear-gradient(var(--bg-2) 0 0) 0 0 / 55% 18px no-repeat,
    linear-gradient(var(--bg-2) 0 0) 0 34px / 100% 46px no-repeat,
    linear-gradient(var(--bg-2) 0 0) 0 104px / 55% 18px no-repeat,
    linear-gradient(var(--bg-2) 0 0) 0 138px / 100% 46px no-repeat,
    linear-gradient(var(--bg-2) 0 0) 0 208px / 55% 18px no-repeat,
    linear-gradient(var(--bg-2) 0 0) 0 242px / 100% 130px no-repeat,
    linear-gradient(var(--blue-wash) 0 0) 0 100% / 100% 50px no-repeat;
  border-radius: var(--r);
  animation: skel-pulse 1.4s ease-in-out infinite;
}
.form-card [data-fillout-id].ff-ready::before,
.form-card [data-fillout-id].ff-ready::after { display: none; }
@keyframes skel-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }
@media (prefers-reduced-motion: reduce) { .form-card [data-fillout-id]::after { animation: none; } }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-d="1"] { transition-delay: .12s; }
.js .reveal[data-d="2"] { transition-delay: .24s; }
.js .reveal[data-d="3"] { transition-delay: .36s; }
.js .reveal[data-d="4"] { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsivt ---------- */
@media (max-width: 1060px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .truststrip__inner { grid-template-columns: repeat(2, 1fr); row-gap: 14px; }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__media { max-width: 560px; }
  .hero__media img { height: auto; aspect-ratio: 4/3; }
  .split__media img { height: auto; aspect-ratio: 4/3; }
  .hero__media::before { inset: 18px -14px -14px 18px; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .split { grid-template-columns: 1fr; }
  .split__media { max-width: 560px; order: -1; }
  .statrow { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .blog-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* nav -> mobil */
  nav[aria-label="Hovedmenu"] { margin-left: 0; }
  .burger { display: block; margin-left: auto; }
  .nav__phone { display: none; }
  .nav__cta .btn:not(.burger) { display: none; }
  .nav__links {
    position: fixed; inset: 79px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px var(--gutter) 22px; box-shadow: var(--shadow-soft);
    transform: translateY(-10px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .menu-open .nav__links { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav__links > li > a, .nav__trigger { width: 100%; padding: 13px 12px; font-size: 1.02rem; justify-content: space-between; border-left: 3px solid transparent; border-radius: 0; }
  .nav__links > li > a[aria-current="page"] { box-shadow: none; border-left-color: var(--blue); background: var(--blue-wash); }
  .dropdown {
    position: static; transform: none; width: 100%;
    box-shadow: none; border: none; border-radius: 0; padding: 4px 0 8px;
    opacity: 1; visibility: visible; pointer-events: auto;
    max-height: 0; overflow: hidden; transition: max-height .28s var(--ease);
  }
  .has-menu[data-open="true"] .dropdown { max-height: 640px; }
  .has-menu:hover .dropdown { max-height: 0; }
  .has-menu[data-open="true"]:hover .dropdown { max-height: 640px; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .truststrip__inner { grid-template-columns: 1fr; row-gap: 10px; }
  .tItem { justify-content: flex-start; font-size: .88rem; }
  .form__row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__chip { left: 8px; }
  .hero__media::before { display: none; }
}

/* FIX: mobil-dropdown — åben-tilstandens desktop-transform (translateX(-50%))
   har højere specificitet end mobil-overriden og skubbede menuen ud af skærmen */
@media (max-width: 900px) {
  .has-menu:hover .dropdown,
  .has-menu[data-open="true"] .dropdown { transform: none; }
}

/* Lange danske sammensatte ord i overskrifter skal kunne ombrydes på smalle skærme */
h1, h2, h3 { overflow-wrap: break-word; }
@media (max-width: 480px) { h1, h2, h3 { hyphens: auto; } }
