/*
 * Affiliatekonsulent v2 – designsystem og komponenter.
 * Archivo (variabel, selvhostet) · mørk hero · guld accent · bento-ydelser.
 * Mobile first. Ingen eksterne afhængigheder.
 */

/* ---------------------------------------------------------------
 * 1. Font og designtokens
 * ------------------------------------------------------------- */

@font-face {
	font-family: "Archivo";
	src: url("../fonts/archivo-var.woff2") format("woff2-variations"),
		url("../fonts/archivo-var.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

:root {
	color-scheme: light;

	/* Flader */
	--ak-cream: #f5efe3;
	--ak-cream-2: #efe7d6;
	--ak-card: #fcfaf3;

	/* Mørk skala */
	--ak-deep: #0b241a;
	--ak-deep-2: #0e2b1f;
	--ak-photo: #143528;
	--ak-emerald: #1d503a;

	/* Tekst */
	--ak-ink: #14231b;
	--ak-muted: #4b5a51;
	--ak-soft: #5f6e63;
	--ak-mint: #afbdad;
	--ak-mint-2: #c4cdbf;

	/* Linjer */
	--ak-line: #e2d8c3;
	--ak-line-2: #d9cca9;
	--ak-line-card: #e8dfc9;
	--ak-line-dark: rgba(245, 239, 227, 0.14);

	/* Guld */
	--ak-gold: #e0b44e;
	--ak-gold-text: #a9852e;
	--ak-gold-deep: #8f6f24;
	--ak-gold-dark: #7c5e17;
	--ak-gold-ink: #4a3f1e;
	--ak-gold-soft: #f0e3c0;
	--ak-star: #c8a54b;

	/* Grøn accent */
	--ak-tint: #dff0e2;
	--ak-success: #1d8a55;
	--ak-pulse: #7ed9a3;

	/* Grafer */
	--ak-bar-1: #b9cbb6;
	--ak-bar-2: #8fb29b;

	/* Typografi */
	--font-sans: "Archivo", "Helvetica Neue", Arial, sans-serif;

	/* Radius */
	--radius-sm: 12px;
	--radius-md: 18px;
	--radius-lg: 24px;
	--radius-xl: 28px;
	--radius-pill: 999px;

	/* Spacing */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.375rem;
	--space-6: 2rem;
	--space-7: 3.25rem;
	--space-8: 5rem;

	/* Skygger */
	--shadow-card: 0 16px 40px rgba(0, 0, 0, 0.12);
	--shadow-pop: 0 30px 80px rgba(0, 0, 0, 0.45);

	/* Layout */
	--container: 1280px;
	--container-narrow: 820px;
	--gutter: 20px;
	--header-h: 66px;
}

/* ---------------------------------------------------------------
 * 2. Base
 * ------------------------------------------------------------- */

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 16px);
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}

body {
	overflow-x: clip;
}

body {
	margin: 0;
	-webkit-tap-highlight-color: transparent;
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ak-ink);
	background: var(--ak-cream);
	-webkit-font-smoothing: antialiased;
}

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

svg {
	display: inline-block;
	vertical-align: middle;
}

a {
	color: var(--ak-ink);
	text-decoration: none;
}

a:hover {
	color: var(--ak-gold-text);
}

p a,
.ak-prose a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	color: var(--ak-emerald);
}

p a:hover,
.ak-prose a:hover {
	color: var(--ak-gold-deep);
}

:focus-visible {
	outline: 2px solid var(--ak-gold-deep);
	outline-offset: 3px;
	border-radius: 4px;
}

.ak-header :focus-visible,
.ak-footer :focus-visible,
.ak-hero :focus-visible,
.ak-section--dark :focus-visible,
.ak-tile--dark :focus-visible,
.ak-step--dark :focus-visible {
	outline-color: var(--ak-gold);
}

::selection {
	background: #e4d5ac;
	color: var(--ak-ink);
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	padding: var(--space-3) var(--space-5);
	background: var(--ak-gold);
	color: var(--ak-ink);
	font-weight: 700;
	border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
	left: 0;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* Skraveret pladsholder-flade (logoer, avatarer) */
.ak-ph {
	background: repeating-linear-gradient(-45deg, #ede5d2 0 8px, #e7dec8 8px 16px);
	color: #9a9182;
}

.ak-mono {
	font-family: ui-monospace, Menlo, Consolas, monospace;
}

.ak-anchor {
	position: absolute;
	scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ---------------------------------------------------------------
 * 3. Typografi
 * ------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
	font-family: var(--font-sans);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--ak-ink);
	margin: 0 0 var(--space-4);
	text-wrap: balance;
}

p {
	margin: 0 0 var(--space-4);
}

strong {
	color: inherit;
	font-weight: 700;
}

small {
	font-size: 0.875rem;
}

/* Display-overskrifter (sektioner): sentence-case m. grøn accent-span.
   Uppercase er bevidst forbeholdt .ak-eyebrow for en mere rådgivende tone. */
.ak-h1,
.ak-h2 {
	text-transform: none;
	letter-spacing: -0.025em;
	line-height: 1.08;
}

.ak-h1 {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	line-height: 1.12;
	letter-spacing: -0.02em;
}

.ak-h2 {
	font-size: clamp(1.55rem, 3.1vw, 2.125rem);
}

.ak-h2 span,
.ak-h1 span {
	color: var(--ak-emerald);
}

.ak-hero .ak-h1 span {
	color: var(--ak-gold);
}

/* ---------------------------------------------------------------
 * 4. Layout
 * ------------------------------------------------------------- */

.ak-container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.ak-container--narrow {
	max-width: var(--container-narrow);
}

.ak-section {
	padding-block: clamp(3.75rem, 9vw, 6.875rem);
}

.ak-section--alt {
	background: var(--ak-cream-2);
	border-top: 1px solid var(--ak-line);
}

.ak-section--dark {
	background: var(--ak-deep);
	color: #f1ebdd;
}

.ak-section--dark h2,
.ak-section--dark h3 {
	color: #f7f1e6;
}

.ak-section--dark .ak-h2 span {
	color: var(--ak-gold);
}

.ak-section--dark p {
	color: var(--ak-mint);
}

.ak-section--flush-top {
	padding-top: 0;
}

.ak-section--tight {
	padding-block: clamp(3rem, 6vw, 4.5rem);
}

/* Sektionshoved: eyebrow + h2, evt. intro yderst til højre */
.ak-head {
	margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.ak-head--split {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: var(--space-5) var(--space-6);
}

.ak-head__main {
	max-width: 640px;
}

.ak-head__intro {
	max-width: 420px;
	margin: 0;
	font-size: 1.03rem;
	color: var(--ak-muted);
}

.ak-section--dark .ak-head__intro {
	color: var(--ak-mint);
}

.ak-lead {
	max-width: 56ch;
	font-size: 1.09rem;
	line-height: 1.7;
	color: var(--ak-muted);
}

.ak-eyebrow {
	margin: 0 0 var(--space-4);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ak-gold-text);
}

.ak-eyebrow--dark {
	color: var(--ak-gold);
}

.ak-eyebrow--gold {
	color: var(--ak-gold-dark);
}

/* Grid */
.ak-grid {
	display: grid;
	gap: var(--space-5);
	grid-template-columns: 1fr;
}

.ak-hero__content,
.ak-cta-panel__content {
	min-width: 0;
}

/* ---------------------------------------------------------------
 * 5. Knapper
 * ------------------------------------------------------------- */

.ak-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.7em;
	padding: 0 1.9em;
	height: 3.4em;
	border: 0;
	border-radius: var(--radius-pill);
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.ak-btn svg {
	width: 1.1em;
	height: 1.1em;
	flex: none;
	transition: transform 0.18s ease;
}

.ak-btn:hover svg {
	transform: translateX(3px);
}

.ak-btn:active {
	transform: scale(0.98);
}

.ak-btn--gold {
	background: var(--ak-gold);
	color: var(--ak-ink);
}

.ak-btn--gold:hover {
	background: #f7f1e6;
	color: var(--ak-ink);
}

.ak-btn--dark {
	background: var(--ak-deep-2);
	color: #f7f1e6;
}

.ak-btn--dark:hover {
	background: var(--ak-ink);
	color: var(--ak-gold);
}

.ak-btn--outline-light {
	background: transparent;
	border: 1px solid rgba(245, 239, 227, 0.3);
	color: #f1ebdd;
}

.ak-btn--outline-light:hover {
	border-color: var(--ak-gold);
	color: var(--ak-gold);
}

.ak-btn--outline-dark {
	background: transparent;
	border: 2px solid var(--ak-ink);
	color: var(--ak-ink);
}

.ak-btn--outline-dark:hover {
	background: #f7f1e6;
	border-color: #f7f1e6;
	color: var(--ak-ink);
}

.ak-btn--sm {
	height: 2.75em;
	padding: 0 1.5em;
	font-size: 0.91rem;
}

/* ---------------------------------------------------------------
 * 6. Header (mørk, sticky)
 * ------------------------------------------------------------- */

.ak-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(11, 36, 26, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--ak-line-dark);
	color: #f5efe3;
}

.ak-header.is-scrolled {
	background: rgba(11, 36, 26, 0.97);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.ak-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-5);
	min-height: var(--header-h);
}

.ak-brand {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-weight: 800;
	font-size: 1.19rem;
	letter-spacing: -0.02em;
	color: #f5efe3;
	white-space: nowrap;
}

.ak-brand__mark {
	display: inline-flex;
	flex: none;
	width: 30px;
	height: 30px;
}

.ak-brand__mark svg {
	width: 100%;
	height: 100%;
	display: block;
}

.ak-brand__text {
	display: inline-flex;
	align-items: baseline;
}

.ak-brand:hover {
	color: #fff;
}

.ak-brand__tld {
	color: var(--ak-gold);
}

.ak-brand--logo img {
	max-height: 42px;
	width: auto;
}

/* Mobil: panel under headeren */
.ak-nav {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	display: none;
	padding: var(--space-5) var(--gutter) var(--space-6);
	background: var(--ak-deep);
	border-bottom: 1px solid var(--ak-line-dark);
	box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
}

.ak-nav.is-open {
	display: block;
}

.ak-nav__list {
	list-style: none;
	margin: 0 0 var(--space-5);
	padding: 0;
	display: flex;
	flex-direction: column;
}

.ak-nav__list a {
	display: block;
	padding: var(--space-3) 0;
	border-bottom: 1px solid var(--ak-line-dark);
	color: var(--ak-mint-2);
	font-weight: 500;
	font-size: 1rem;
}

.ak-nav__list a:hover,
.ak-nav__list .current-menu-item > a,
.ak-nav__list .current_page_item > a {
	color: #fff;
}

.ak-nav__tel {
	display: inline-block;
	margin: 0 0 var(--space-4);
	color: var(--ak-gold);
	font-weight: 700;
}

.ak-nav__tel:hover {
	color: #f7f1e6;
}

.ak-nav__cta .ak-btn {
	width: 100%;
}

.ak-nav-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	padding: 0.72em 1.05em;
	border: 1px solid rgba(245, 239, 227, 0.35);
	border-radius: var(--radius-pill);
	background: transparent;
	color: #f5efe3;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	cursor: pointer;
}

.ak-nav-toggle__icon {
	position: relative;
	display: block;
	width: 18px;
	height: 12px;
	flex: none;
}

.ak-nav-toggle__bar {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.ak-nav-toggle__bar:nth-child(1) { top: 0; }
.ak-nav-toggle__bar:nth-child(2) { top: 5px; }
.ak-nav-toggle__bar:nth-child(3) { top: 10px; }

.ak-nav-toggle[aria-expanded="true"] .ak-nav-toggle__bar:nth-child(1) {
	transform: translateY(5px) rotate(45deg);
}

.ak-nav-toggle[aria-expanded="true"] .ak-nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.ak-nav-toggle[aria-expanded="true"] .ak-nav-toggle__bar:nth-child(3) {
	transform: translateY(-5px) rotate(-45deg);
}

/* ---------------------------------------------------------------
 * 7. Hero (mørk) + foto og statkort
 * ------------------------------------------------------------- */

.ak-hero {
	position: relative;
	overflow: hidden;
	background: var(--ak-deep);
	color: #f1ebdd;
}

.ak-hero::before {
	content: "";
	position: absolute;
	top: -220px;
	right: -180px;
	width: 640px;
	height: 640px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(224, 180, 78, 0.13) 0%, rgba(224, 180, 78, 0) 65%);
	pointer-events: none;
}

.ak-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-7);
	align-items: center;
	padding-block: clamp(3rem, 8vw, 4.75rem) clamp(3.5rem, 9vw, 5.625rem);
}

.ak-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 var(--space-6);
	padding: 9px 18px;
	border: 1px solid rgba(245, 239, 227, 0.22);
	border-radius: var(--radius-pill);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #d8e0d2;
}

.ak-hero__badge::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ak-pulse);
	animation: ak-pulse 2s ease-in-out infinite;
}

.ak-hero .ak-h1 {
	margin-bottom: var(--space-6);
	color: #f7f1e6;
}

.ak-hero__statement {
	max-width: 40ch;
	margin: clamp(1rem, 2.5vw, 1.5rem) 0 clamp(1.25rem, 3vw, 1.75rem);
	font-size: clamp(1.25rem, 2.4vw, 1.6rem);
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: -0.015em;
	color: var(--ak-gold);
}

.ak-hero__lead {
	max-width: 52ch;
	margin-bottom: clamp(1.75rem, 4vw, 2.375rem);
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--ak-mint);
}

.ak-hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--space-4) var(--space-5);
}

/* Foto-blok */
.ak-hero__visual {
	position: relative;
	max-width: 420px;
	width: 100%;
	margin-inline: auto;
}

.ak-photo {
	border-radius: var(--radius-xl);
	overflow: hidden;
	aspect-ratio: 4 / 4.6;
	background: var(--ak-photo);
	box-shadow: var(--shadow-pop);
}

.ak-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 18%;
}

/* Statkort */
.ak-stat-card {
	width: min(300px, 100%);
	margin: calc(-1 * var(--space-6)) auto 0;
	position: relative;
	background: var(--ak-card);
	border-radius: var(--radius-md);
	padding: 20px 22px 18px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
	color: var(--ak-ink);
}

.ak-stat-card__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
}

.ak-stat-card__label {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ak-soft);
}

.ak-live {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: var(--radius-pill);
	background: var(--ak-tint);
	color: var(--ak-emerald);
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.ak-live::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ak-success);
	animation: ak-pulse 1.6s ease-in-out infinite;
}

.ak-live--demo {
	background: var(--ak-cream-2);
	color: var(--ak-soft);
}

.ak-live--demo::before {
	background: var(--ak-soft);
	animation: none;
}

.ak-bars {
	display: flex;
	align-items: flex-end;
	gap: 7px;
	height: 72px;
	margin-bottom: 16px;
}

.ak-bars span {
	flex: 1;
	height: var(--h, 40%);
	background: var(--ak-bar-1);
	border-radius: 5px 5px 2px 2px;
	transform-origin: bottom;
}

.ak-bars span:nth-child(5),
.ak-bars span:nth-child(6) {
	background: var(--ak-bar-2);
}

.ak-bars .ak-bars__accent {
	background: var(--ak-gold);
}

.is-visible .ak-bars span {
	animation: ak-bar 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.is-visible .ak-bars span:nth-child(2) { animation-delay: 0.07s; }
.is-visible .ak-bars span:nth-child(3) { animation-delay: 0.14s; }
.is-visible .ak-bars span:nth-child(4) { animation-delay: 0.21s; }
.is-visible .ak-bars span:nth-child(5) { animation-delay: 0.28s; }
.is-visible .ak-bars span:nth-child(6) { animation-delay: 0.35s; }
.is-visible .ak-bars span:nth-child(7) { animation-delay: 0.42s; }

.ak-stat-card__stats {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	border-top: 1px solid var(--ak-line-card);
	padding-top: 13px;
}

.ak-stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ak-stat--right {
	text-align: right;
}

.ak-stat__value {
	font-size: 1.44rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ak-ink);
}

.ak-stat--green .ak-stat__value {
	color: var(--ak-success);
}

.ak-stat__label {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--ak-soft);
}

/* Flydende chips (kun bred skærm) */
.ak-chip {
	position: absolute;
	display: none;
	align-items: center;
	gap: 12px;
	padding: 13px 18px;
	border-radius: 14px;
	background: var(--ak-card);
	color: var(--ak-ink);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.ak-chip--1 {
	top: 34px;
	left: -74px;
}

.ak-chip--2 {
	bottom: 46px;
	right: -60px;
}

.ak-chip__icon {
	width: 34px;
	height: 34px;
	flex: none;
	border-radius: 9px;
	background: var(--ak-tint);
	color: var(--ak-emerald);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
}

.ak-chip__icon svg {
	width: 16px;
	height: 16px;
}

.ak-chip__icon--gold {
	background: #f3e6c4;
	color: var(--ak-gold-deep);
}

.ak-chip__text {
	font-size: 0.845rem;
	line-height: 1.35;
}

.ak-chip__text strong {
	display: block;
	font-weight: 700;
}

.ak-chip__text span {
	color: var(--ak-soft);
}

/* ---------------------------------------------------------------
 * 8. Marquee (guld bånd)
 * ------------------------------------------------------------- */

.ak-marquee {
	border-top: 1px solid var(--ak-line-dark);
	background: var(--ak-gold);
	overflow: hidden;
	/* clip forhindrer at det brede spor kan panoreres/swipes vandret */
	overflow-x: clip;
	padding: 15px 0;
}

.ak-marquee__track {
	display: flex;
	width: max-content;
	animation: ak-marquee 48s linear infinite;
}

.ak-marquee:hover .ak-marquee__track {
	animation-play-state: paused;
}

.ak-marquee__group {
	display: flex;
	align-items: center;
	gap: 34px;
	padding-right: 34px;
	font-weight: 800;
	font-size: 0.8125rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ak-ink);
	white-space: nowrap;
}

/* ---------------------------------------------------------------
 * 9. Logobånd (pladsholdere)
 * ------------------------------------------------------------- */

.ak-logos {
	background: var(--ak-cream);
	border-bottom: 1px solid var(--ak-line);
}

.ak-logos__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-5);
	padding-block: 34px;
}

.ak-logos__label {
	margin: 0;
	flex: none;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8a927f;
}

.ak-logos__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	width: 100%;
}

.ak-logos__item {
	height: 50px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
}

/* ---------------------------------------------------------------
 * 10. Pills (hvorfor-sektionen)
 * ------------------------------------------------------------- */

.ak-pills {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-content: flex-start;
}

/* Mobil: partnervertikaler som vandret scroll-liste frem for høj mur */
@media (max-width: 639.98px) {
	.ak-section .ak-pills:not(.ak-duo__pills) {
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		gap: 10px;
		padding-bottom: 10px;
		margin-inline: calc(-1 * var(--gutter));
		padding-inline: var(--gutter);
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}

	.ak-section .ak-pills:not(.ak-duo__pills) li {
		flex: 0 0 auto;
		scroll-snap-align: start;
	}
}

.ak-pills li {
	padding: 14px 22px;
	border-radius: var(--radius-pill);
	background: var(--ak-card);
	border: 1px solid var(--ak-line);
	color: var(--ak-ink);
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.35;
}

.ak-pills li.is-dark {
	background: var(--ak-deep-2);
	border-color: var(--ak-deep-2);
	color: #f1ebdd;
}

.ak-pills li.is-gold {
	background: var(--ak-gold);
	border-color: var(--ak-gold);
	color: var(--ak-ink);
	font-weight: 700;
}

/* Tosidet tekstsektion */
.ak-duo {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-6);
	align-items: start;
}

.ak-duo__pills {
	padding-top: 0;
}

.ak-duo__label {
	margin: 0 0 var(--space-4);
	font-size: 0.98rem;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.ak-duo .ak-list-check {
	gap: 12px;
}

.ak-duo .ak-list-check li {
	font-size: 0.95rem;
}

/* ---------------------------------------------------------------
 * 11. Bento-ydelser
 * ------------------------------------------------------------- */

.ak-bento {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
}

.ak-bento + .ak-bento {
	margin-top: 22px;
}

.ak-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 32px 30px 36px;
	border-radius: var(--radius-lg);
	background: var(--ak-card);
	border: 1px solid var(--ak-line);
	transition: transform 0.25s ease;
}

.ak-tile:hover {
	transform: translateY(-5px);
}

.ak-tile--lg {
	padding: 38px 36px 42px;
	gap: 16px;
}

.ak-tile--dark {
	background: var(--ak-deep-2);
	border-color: var(--ak-deep-2);
	color: #f1ebdd;
}

.ak-tile--gold {
	background: var(--ak-gold);
	border-color: var(--ak-gold);
}

.ak-tile__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-4);
}

.ak-tile__num {
	font-weight: 800;
	font-size: 1.02rem;
	letter-spacing: 0.06em;
	color: var(--ak-gold-text);
}

.ak-tile--dark .ak-tile__num {
	color: var(--ak-gold);
}

.ak-tile--gold .ak-tile__num {
	color: var(--ak-ink);
}

.ak-tile__cat {
	padding: 5px 13px;
	border-radius: var(--radius-pill);
	border: 1px solid var(--ak-line);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ak-soft);
	white-space: nowrap;
}

.ak-tile--dark .ak-tile__cat {
	border-color: rgba(245, 239, 227, 0.25);
	color: var(--ak-mint-2);
}

.ak-tile--gold .ak-tile__cat {
	border-color: rgba(20, 35, 27, 0.3);
	color: var(--ak-ink);
}

.ak-tile__title {
	margin: 4px 0 0;
	font-size: 1.22rem;
	letter-spacing: -0.012em;
}

.ak-tile--lg .ak-tile__title {
	font-size: clamp(1.3rem, 1.9vw, 1.5rem);
	letter-spacing: -0.015em;
}

.ak-tile--dark .ak-tile__title,
.ak-tile--dark .ak-tile__title a {
	color: #f7f1e6;
}

.ak-tile__title a {
	color: inherit;
}

.ak-tile__title a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.ak-tile__text {
	margin: 0;
	font-size: 0.97rem;
	line-height: 1.62;
	color: var(--ak-muted);
}

.ak-tile--dark .ak-tile__text {
	color: var(--ak-mint);
}

.ak-tile--gold .ak-tile__text {
	color: var(--ak-gold-ink);
}

.ak-tile--side .ak-tile__num {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
}

.ak-tile--dark .ak-list-check li {
	color: #e8e2d2;
}

.ak-tile .ak-list-check {
	margin-top: 4px;
}

.ak-tile__more {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	margin-top: auto;
	padding-top: 6px;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--ak-emerald);
}

.ak-tile__more svg {
	width: 1em;
	height: 1em;
	transition: transform 0.18s ease;
}

.ak-tile:hover .ak-tile__more svg {
	transform: translateX(4px);
}

/* Farve pr. kontekst (samlet – ingen dubletter). Selectors bruger sammensatte
   klasser (.ak-tile--dark.ak-tile--side), fordi begge klasser sidder på samme element. */
.ak-section--dark .ak-tile__more,
.ak-tile--dark .ak-tile__more {
	color: var(--ak-gold);
}

.ak-tile--gold .ak-tile__more {
	color: var(--ak-deep-2);
}

.ak-tile--dark.ak-tile--side .ak-tile__num,
.ak-tile--gold.ak-tile--side .ak-tile__num {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
}

.ak-tile--dark .ak-list-check li {
	color: #e8e2d2;
}

.ak-tile .ak-list-check {
	margin-top: 4px;
}

/* ---------------------------------------------------------------
 * 12. Check-rækker (mørk målgruppe)
 * ------------------------------------------------------------- */

.ak-checks {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ak-vertikal-outro {
	margin: clamp(1.5rem, 3.5vw, 2.25rem) 0 0;
	max-width: 62ch;
}

.ak-checks-outro {
	margin: clamp(1.5rem, 3.5vw, 2.25rem) 0 0;
	max-width: 62ch;
	font-size: 1rem;
}

.ak-checks li {
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 16px 20px;
	border-radius: 14px;
	background: rgba(245, 239, 227, 0.06);
	border: 1px solid var(--ak-line-dark);
	font-size: 0.99rem;
	font-weight: 500;
	color: #e8e2d2;
	line-height: 1.4;
}

.ak-check__dot {
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--ak-gold);
	color: var(--ak-ink);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ak-check__dot svg {
	width: 13px;
	height: 13px;
	stroke-width: 3;
}

/* ---------------------------------------------------------------
 * 13. Typo-væg (tilgang)
 * ------------------------------------------------------------- */

.ak-wall {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	column-gap: 24px;
	row-gap: 8px;
	padding: clamp(1.75rem, 5vw, 2.875rem) 0;
	border-top: 2px solid var(--ak-ink);
	border-bottom: 2px solid var(--ak-ink);
}

.ak-wall__word {
	font-weight: 800;
	font-size: clamp(1.3rem, 2.9vw, 2rem);
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--ak-ink);
	line-height: 1.05;
}

.ak-wall__word--alt {
	color: var(--ak-emerald);
}

.ak-wall__star {
	color: var(--ak-star);
	font-size: clamp(0.8rem, 1.6vw, 1.05rem);
}

.ak-wall-after {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-5) var(--space-7);
	margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.ak-wall-after p {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.7;
	color: var(--ak-muted);
}

.ak-wall-after strong {
	color: var(--ak-ink);
}

/* ---------------------------------------------------------------
 * 14. Problem-kort og tags
 * ------------------------------------------------------------- */

.ak-prob {
	background: var(--ak-card);
	border: 1px solid var(--ak-line);
	border-radius: 20px;
	padding: 30px 30px 32px;
	transition: transform 0.25s ease;
}

.ak-prob:hover {
	transform: translateY(-4px);
}

.ak-prob h3 {
	margin: 0 0 10px;
	font-size: 1.19rem;
	letter-spacing: -0.015em;
}

.ak-prob p:last-child {
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.65;
	color: var(--ak-muted);
}

.ak-tag {
	display: inline-block;
	margin: 0 0 14px;
	padding: 6px 14px;
	border-radius: var(--radius-pill);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ak-tag--gold {
	background: var(--ak-gold-soft);
	color: var(--ak-gold-dark);
}

.ak-tag--mint {
	background: var(--ak-tint);
	color: var(--ak-emerald);
}

/* ---------------------------------------------------------------
 * 15. Forløb (outline-tal)
 * ------------------------------------------------------------- */

.ak-steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ak-step {
	position: relative;
	background: var(--ak-card);
	border: 1px solid var(--ak-line);
	border-radius: 20px;
	padding: 68px 24px 28px;
	overflow: hidden;
}

.ak-step--dark {
	background: var(--ak-deep-2);
	border-color: var(--ak-deep-2);
}

.ak-step__ghost {
	position: absolute;
	top: 16px;
	left: 22px;
	font-weight: 800;
	font-size: 58px;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--ak-gold);
	opacity: 0.28;
	pointer-events: none;
}

.ak-step--dark .ak-step__ghost {
	color: var(--ak-gold);
	opacity: 0.5;
}

.ak-step h3 {
	margin: 0 0 10px;
	font-size: 1.19rem;
	letter-spacing: -0.01em;
}

.ak-step--dark h3 {
	color: #f7f1e6;
}

.ak-step p {
	margin: 0;
	font-size: 0.93rem;
	line-height: 1.6;
	color: var(--ak-muted);
}

.ak-step--dark p {
	color: var(--ak-mint);
}

/* ---------------------------------------------------------------
 * 16. Udtalelser (pladsholdere)
 * ------------------------------------------------------------- */

.ak-quote-card {
	background: var(--ak-card);
	border: 1px solid var(--ak-line);
	border-radius: 20px;
	padding: 30px 32px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.ak-quote-card__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-4);
}

.ak-stars {
	color: var(--ak-gold);
	font-size: 1.1rem;
	letter-spacing: 4px;
}

.ak-ph-pill {
	padding: 4px 10px;
	border-radius: var(--radius-pill);
	font-size: 0.69rem;
}

.ak-quote-card blockquote {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.7;
	color: var(--ak-muted);
}

.ak-quote-card__who {
	display: flex;
	align-items: center;
	gap: 14px;
}

.ak-avatar {
	width: 48px;
	height: 48px;
	flex: none;
	border-radius: 50%;
	overflow: hidden;
}

.ak-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ak-quote-card__name {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
}

.ak-quote-card__name strong {
	font-size: 0.94rem;
	color: var(--ak-ink);
}

.ak-quote-card__name span {
	font-size: 0.81rem;
	color: #8a8172;
}

.ak-note {
	margin: 0;
	max-width: 380px;
	font-size: 0.9rem;
	line-height: 1.6;
	color: #8a8172;
}

/* ---------------------------------------------------------------
 * 17. Hvem-rækker
 * ------------------------------------------------------------- */

.ak-who {
	border-top: 1px solid var(--ak-line-2);
	margin-top: 10px;
}

.ak-who__row {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
	padding: 20px 4px;
	border-bottom: 1px solid var(--ak-line-2);
	font-size: 1.03rem;
	line-height: 1.55;
	color: var(--ak-ink);
}

.ak-who__label {
	flex: none;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: 0.92rem;
	color: var(--ak-emerald);
}

/* ---------------------------------------------------------------
 * 18. CTA (guld sektion) + lead-kort + roterende badge
 * ------------------------------------------------------------- */

.ak-section--cta {
	background: var(--ak-gold);
	border: 0;
}

.ak-cta-panel {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-7);
	align-items: center;
}

.ak-cta-panel .ak-h2 {
	font-weight: 800;
	font-size: clamp(1.8rem, 3.8vw, 2.5rem);
	line-height: 1.04;
	letter-spacing: -0.025em;
	color: var(--ak-ink);
	margin-bottom: var(--space-5);
}

.ak-cta-panel .ak-h2 span {
	color: var(--ak-deep-2);
}

.ak-cta-panel__text {
	max-width: 56ch;
	margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
	font-size: 1.09rem;
	line-height: 1.7;
	color: var(--ak-gold-ink);
}

.ak-cta-panel__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--space-4) var(--space-5);
}

.ak-cta-panel__links {
	display: flex;
	gap: 26px;
	flex-wrap: wrap;
	margin: 26px 0 0;
	font-size: 0.94rem;
	font-weight: 600;
}

.ak-cta-panel__links a {
	color: var(--ak-ink);
	border-bottom: 1px solid rgba(20, 35, 27, 0.4);
	text-decoration: none;
}

.ak-cta-panel__links a:hover {
	color: var(--ak-deep-2);
	border-color: var(--ak-deep-2);
}

.ak-cta-panel__side {
	position: relative;
	max-width: 440px;
	width: 100%;
	margin-inline: auto;
}

/* Lead-kort (formularens ramme) */
.ak-lead-card {
	background: var(--ak-card);
	border-radius: 22px;
	padding: 30px 28px 28px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.ak-lead-card__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}

.ak-lead-card__head .ak-avatar {
	width: 52px;
	height: 52px;
}

.ak-lead-card__head strong {
	display: block;
	font-weight: 800;
	font-size: 1rem;
	color: var(--ak-ink);
}

.ak-lead-card__head small {
	font-size: 0.8rem;
	color: var(--ak-soft);
}

/* Roterende badge */
.ak-badge-spin {
	position: absolute;
	top: -28px;
	right: -14px;
	width: 96px;
	height: 96px;
	animation: ak-spin 26s linear infinite;
	pointer-events: none;
}

.ak-badge-spin svg {
	width: 100%;
	height: 100%;
	display: block;
}

.ak-badge-spin text {
	font-family: var(--font-sans);
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 1.7px;
	fill: var(--ak-gold);
}

/* ---------------------------------------------------------------
 * 19. Formularer og notices
 * ------------------------------------------------------------- */

.ak-form-wrap {
	width: 100%;
}

.ak-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ak-form__field {
	margin: 0;
	display: flex;
	flex-direction: column;
}

.ak-form input[type="text"],
.ak-form input[type="email"],
.ak-form input[type="url"],
.ak-form textarea,
.search-form .search-field {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 52px;
	padding: 0 18px;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(20, 35, 27, 0.22);
	background: #fff;
	color: var(--ak-ink);
	font-family: var(--font-sans);
	font-size: 0.94rem;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ak-form textarea {
	height: auto;
	min-height: 120px;
	padding: 14px 18px;
	resize: vertical;
}

.ak-form input:focus,
.ak-form textarea:focus,
.search-form .search-field:focus {
	border-color: var(--ak-deep-2);
	box-shadow: 0 0 0 3px rgba(14, 43, 31, 0.12);
}

.ak-form__footer {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 2px 0 0;
}

.ak-form__footer .ak-btn {
	width: 100%;
}

.ak-form__privacy {
	color: var(--ak-soft);
	font-size: 0.78rem;
	text-align: center;
}

.ak-req {
	color: var(--ak-gold-deep);
}

/* Kompakt formular (v2): labels kun for skærmlæsere */
.ak-form--compact label {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.ak-notice {
	margin-bottom: var(--space-4);
	padding: 14px 18px;
	border-radius: var(--radius-sm);
	border: 1px solid;
	font-size: 0.92rem;
	line-height: 1.5;
}

.ak-notice strong {
	display: block;
	margin-bottom: 2px;
}

.ak-notice--success {
	background: var(--ak-tint);
	border-color: var(--ak-success);
	color: var(--ak-emerald);
}

.ak-notice--error {
	background: #f9e9e3;
	border-color: #b3502f;
	color: #7c3a22;
}

/* ---------------------------------------------------------------
 * 20. FAQ (accordion)
 * ------------------------------------------------------------- */

.ak-accordion {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ak-accordion__item {
	background: var(--ak-card);
	border: 1px solid var(--ak-line);
	border-radius: 18px;
	overflow: hidden;
}

.ak-accordion__item summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-5);
	padding: 22px 26px;
	cursor: pointer;
	list-style: none;
}

.ak-accordion__item summary::-webkit-details-marker {
	display: none;
}

.ak-accordion__item summary:hover .ak-accordion__q {
	color: var(--ak-emerald);
}

.ak-accordion__q {
	margin: 0;
	font-weight: 700;
	font-size: 1.03rem;
	letter-spacing: -0.01em;
	line-height: 1.35;
	color: var(--ak-ink);
}

.ak-accordion__icon {
	flex: none;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--ak-gold-soft);
	color: var(--ak-gold-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.ak-accordion__icon::before {
	content: "+";
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1;
}

.ak-accordion__item[open] .ak-accordion__icon {
	background: var(--ak-deep-2);
	color: var(--ak-gold);
}

.ak-accordion__item[open] .ak-accordion__icon::before {
	content: "–";
}

.ak-accordion__icon svg {
	display: none;
}

.ak-accordion__body {
	padding: 0 26px 24px;
	font-size: 0.98rem;
	line-height: 1.7;
	color: var(--ak-muted);
}

.ak-accordion__body p:last-child {
	margin-bottom: 0;
}

/* ---------------------------------------------------------------
 * 21. Footer (v2 minimal + juridisk linje)
 * ------------------------------------------------------------- */

.ak-footer {
	background: var(--ak-deep);
	color: var(--ak-mint);
}

.ak-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-5);
	padding-block: 40px 26px;
}

.ak-footer .ak-brand {
	font-size: 1.06rem;
}

.ak-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	font-size: 0.91rem;
	font-weight: 500;
}

.ak-footer__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: contents;
}

.ak-footer__nav a {
	color: var(--ak-mint);
}

.ak-footer__nav a:hover {
	color: #f7f1e6;
}

.ak-footer__copy {
	margin: 0;
	font-size: 0.84rem;
	color: #7e9184;
}

.ak-footer__legal {
	margin: 0;
	padding-block: 18px 30px;
	border-top: 1px solid var(--ak-line-dark);
	font-size: 0.8rem;
	line-height: 1.7;
	color: #7e9184;
}

.ak-footer__legal a {
	color: #8ea394;
}

.ak-footer__legal a:hover {
	color: #f7f1e6;
}

/* ---------------------------------------------------------------
 * 21b. Mobil CTA-bar (fast bund, kun små skærme)
 * ------------------------------------------------------------- */

.ak-mobile-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
	background: rgba(11, 36, 26, 0.94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid var(--ak-line-dark);
	transform: translateY(0);
	transition: transform 0.28s ease;
}

.ak-mobile-cta.is-hidden {
	transform: translateY(110%);
}

.ak-mobile-cta__tel {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(245, 239, 227, 0.35);
	color: #f1ebdd;
}

.ak-mobile-cta__tel:hover {
	border-color: var(--ak-gold);
	color: var(--ak-gold);
}

.ak-mobile-cta__tel svg {
	width: 21px;
	height: 21px;
}

.ak-mobile-cta__main {
	flex: 1;
	height: 48px;
}

body:has(.ak-mobile-cta) {
	padding-bottom: 76px;
}

@media (min-width: 900px) {
	.ak-mobile-cta {
		display: none;
	}

	body:has(.ak-mobile-cta) {
		padding-bottom: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ak-mobile-cta {
		transition: none;
	}
}

/* ---------------------------------------------------------------
 * 22. Undersider: sideheader, breadcrumbs, prose, kort m.m.
 * ------------------------------------------------------------- */

.ak-page-header {
	padding-block: clamp(2.5rem, 6vw, 4rem);
}

.ak-page-header__title {
	max-width: 26ch;
	margin-bottom: 0;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	line-height: 1.08;
	font-size: clamp(1.55rem, 3.2vw, 2.25rem);
}

.ak-page-header__lead {
	max-width: 56ch;
	margin: var(--space-4) 0 0;
	font-size: 1.07rem;
	line-height: 1.7;
	color: var(--ak-muted);
}

.ak-breadcrumbs {
	margin-bottom: var(--space-4);
	font-size: 0.82rem;
}

.ak-breadcrumbs ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4em;
}

.ak-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	color: var(--ak-soft);
}

.ak-breadcrumbs li + li::before {
	content: "/";
	color: var(--ak-line-2);
}

.ak-breadcrumbs a {
	color: var(--ak-soft);
}

.ak-breadcrumbs a:hover {
	color: var(--ak-emerald);
}

.ak-breadcrumbs [aria-current] {
	color: var(--ak-ink);
	font-weight: 600;
}

/* Løbende indhold */
.ak-prose {
	max-width: 44em;
}

.ak-prose h2 {
	margin-top: var(--space-6);
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.015em;
}

.ak-prose h3 {
	margin-top: var(--space-5);
	font-size: 1.18rem;
}

.ak-prose ul,
.ak-prose ol {
	margin: 0 0 var(--space-4);
	padding-left: 1.3em;
}

.ak-prose li {
	margin-bottom: var(--space-2);
}

.ak-prose li::marker {
	color: var(--ak-gold-deep);
}

.ak-prose blockquote {
	margin: var(--space-5) 0;
	padding: var(--space-2) 0 var(--space-2) var(--space-5);
	border-left: 3px solid var(--ak-gold);
	color: var(--ak-muted);
	font-size: 1.08rem;
}

.ak-prose img {
	border-radius: var(--radius-md);
}

.ak-prose code {
	padding: 0.15em 0.45em;
	border-radius: 6px;
	background: var(--ak-cream-2);
	border: 1px solid var(--ak-line);
	font-size: 0.9em;
}

.ak-prose pre {
	padding: var(--space-4);
	border-radius: var(--radius-sm);
	background: var(--ak-deep);
	color: #e8e2d2;
	overflow-x: auto;
}

.ak-prose pre code {
	background: none;
	border: 0;
	padding: 0;
	color: inherit;
}

.ak-prose table {
	width: 100%;
	margin-bottom: var(--space-4);
	border-collapse: collapse;
	font-size: 0.95rem;
}

.ak-prose th,
.ak-prose td {
	padding: var(--space-3);
	border: 1px solid var(--ak-line);
	text-align: left;
}

.ak-prose th {
	background: var(--ak-cream-2);
}

.ak-featured {
	margin: 0 0 var(--space-6);
}

.ak-featured img {
	width: 100%;
	border-radius: var(--radius-lg);
	border: 1px solid var(--ak-line);
}

/* Kort: indlæg, ydelser (arkiv), cases */
.ak-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 26px;
	background: var(--ak-card);
	border: 1px solid var(--ak-line);
	border-radius: 20px;
	transition: transform 0.22s ease, border-color 0.22s ease;
}

.ak-card:hover {
	transform: translateY(-4px);
	border-color: var(--ak-line-2);
}

.ak-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin-bottom: var(--space-4);
	border-radius: 12px;
	background: var(--ak-tint);
	color: var(--ak-emerald);
}

.ak-card__icon svg {
	width: 25px;
	height: 25px;
}

.ak-card__eyebrow {
	margin: 0 0 var(--space-2);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--ak-gold-deep);
}

.ak-card__title {
	margin-bottom: var(--space-3);
	font-size: 1.22rem;
	letter-spacing: -0.01em;
}

.ak-card__title a {
	color: inherit;
}

.ak-card__title a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.ak-card__text {
	margin-bottom: var(--space-4);
	color: var(--ak-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

.ak-card__more {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	margin-top: auto;
	color: var(--ak-emerald);
	font-size: 0.9rem;
	font-weight: 700;
}

.ak-card__more svg {
	width: 1.05em;
	height: 1.05em;
	transition: transform 0.18s ease;
}

.ak-card:hover .ak-card__more svg {
	transform: translateX(4px);
}

.ak-card__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3);
	margin: 0 0 var(--space-4);
	padding: var(--space-3) 0 0;
	border-top: 1px dashed var(--ak-line);
}

.ak-card__stats > div {
	display: flex;
	flex-direction: column-reverse;
}

.ak-card__stats dt {
	font-size: 0.76rem;
	color: var(--ak-soft);
}

.ak-card__stats dd {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ak-gold-deep);
}

.ak-card--post {
	padding: 0;
	overflow: hidden;
}

.ak-card__media {
	display: block;
	aspect-ratio: 720 / 460;
	overflow: hidden;
	border-bottom: 1px solid var(--ak-line);
}

.ak-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ak-card--post .ak-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px 26px 26px;
}

.ak-card--post .ak-card__eyebrow {
	color: var(--ak-soft);
	letter-spacing: 0.03em;
	text-transform: none;
	font-weight: 600;
}

/* Ydelses-underside: punkter i sidepanel */
.ak-service-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-6);
	align-items: start;
}

.ak-service-points {
	padding: 26px;
	background: var(--ak-card);
	border: 1px solid var(--ak-line);
	border-radius: 20px;
}

.ak-service-points__title {
	margin-bottom: var(--space-4);
	font-size: 1.05rem;
}

.ak-service-points .ak-btn {
	width: 100%;
	margin-top: var(--space-4);
}

.ak-list-check {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: var(--space-3);
}

.ak-list-check li {
	display: flex;
	align-items: flex-start;
	gap: var(--space-3);
	line-height: 1.45;
	font-size: 0.97rem;
}

.ak-tick__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex: none;
	margin-top: 1px;
	border-radius: 50%;
	background: var(--ak-gold);
	color: var(--ak-ink);
}

.ak-tick__icon svg {
	width: 12px;
	height: 12px;
	stroke-width: 3;
}

/* Case-underside */
.ak-case-meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	margin: 0 0 var(--space-5);
}

.ak-pill-tag {
	display: inline-block;
	padding: 0.4em 1em;
	border-radius: var(--radius-pill);
	background: var(--ak-deep-2);
	color: #f1ebdd;
	font-size: 0.83rem;
	font-weight: 600;
}

.ak-pill-tag--soft {
	background: var(--ak-tint);
	color: var(--ak-emerald);
}

.ak-case-stats {
	display: grid;
	gap: var(--space-4);
	grid-template-columns: 1fr;
	margin: 0 0 var(--space-6);
	padding: 26px;
	background: var(--ak-card);
	border: 1px solid var(--ak-line);
	border-radius: 20px;
}

.ak-case-stats__item {
	display: flex;
	flex-direction: column-reverse;
}

.ak-case-stats__item dd {
	margin: 0 0 var(--space-1);
	font-size: 1.9rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
	color: var(--ak-gold-deep);
}

.ak-case-stats__item dt {
	font-size: 0.84rem;
	color: var(--ak-soft);
}

.ak-quote {
	margin: var(--space-6) 0 0;
	padding: 24px 26px;
	background: var(--ak-cream-2);
	border-left: 3px solid var(--ak-gold);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.ak-quote p {
	font-size: 1.13rem;
	font-weight: 600;
	line-height: 1.5;
}

.ak-quote cite {
	font-style: normal;
	font-size: 0.88rem;
	color: var(--ak-soft);
}

/* ---------------------------------------------------------------
 * 23. Paginering, tomme tilstande, søgning, WP-kerne
 * ------------------------------------------------------------- */

.navigation.pagination {
	margin-top: var(--space-6);
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
}

.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	padding: 0.55em 0.95em;
	border: 1px solid var(--ak-line);
	border-radius: var(--radius-pill);
	background: var(--ak-card);
	color: var(--ak-ink);
	font-weight: 600;
}

.nav-links .page-numbers.current {
	background: var(--ak-deep-2);
	border-color: var(--ak-deep-2);
	color: var(--ak-gold);
}

.nav-links a.page-numbers:hover {
	border-color: var(--ak-deep-2);
	color: var(--ak-deep-2);
}

.ak-empty {
	max-width: 40em;
	padding: var(--space-6) 0;
}

.ak-empty h1,
.ak-empty h2 {
	text-transform: uppercase;
	letter-spacing: -0.02em;
}

.ak-empty__links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	margin-top: var(--space-5);
}

.search-form {
	display: flex;
	gap: var(--space-2);
	max-width: 460px;
	margin-block: var(--space-4);
}

.search-form .search-field {
	flex: 1;
}

.search-form .search-submit {
	height: 52px;
	padding: 0 1.4em;
	border: 0;
	border-radius: var(--radius-pill);
	background: var(--ak-deep-2);
	color: #f7f1e6;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.search-form .search-submit:hover {
	background: var(--ak-ink);
	color: var(--ak-gold);
}

.alignwide {
	margin-inline: auto;
	max-width: var(--container);
}

.alignfull {
	width: 100%;
}

.wp-caption,
figure {
	max-width: 100%;
}

.wp-caption-text,
figcaption {
	font-size: 0.85rem;
	color: var(--ak-soft);
	margin-top: var(--space-2);
}

.sticky {
	display: block;
}

.bypostauthor {
	display: block;
}

/* ---------------------------------------------------------------
 * 24. Animationer, reveal og reduced motion
 * ------------------------------------------------------------- */

@keyframes ak-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes ak-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes ak-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.35; }
}

@keyframes ak-bar {
	from { transform: scaleY(0); }
	to { transform: scaleY(1); }
}

/* Hero vækst-diagram (genbruger .ak-bars-animationen) */
.ak-chartcard {
	position: absolute;
	right: -18px;
	bottom: 28px;
	width: min(300px, 80%);
	background: var(--ak-card);
	border: 1px solid var(--ak-line-card);
	border-radius: 18px;
	padding: 18px 18px 16px;
	box-shadow: var(--shadow-card);
	z-index: 3;
}

.ak-chartcard__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.ak-chartcard__label {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ak-soft);
}

.ak-chartcard .ak-bars {
	height: 92px;
	gap: 8px;
	margin-bottom: 12px;
}

.ak-chartcard__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 12px;
	border-top: 1px solid var(--ak-line-card);
	font-size: 0.74rem;
	font-weight: 700;
	color: var(--ak-soft);
}

.ak-chartcard__trend {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--ak-success);
}

.ak-chartcard__trend svg {
	width: 13px;
	height: 13px;
	transform: rotate(-45deg);
}

@media (max-width: 979.98px) {
	.ak-chartcard {
		position: static;
		width: 100%;
		margin-top: 18px;
	}
}

/* Sikkerhed: aldrig søjle-animation ved reduced-motion (JS kan tilføje
   is-visible til alle reveals, så vi guard'er her uafhængigt af JS). */
@media (prefers-reduced-motion: reduce) {
	.ak-bars span {
		animation: none !important;
		transform: none !important;
	}
}

.ak-reveal {
	opacity: 1;
	transform: none;
}

html.ak-can-reveal .ak-reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

html.ak-can-reveal .ak-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* På desktop er 12px næsten usynligt – lad elementerne glide længere op,
   så reveal-effekten faktisk mærkes på store skærme. */
@media (min-width: 980px) {
	html.ak-can-reveal .ak-reveal {
		transform: translateY(28px);
		transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
	}
}

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

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

	.ak-reveal {
		opacity: 1;
		transform: none;
	}

	.ak-marquee__track {
		animation: none;
		flex-wrap: wrap;
		width: 100%;
	}

	.ak-marquee__group[aria-hidden] {
		display: none;
	}

	.ak-badge-spin {
		animation: none;
	}
}

/* ---------------------------------------------------------------
 * 25. Breakpoints
 * ------------------------------------------------------------- */

@media (min-width: 640px) {
	.ak-grid--2 {
		grid-template-columns: repeat(2, 1fr);
	}

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

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

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

	.ak-checks--grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.ak-who__row {
		flex-direction: row;
		gap: 24px;
		align-items: baseline;
	}

	.ak-who__label {
		width: 190px;
	}

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

	.ak-form__footer {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.ak-form__footer .ak-btn {
		width: auto;
	}

	.ak-form--compact .ak-form__footer {
		flex-direction: column;
		align-items: stretch;
	}

	.ak-form--compact .ak-form__footer .ak-btn {
		width: 100%;
	}
}

@media (min-width: 640px) and (max-width: 899.98px) {
	.ak-bento--3 > .ak-tile:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}
}

@media (min-width: 900px) {
	:root {
		--gutter: 40px;
		--header-h: 74px;
	}

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

	.ak-logos__inner {
		flex-direction: row;
		align-items: center;
		gap: 44px;
	}

	.ak-logos__grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 18px;
	}

	.ak-duo {
		grid-template-columns: 1fr 1fr;
		gap: 72px;
	}

	.ak-duo__pills {
		padding-top: 46px;
	}

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

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

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

	.ak-wall-after {
		grid-template-columns: 1fr 1fr;
	}

	.ak-service-layout {
		grid-template-columns: minmax(0, 1fr) 360px;
		gap: var(--space-7);
	}

	.ak-service-points {
		position: sticky;
		top: calc(var(--header-h) + var(--space-5));
	}

	/* Desktop-navigation inline */
	.ak-nav {
		position: static;
		display: flex;
		align-items: center;
		gap: 30px;
		padding: 0;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.ak-nav__list {
		flex-direction: row;
		gap: 30px;
		margin: 0;
	}

	.ak-nav__list a {
		padding: 0.3em 0;
		border-bottom: 0;
		font-size: 0.91rem;
	}

	.ak-nav__tel {
		margin: 0;
		font-size: 0.91rem;
	}

	.ak-nav__cta .ak-btn {
		width: auto;
	}

	.ak-nav-toggle {
		display: none;
	}
}

@media (min-width: 1100px) {
	.ak-hero__inner {
		grid-template-columns: 1.15fr 0.85fr;
		gap: 64px;
	}

	.ak-hero__visual {
		justify-self: end;
		margin-inline: 0;
	}

	.ak-stat-card {
		position: absolute;
		bottom: -34px;
		left: -86px;
		margin: 0;
	}

	.ak-chip {
		display: flex;
	}

	.ak-cta-panel {
		grid-template-columns: 1fr 420px;
		gap: 72px;
	}

	.ak-cta-panel__side {
		margin-inline: 0;
	}

	.ak-badge-spin {
		width: 104px;
		height: 104px;
		top: -30px;
		right: -24px;
	}
}

/* ---------------------------------------------------------------
 * 26. CTA-bånd på undersider ([akc_cta] / ak_cta_band)
 * ------------------------------------------------------------- */

.ak-cta {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-5) var(--space-7);
	align-items: center;
}

.ak-cta__title {
	color: var(--ak-ink);
	margin-bottom: var(--space-4);
}

.ak-cta__title span,
.ak-section--cta .ak-h2 span {
	color: var(--ak-deep-2);
}

.ak-cta__text {
	max-width: 52ch;
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--ak-gold-ink);
}

.ak-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
}

@media (min-width: 900px) {
	.ak-cta {
		grid-template-columns: minmax(0, 1fr) auto;
	}
}


/* ---------------------------------------------------------------
 * 27. Små skærme: finjustering af hero-badge, knapper og felter
 * ------------------------------------------------------------- */

@media (max-width: 899.98px) {
	/* iOS zoomer ind på felter under 16px – lås dem til 16px på mobil. */
	.ak-form input[type="text"],
	.ak-form input[type="email"],
	.ak-form input[type="url"],
	.ak-form textarea,
	.search-form .search-field {
		font-size: 1rem;
	}
}

@media (max-width: 419.98px) {
	.ak-hero__badge {
		font-size: 0.7rem;
		letter-spacing: 0.07em;
		padding: 8px 14px;
		text-align: left;
	}

	.ak-btn {
		font-size: 0.95rem;
		padding: 0 1.4em;
	}

	.ak-badge-spin {
		width: 84px;
		height: 84px;
		top: -22px;
		right: -8px;
	}
}

/* ---------------------------------------------------------------
 * 28. v5-komponenter: audit-kort, statement-bånd, faglig metode, vurderer
 * ------------------------------------------------------------- */

.ak-section--statement {
	background: var(--ak-cream-2);
	border-block: 1px solid var(--ak-line);
}

.ak-statement {
	max-width: 26ch;
	margin: 0 auto;
	text-align: center;
	font-size: clamp(1.5rem, 3.4vw, 2.375rem);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: var(--ak-soft);
}

.ak-statement span {
	color: var(--ak-ink);
}

.ak-mt-lg {
	margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

.ak-list-check--lg li {
	font-size: 1.02rem;
	line-height: 1.5;
}

.ak-vurderer {
	margin: clamp(1.5rem, 3vw, 2rem) 0;
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	border: 1px solid var(--ak-line);
	border-radius: 16px;
	background: var(--ak-card);
}

.ak-vurderer__label {
	margin: 0 0 14px;
	font-weight: 800;
	font-size: 0.95rem;
	color: var(--ak-ink);
}

.ak-vurderer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px 20px;
	grid-template-columns: 1fr;
}

.ak-vurderer__list li {
	position: relative;
	padding-left: 26px;
	font-size: 0.92rem;
	color: var(--ak-muted);
}

.ak-vurderer__list li::before {
	content: "✦";
	position: absolute;
	left: 0;
	color: var(--ak-gold);
	font-size: 0.8rem;
}

@media (min-width: 640px) {
	.ak-vurderer__list {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 900px) {
	.ak-vurderer__list {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Section--tight hvis ikke defineret andetsteds */
.ak-section--tight {
	padding-block: clamp(3rem, 6vw, 4.5rem);
}
