/*
 * Utilfreds.dk Site
 * Scoped full-page design system.
 */

:root {
	--uf-green-950: #102617;
	--uf-green-900: #16301c;
	--uf-green-800: #1f4026;
	--uf-green-700: #2d5835;
	--uf-green-500: #5a8a62;
	--uf-mint-300: #bde8c8;
	--uf-mint-100: #edf7ef;
	--uf-gold-500: #d2a556;
	--uf-gold-300: #efd49e;
	--uf-ink: #18231b;
	--uf-copy: #4f5d52;
	--uf-muted: #778279;
	--uf-line: rgba(31, 64, 38, 0.14);
	--uf-canvas: #f7f8f5;
	--uf-cream: #f4f0e7;
	--uf-white: #ffffff;
	--uf-shadow-sm: 0 1px 2px rgba(16, 38, 23, 0.04), 0 8px 24px rgba(16, 38, 23, 0.05);
	--uf-shadow-lg: 0 40px 100px rgba(16, 38, 23, 0.16);
	--uf-panel-border: rgba(31, 64, 38, 0.12);
	--uf-panel-shadow: 0 1px 2px rgba(16, 38, 23, 0.04), 0 18px 50px rgba(16, 38, 23, 0.075);
	--uf-panel-shadow-hover: 0 2px 4px rgba(16, 38, 23, 0.04), 0 28px 70px rgba(16, 38, 23, 0.12);
	--uf-dark-panel-border: rgba(255, 255, 255, 0.12);
	--uf-radius-sm: 10px;
	--uf-radius-md: 18px;
	--uf-radius-lg: 28px;
	--uf-shell: 1180px;
	--uf-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 84px;
	overflow-x: hidden;
}

body.utilfreds-site {
	margin: 0;
	background: var(--uf-canvas);
	color: var(--uf-ink);
	font-family: var(--uf-font);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

.uf-site h1,
.uf-site h2,
.uf-site h3,
.uf-site p,
.uf-site ul,
.uf-site fieldset {
	margin-top: 0;
}

.uf-site h1,
.uf-site h2,
.uf-site h3 {
	letter-spacing: -0.04em;
	line-height: 1.08;
	overflow-wrap: break-word;
}

.uf-site a,
.uf-site a:hover,
.uf-site a:focus,
.uf-site a:active,
.uf-site a:visited,
.uf-site button,
.uf-site button:hover,
.uf-site button:focus,
.uf-site button:active {
	color: inherit;
	text-decoration: none !important;
	text-decoration-line: none !important;
}

.uf-site button,
.uf-site input {
	font: inherit;
}

.uf-site svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.uf-shell {
	position: relative;
	width: min(calc(100% - 48px), var(--uf-shell));
	margin-inline: auto;
}

.uf-section {
	position: relative;
	padding: 128px 0;
}

.uf-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 10000;
	padding: 10px 14px;
	border-radius: 8px;
	background: var(--uf-white);
	color: var(--uf-green-900);
	font-weight: 700;
	transform: translateY(-150%);
	transition: transform 180ms ease;
}

.uf-skip-link:focus {
	transform: translateY(0);
}

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

.uf-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
		transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.uf-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Header */

.uf-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1000;
	padding: 16px 0;
	border-bottom: 1px solid transparent;
	transition:
		background-color 200ms ease,
		border-color 200ms ease,
		padding 200ms ease,
		box-shadow 200ms ease;
}

.admin-bar .uf-header {
	top: 32px;
}

.uf-header.is-scrolled {
	padding: 10px 0;
	border-color: rgba(31, 64, 38, 0.08);
	background: rgba(247, 248, 245, 0.88);
	box-shadow: 0 8px 30px rgba(16, 38, 23, 0.04);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.uf-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.uf-brand {
	display: inline-flex;
	align-items: center;
	color: var(--uf-green-900);
}

.uf-brand__logo {
	display: block;
	width: 190px;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.uf-nav {
	display: flex;
	align-items: center;
	gap: 30px;
	color: var(--uf-green-900);
	font-size: 14px;
	font-weight: 650;
}

.uf-nav > a:not(.uf-button) {
	position: relative;
	padding: 9px 0;
	border-bottom: 0;
	background-image: none;
	text-decoration: none;
	transition: color 160ms ease;
}

.uf-nav > a:not(.uf-button)::after {
	display: none;
	content: none;
}

.uf-nav > a:not(.uf-button):hover {
	color: var(--uf-green-700, #2d5835) !important;
	text-decoration: none;
	-webkit-text-fill-color: var(--uf-green-700, #2d5835) !important;
}

.uf-menu-button {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 8px 0;
	border: 0;
	background: transparent;
	color: var(--uf-green-900);
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
}

.uf-menu-button__icon {
	position: relative;
	display: block;
	width: 20px;
	height: 14px;
}

.uf-menu-button__icon i {
	position: absolute;
	left: 0;
	width: 20px;
	height: 1.5px;
	background: currentColor;
	transition: transform 180ms ease, top 180ms ease;
}

.uf-menu-button__icon i:first-child {
	top: 3px;
}

.uf-menu-button__icon i:last-child {
	top: 10px;
}

.uf-menu-button[aria-expanded="true"] .uf-menu-button__icon i:first-child {
	top: 7px;
	transform: rotate(45deg);
}

.uf-menu-button[aria-expanded="true"] .uf-menu-button__icon i:last-child {
	top: 7px;
	transform: rotate(-45deg);
}

/* Buttons and shared headings */

.uf-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 12px 21px;
	border: 1px solid transparent;
	border-radius: 7px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.15;
	transition:
		transform 150ms ease,
		box-shadow 150ms ease,
		background-color 150ms ease,
		border-color 150ms ease;
}

.uf-button:hover {
	transform: translateY(-1px);
}

.uf-button:focus-visible,
.uf-nav a:focus-visible,
.uf-brand:focus-visible,
.uf-inline-link:focus-visible,
.uf-faq summary:focus-visible,
.uf-poll-form input:focus-visible + span {
	outline: 3px solid rgba(210, 165, 86, 0.45);
	outline-offset: 3px;
}

.uf-site .uf-button--nav {
	min-height: 38px;
	padding: 9px 15px;
	border-radius: 6px;
	background: var(--uf-green-900);
	color: var(--uf-white);
	box-shadow:
		0 2px 4px rgba(16, 38, 23, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.uf-site .uf-button--primary {
	background: var(--uf-green-900);
	color: var(--uf-white);
	box-shadow:
		0 2px 5px rgba(16, 38, 23, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.uf-site .uf-button--primary:hover,
.uf-site .uf-button--nav:hover {
	background: var(--uf-green-800);
	color: var(--uf-white) !important;
	-webkit-text-fill-color: var(--uf-white);
	box-shadow:
		0 4px 9px rgba(16, 38, 23, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.uf-site .uf-button--primary:focus,
.uf-site .uf-button--primary:focus-visible,
.uf-site .uf-button--primary:active,
.uf-site .uf-button--nav:focus,
.uf-site .uf-button--nav:focus-visible,
.uf-site .uf-button--nav:active {
	color: var(--uf-white) !important;
	-webkit-text-fill-color: var(--uf-white);
}

.uf-site .uf-button--text {
	min-height: auto;
	padding: 10px 4px;
	border-radius: 0;
	color: var(--uf-green-800);
}

.uf-button--text:hover {
	transform: none;
}

.uf-site .uf-button--light {
	border-color: rgba(16, 38, 23, 0.12);
	background: var(--uf-white);
	color: var(--uf-green-900);
	box-shadow:
		0 2px 5px rgba(0, 0, 0, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.uf-button:disabled {
	cursor: not-allowed;
	opacity: 0.55;
	transform: none;
}

.uf-button.is-loading {
	color: transparent;
}

.uf-button.is-loading::after {
	position: absolute;
	width: 17px;
	height: 17px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: var(--uf-green-900);
	border-radius: 50%;
	content: "";
	animation: uf-spin 700ms linear infinite;
}

@keyframes uf-spin {
	to { transform: rotate(360deg); }
}

.uf-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	padding-bottom: 18px;
}

.uf-eyebrow,
.uf-kicker {
	margin-bottom: 17px;
	color: var(--uf-green-700);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.uf-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
}

.uf-eyebrow span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--uf-gold-500);
	box-shadow: 0 0 0 5px rgba(210, 165, 86, 0.14);
}

.uf-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
	align-items: end;
	gap: 90px;
	margin-bottom: 64px;
}

.uf-section-heading h2,
.uf-safety__intro h2,
.uf-founder-card__copy h2,
.uf-poll__copy h2,
.uf-faq__intro h2 {
	margin-bottom: 0;
	color: var(--uf-green-900);
	font-size: clamp(38px, 5vw, 63px);
	font-weight: 770;
}

.uf-section-heading > p,
.uf-safety__intro > p,
.uf-poll__copy > p,
.uf-faq__intro > p {
	margin-bottom: 3px;
	color: var(--uf-copy);
	font-size: 17px;
	line-height: 1.72;
}

.uf-inline-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	color: var(--uf-green-800);
	font-size: 14px;
	font-weight: 750;
}

.uf-inline-link span {
	transition: transform 180ms ease;
}

.uf-inline-link:hover span {
	transform: translateX(4px);
}

/* Hero */

.uf-hero {
	position: relative;
	min-height: 880px;
	padding: 160px 0 38px;
	background:
		linear-gradient(135deg, rgba(237, 247, 239, 0.82), rgba(247, 248, 245, 0.92) 48%, rgba(244, 240, 231, 0.8));
	overflow: hidden;
}

.uf-hero__mesh {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.uf-hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
}

.uf-hero__glow--one {
	top: -210px;
	right: -80px;
	width: 620px;
	height: 620px;
	background: radial-gradient(circle, rgba(189, 232, 200, 0.6), rgba(189, 232, 200, 0) 68%);
}

.uf-hero__glow--two {
	bottom: -320px;
	left: -180px;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(239, 212, 158, 0.35), rgba(239, 212, 158, 0) 68%);
}

.uf-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(31, 64, 38, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(31, 64, 38, 0.04) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.uf-hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.8fr);
	align-items: center;
	gap: 90px;
	min-height: 630px;
}

.uf-hero__copy {
	position: relative;
	z-index: 2;
	padding-top: 8px;
}

.uf-hero h1 {
	max-width: 780px;
	margin-bottom: 28px;
	color: var(--uf-green-950);
	font-size: clamp(54px, 6.8vw, 88px);
	font-weight: 790;
	letter-spacing: -0.065em;
}

.uf-hero h1 em {
	color: var(--uf-green-500);
	font-style: normal;
}

.uf-hero__lead {
	max-width: 650px;
	margin-bottom: 34px;
	color: var(--uf-copy);
	font-size: 19px;
	line-height: 1.68;
}

.uf-trustline {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin: 31px 0 0;
	padding: 0;
	color: var(--uf-copy);
	font-size: 13px;
	font-weight: 650;
	list-style: none;
}

.uf-trustline li {
	display: flex;
	align-items: center;
	gap: 7px;
}

.uf-trustline span {
	display: grid;
	width: 18px;
	height: 18px;
	place-items: center;
	border-radius: 50%;
	background: rgba(31, 64, 38, 0.09);
	color: var(--uf-green-800);
	font-size: 10px;
}

.uf-hero-card {
	position: relative;
	z-index: 2;
	min-height: 590px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 30px;
	background:
		radial-gradient(circle at 84% 6%, rgba(90, 138, 98, 0.42), transparent 31%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 34%),
		var(--uf-green-950);
	color: var(--uf-white);
	box-shadow:
		0 45px 110px rgba(16, 38, 23, 0.22),
		0 12px 30px rgba(16, 38, 23, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.uf-hero-card::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 42px 42px;
	content: "";
	mask-image: linear-gradient(145deg, black, transparent 72%);
	pointer-events: none;
}

.uf-hero-card::after {
	position: absolute;
	right: -95px;
	bottom: -135px;
	width: 340px;
	height: 340px;
	border: 1px solid rgba(210, 165, 86, 0.18);
	border-radius: 50%;
	box-shadow:
		0 0 0 50px rgba(210, 165, 86, 0.035),
		0 0 0 100px rgba(210, 165, 86, 0.022);
	content: "";
	pointer-events: none;
}

.uf-hero-card__top,
.uf-hero-card__footer,
.uf-offer-card__head,
.uf-offer-card__foot {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.uf-hero-card__top {
	color: rgba(255, 255, 255, 0.72);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.uf-live-dot {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 6px 9px;
	border: 1px solid rgba(117, 219, 138, 0.15);
	border-radius: 999px;
	background: rgba(117, 219, 138, 0.07);
}

.uf-live-dot i,
.uf-status-dot {
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #75db8a;
	box-shadow: 0 0 0 5px rgba(117, 219, 138, 0.12);
}

.uf-live-dot i {
	animation: uf-card-live 2.2s ease-in-out infinite;
}

.uf-hero-card__surface {
	position: relative;
	z-index: 1;
	margin-top: 22px;
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
		rgba(255, 255, 255, 0.025);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 25px 55px rgba(0, 0, 0, 0.12);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.uf-hero-card__statement {
	position: relative;
	z-index: 1;
	padding: 2px 0 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.uf-hero-card__statement p {
	margin-bottom: 6px;
	color: var(--uf-gold-300);
	font-size: 11px;
	font-weight: 760;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.uf-hero-card__statement strong {
	display: block;
	max-width: 390px;
	font-size: clamp(37px, 3.45vw, 47px);
	font-weight: 720;
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.uf-hero-card__route {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 72px 1fr 86px 1fr 72px;
	align-items: center;
	gap: 7px;
	padding: 25px 0 22px;
}

.uf-route-node {
	display: flex;
	min-width: 0;
	align-items: center;
	flex-direction: column;
	gap: 9px;
}

.uf-route-node__visual {
	position: relative;
	width: 68px;
	height: 68px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 18px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
		rgba(255, 255, 255, 0.035);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		0 10px 25px rgba(0, 0, 0, 0.1);
	transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.uf-hero-card:hover .uf-route-node__visual {
	border-color: rgba(189, 232, 200, 0.28);
	transform: translateY(-2px);
}

.uf-route-node > span {
	color: rgba(255, 255, 255, 0.58);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.uf-card-person {
	position: absolute;
	display: block;
	width: 9px;
	height: 17px;
	border-radius: 6px;
	background: var(--uf-mint-300);
	box-shadow: 0 0 15px rgba(189, 232, 200, 0.12);
}

.uf-card-person::before {
	position: absolute;
	top: -7px;
	left: 1px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: inherit;
	content: "";
}

.uf-route-node--single .uf-card-person {
	top: 29px;
	left: 30px;
	transform: scale(1.18);
}

.uf-route-node--collective .uf-card-person:nth-child(1) {
	top: 25px;
	left: 29px;
	background: var(--uf-gold-500);
}

.uf-route-node--collective .uf-card-person:nth-child(2) {
	top: 17px;
	left: 16px;
	transform: scale(0.76);
}

.uf-route-node--collective .uf-card-person:nth-child(3) {
	top: 17px;
	right: 16px;
	transform: scale(0.76);
}

.uf-route-node--collective .uf-card-person:nth-child(4) {
	top: 35px;
	left: 13px;
	background: var(--uf-green-500);
	transform: scale(0.68);
}

.uf-route-node--collective .uf-card-person:nth-child(5) {
	top: 35px;
	right: 13px;
	background: var(--uf-green-500);
	transform: scale(0.68);
}

.uf-route-node--collective .uf-card-person:nth-child(6) {
	top: 12px;
	left: 30px;
	transform: scale(0.58);
}

.uf-route-node--collective .uf-card-person:nth-child(7) {
	top: 38px;
	left: 30px;
	transform: scale(0.62);
}

.uf-route-node--market .uf-route-node__visual {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.uf-route-node--market .uf-route-node__visual > i {
	position: relative;
	display: block;
	width: 13px;
	height: 31px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.08);
}

.uf-route-node--market .uf-route-node__visual > i::before,
.uf-route-node--market .uf-route-node__visual > i::after {
	position: absolute;
	display: block;
	right: 3px;
	left: 3px;
	height: 2px;
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.45);
	content: "";
}

.uf-route-node--market .uf-route-node__visual > i::before {
	top: 9px;
}

.uf-route-node--market .uf-route-node__visual > i::after {
	top: 16px;
	background: var(--uf-gold-500);
}

.uf-route-node--market .uf-route-node__visual > i:nth-child(2) {
	height: 38px;
	border-color: rgba(210, 165, 86, 0.34);
	background: rgba(210, 165, 86, 0.09);
}

.uf-route-link {
	position: relative;
	height: 1px;
	background: linear-gradient(90deg, rgba(189, 232, 200, 0.12), rgba(189, 232, 200, 0.52), rgba(189, 232, 200, 0.12));
	overflow: visible;
}

.uf-route-link::before,
.uf-route-link::after {
	position: absolute;
	top: -2px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(189, 232, 200, 0.48);
	content: "";
}

.uf-route-link::before {
	left: -1px;
}

.uf-route-link::after {
	right: -1px;
}

.uf-route-link > i {
	position: absolute;
	top: -3px;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--uf-gold-500);
	box-shadow: 0 0 14px rgba(210, 165, 86, 0.75);
	animation: uf-card-signal 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.uf-route-link--delayed > i {
	animation-delay: 1.4s;
}

.uf-hero-card__result {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 15px 16px;
	border: 1px solid rgba(210, 165, 86, 0.22);
	border-radius: 13px;
	background:
		linear-gradient(90deg, rgba(210, 165, 86, 0.1), rgba(210, 165, 86, 0.035)),
		rgba(0, 0, 0, 0.07);
}

.uf-hero-card__result > i {
	width: 9px;
	height: 9px;
	flex: 0 0 9px;
	border-radius: 50%;
	background: var(--uf-gold-500);
	box-shadow: 0 0 0 6px rgba(210, 165, 86, 0.1), 0 0 20px rgba(210, 165, 86, 0.32);
}

.uf-hero-card__result div {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 2px;
}

.uf-hero-card__result span {
	color: rgba(255, 255, 255, 0.46);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.uf-hero-card__result strong {
	color: var(--uf-white);
	font-size: 12px;
	font-weight: 660;
	line-height: 1.35;
}

.uf-hero-card__footer {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	padding-top: 20px;
}

.uf-hero-card__footer > div {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 3px;
}

.uf-hero-card__footer span {
	color: rgba(255, 255, 255, 0.38);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.uf-hero-card__footer strong {
	font-size: 13px;
	font-weight: 660;
}

@keyframes uf-card-signal {
	0% {
		left: 0;
		opacity: 0;
	}
	15%,
	78% {
		opacity: 1;
	}
	100% {
		left: calc(100% - 7px);
		opacity: 0;
	}
}

@keyframes uf-card-live {
	0%,
	100% {
		box-shadow: 0 0 0 4px rgba(117, 219, 138, 0.1);
		opacity: 0.8;
	}
	50% {
		box-shadow: 0 0 0 7px rgba(117, 219, 138, 0.02), 0 0 14px rgba(117, 219, 138, 0.34);
		opacity: 1;
	}
}

.uf-hero__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 22px;
	border-top: 1px solid var(--uf-line);
	color: var(--uf-muted);
	font-size: 12px;
	font-weight: 650;
}

.uf-hero__foot p {
	margin: 0;
}

.uf-hero__foot a {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--uf-green-800);
}

/* Subscription costs */

.uf-costs {
	background:
		radial-gradient(circle at 8% 18%, rgba(189, 232, 200, 0.34), transparent 27%),
		radial-gradient(circle at 92% 82%, rgba(239, 212, 158, 0.3), transparent 30%),
		var(--uf-cream);
	overflow: hidden;
}

.uf-costs::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(31, 64, 38, 0.16), transparent);
	content: "";
}

.uf-costs__heading {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
	gap: clamp(45px, 8vw, 105px);
	align-items: end;
	margin-bottom: 55px;
}

.uf-costs__heading h2 {
	max-width: 780px;
	margin: 10px 0 0;
	color: var(--uf-green-950);
	font-size: clamp(45px, 6vw, 72px);
	font-weight: 760;
	line-height: 0.98;
}

.uf-costs__heading h2 em,
.uf-costs__opportunity h3 em {
	color: var(--uf-green-500);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
}

.uf-costs__heading > p {
	margin: 0 0 4px;
	color: var(--uf-copy);
	font-size: 16px;
	line-height: 1.75;
}

.uf-costs__heading > p strong {
	color: var(--uf-green-900);
	font-weight: 760;
}

.uf-costs__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.16fr) minmax(350px, 0.84fr);
	gap: 22px;
	align-items: stretch;
}

.uf-cost-chart {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(22px, 2.4vw, 34px);
	align-items: center;
	padding: clamp(28px, 4vw, 48px);
	border: 1px solid var(--uf-panel-border);
	border-radius: var(--uf-radius-lg);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--uf-panel-shadow);
}

.uf-cost-chart__visual-column {
	display: grid;
	min-width: 0;
	align-content: center;
	gap: 18px;
}

.uf-cost-chart__visual {
	position: relative;
	width: min(100%, 380px);
	aspect-ratio: 1;
	margin-inline: auto;
}

.uf-cost-chart__example-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	padding: 6px 9px;
	border: 1px solid rgba(138, 97, 29, 0.18);
	border-radius: 999px;
	background: rgba(255, 248, 231, 0.94);
	box-shadow: 0 7px 18px rgba(16, 38, 23, 0.08);
	color: #805f25;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0.075em;
	line-height: 1;
	text-transform: uppercase;
	pointer-events: none;
}

.uf-cost-chart__visual svg {
	width: 100%;
	height: 100%;
	overflow: visible;
	transform: rotate(-90deg);
}

.uf-site .uf-cost-chart__track,
.uf-site .uf-cost-chart__segment {
	fill: none;
	stroke-linecap: butt;
}

.uf-site .uf-cost-chart__track {
	stroke: rgba(31, 64, 38, 0.08);
	stroke-width: 22;
}

.uf-site .uf-cost-chart__segment {
	stroke-width: 22;
	cursor: pointer;
	transition:
		opacity 180ms ease,
		stroke-width 180ms ease,
		filter 180ms ease;
}

.uf-site .uf-cost-chart__segment--lenses {
	stroke: var(--uf-green-900);
}

.uf-site .uf-cost-chart__segment--mobile {
	stroke: var(--uf-gold-500);
}

.uf-site .uf-cost-chart__segment--internet {
	stroke: var(--uf-green-500);
}

.uf-site .uf-cost-chart__segment--fitness {
	stroke: var(--uf-mint-300);
}

.uf-cost-chart.has-active-segment .uf-cost-chart__segment.is-muted {
	opacity: 0.22;
}

.uf-site .uf-cost-chart__segment.is-active {
	stroke-width: 27;
	filter: drop-shadow(0 6px 7px rgba(16, 38, 23, 0.18));
}

.uf-cost-chart__center {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	width: 50%;
	aspect-ratio: 1;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 10px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--uf-green-900);
	cursor: default;
	pointer-events: none;
	transform: translate(-50%, -50%);
}

.uf-cost-chart__center span,
.uf-cost-chart__center strong,
.uf-cost-chart__center small {
	position: relative;
	z-index: 1;
	display: block;
	text-align: center;
}

.uf-cost-chart__center span {
	margin-bottom: 5px;
	color: var(--uf-muted);
	font-size: clamp(9px, 1vw, 11px);
	font-weight: 760;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.uf-cost-chart__center strong {
	font-size: clamp(23px, 2.5vw, 34px);
	font-weight: 790;
	letter-spacing: -0.045em;
	line-height: 1;
}

.uf-cost-chart__center small {
	margin-top: 8px;
	color: var(--uf-copy);
	font-size: clamp(9px, 1vw, 11px);
	font-weight: 620;
	line-height: 1.25;
}

.uf-cost-chart__annual {
	width: min(100%, 380px);
	margin: 0 auto;
	padding: 17px 18px 16px;
	border: 1px solid rgba(31, 64, 38, 0.1);
	border-radius: 16px;
	background: linear-gradient(145deg, rgba(244, 240, 231, 0.92), rgba(237, 247, 239, 0.72));
}

.uf-cost-chart__annual figcaption {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-bottom: 14px;
}

.uf-cost-chart__annual figcaption span {
	color: var(--uf-green-500);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.uf-cost-chart__annual figcaption strong {
	color: var(--uf-green-900);
	font-size: 14px;
	font-weight: 760;
	letter-spacing: -0.02em;
}

.uf-cost-chart__annual-row + .uf-cost-chart__annual-row {
	margin-top: 10px;
}

.uf-cost-chart__annual-row > div {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 5px;
}

.uf-cost-chart__annual-row span,
.uf-cost-chart__annual-row b {
	font-size: 9px;
	font-weight: 680;
}

.uf-cost-chart__annual-row span {
	color: var(--uf-copy);
}

.uf-cost-chart__annual-row b {
	color: var(--uf-green-900);
	white-space: nowrap;
}

.uf-cost-chart__annual-bar {
	position: relative;
	display: block;
	height: 7px;
	border-radius: 999px;
	background: rgba(31, 64, 38, 0.09);
	overflow: hidden;
}

.uf-cost-chart__annual-bar > span {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: var(--uf-green-900);
}

.uf-cost-chart__annual-row--scenario .uf-cost-chart__annual-bar {
	background: rgba(210, 165, 86, 0.25);
}

.uf-cost-chart__annual-row--scenario .uf-cost-chart__annual-bar > span {
	position: relative;
	width: 85%;
	background: linear-gradient(90deg, var(--uf-green-500), #78a67f);
}

.uf-cost-chart__annual-row--scenario .uf-cost-chart__annual-bar > span::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 6%;
	height: 100%;
	background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0 2px, transparent 2px 4px);
	content: "";
}

.uf-cost-chart__annual > p {
	margin: 13px 0 0;
	padding-top: 11px;
	border-top: 1px solid rgba(31, 64, 38, 0.09);
	color: var(--uf-copy);
	font-size: 9px;
	font-weight: 620;
	line-height: 1.4;
}

.uf-cost-chart__annual > p strong {
	color: #8a611d;
	font-size: 11px;
	font-weight: 800;
}

.uf-cost-investment__open {
	display: flex;
	width: min(100%, 380px);
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: 0 auto;
	padding: 13px 15px;
	border: 1px solid var(--uf-green-950);
	border-radius: 13px;
	background: var(--uf-green-950);
	box-shadow: 0 9px 22px rgba(16, 38, 23, 0.13);
	color: var(--uf-white) !important;
	cursor: pointer;
	font-family: inherit;
	font-size: 11px;
	font-weight: 760;
	line-height: 1.3;
	text-align: left;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.uf-cost-investment__open > span:last-child {
	color: var(--uf-gold-300);
	font-size: 17px;
	line-height: 1;
	transition: transform 180ms ease;
}

.uf-cost-investment__open:hover,
.uf-cost-investment__open:focus-visible {
	border-color: var(--uf-green-700);
	background: var(--uf-green-800);
	box-shadow: 0 12px 26px rgba(16, 38, 23, 0.18);
	color: var(--uf-white) !important;
	transform: translateY(-1px);
}

.uf-cost-investment__open:hover > span:last-child,
.uf-cost-investment__open:focus-visible > span:last-child {
	transform: translateX(3px);
}

.uf-cost-chart__controls {
	display: grid;
	min-width: 0;
	align-content: center;
	gap: 12px;
}

.uf-cost-household {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 12px 13px;
	border: 1px solid rgba(31, 64, 38, 0.1);
	border-radius: 15px;
	background: rgba(237, 247, 239, 0.62);
}

.uf-cost-household > div:first-child {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 1px;
}

.uf-cost-household > div:first-child span {
	color: var(--uf-green-900);
	font-size: 11px;
	font-weight: 780;
}

.uf-cost-household > div:first-child small {
	color: var(--uf-muted);
	font-size: 8px;
	font-weight: 600;
	line-height: 1.35;
}

.uf-cost-household__switch {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	flex: 0 0 auto;
	padding: 3px;
	border: 1px solid rgba(31, 64, 38, 0.12);
	border-radius: 10px;
	background: var(--uf-white);
}

.uf-cost-household__switch button {
	min-width: 59px;
	padding: 7px 10px;
	border: 0;
	border-radius: 7px;
	background: transparent;
	color: var(--uf-copy);
	cursor: pointer;
	font-size: 10px;
	font-weight: 750;
	transition:
		background-color 160ms ease,
		color 160ms ease,
		box-shadow 160ms ease;
}

.uf-cost-household__switch button[aria-pressed="true"] {
	background: var(--uf-green-900);
	box-shadow: 0 5px 12px rgba(16, 38, 23, 0.18);
	color: var(--uf-white) !important;
	-webkit-text-fill-color: var(--uf-white);
}

.uf-cost-household__switch button:focus-visible {
	outline: 2px solid rgba(31, 64, 38, 0.35);
	outline-offset: 2px;
}

.uf-cost-chart__legend {
	display: grid;
	gap: 4px;
}

.uf-cost-chart__legend button {
	display: grid;
	grid-template-columns: 12px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	width: 100%;
	padding: 14px 12px;
	border: 1px solid transparent;
	border-radius: 13px;
	background: transparent;
	color: var(--uf-ink);
	cursor: pointer;
	text-align: left;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		transform 180ms ease;
}

.uf-cost-chart__legend button:hover,
.uf-cost-chart__legend button:focus-visible,
.uf-cost-chart__legend button[aria-pressed="true"] {
	border-color: rgba(31, 64, 38, 0.1);
	background: var(--uf-mint-100);
	transform: translateX(3px);
}

.uf-cost-chart__legend button:focus-visible {
	outline: 2px solid rgba(31, 64, 38, 0.34);
	outline-offset: 2px;
}

.uf-cost-chart__legend button:disabled {
	border-color: transparent;
	background: transparent;
	cursor: not-allowed;
	opacity: 0.4;
	transform: none;
}

.uf-cost-chart__swatch {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.uf-cost-chart__swatch--lenses {
	background: var(--uf-green-900);
}

.uf-cost-chart__swatch--mobile {
	background: var(--uf-gold-500);
}

.uf-cost-chart__swatch--internet {
	background: var(--uf-green-500);
}

.uf-cost-chart__swatch--fitness {
	background: var(--uf-mint-300);
	box-shadow: inset 0 0 0 1px rgba(31, 64, 38, 0.12);
}

.uf-cost-chart__legend button > span {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.uf-cost-chart__legend .uf-cost-chart__legend-price {
	align-items: flex-end;
	text-align: right;
}

.uf-cost-chart__legend-price small {
	white-space: nowrap;
}

.uf-cost-chart__legend strong,
.uf-cost-chart__legend b {
	font-size: 13px;
	font-weight: 740;
}

.uf-cost-chart__legend small {
	margin-top: 1px;
	color: var(--uf-muted);
	font-size: 10px;
	font-weight: 600;
}

.uf-cost-chart__legend b {
	color: var(--uf-green-900);
	white-space: nowrap;
}

.uf-cost-editor {
	border: 1px solid rgba(31, 64, 38, 0.11);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.72);
	overflow: hidden;
}

.uf-cost-editor summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 13px 38px 13px 14px;
	cursor: pointer;
	list-style: none;
}

.uf-cost-editor summary::-webkit-details-marker {
	display: none;
}

.uf-cost-editor summary::after {
	position: absolute;
	top: 50%;
	right: 15px;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid var(--uf-green-800);
	border-bottom: 1.5px solid var(--uf-green-800);
	content: "";
	transform: translateY(-70%) rotate(45deg);
	transition: transform 180ms ease;
}

.uf-cost-editor[open] summary::after {
	transform: translateY(-25%) rotate(225deg);
}

.uf-cost-editor summary span,
.uf-cost-editor summary small {
	display: block;
}

.uf-cost-editor summary span {
	color: var(--uf-green-900);
	font-size: 11px;
	font-weight: 780;
}

.uf-cost-editor summary small {
	color: var(--uf-muted);
	font-size: 8px;
	font-weight: 600;
	text-align: right;
}

.uf-cost-editor__body {
	padding: 14px;
	border-top: 1px solid rgba(31, 64, 38, 0.09);
	background: rgba(247, 248, 245, 0.82);
}

.uf-cost-editor__body > p {
	margin: 0 0 12px;
	color: var(--uf-muted);
	font-size: 9px;
	line-height: 1.5;
}

.uf-cost-editor__field {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 130px;
	gap: 12px;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid rgba(31, 64, 38, 0.075);
}

.uf-cost-editor__field > label:first-child {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--uf-green-900);
	font-size: 10px;
	font-weight: 720;
}

.uf-cost-editor__field input[type="checkbox"] {
	width: 15px;
	height: 15px;
	margin: 0;
	accent-color: var(--uf-green-800);
}

.uf-cost-editor__amount {
	position: relative;
	display: block;
	margin: 0;
}

.uf-cost-editor__amount input[type="number"] {
	width: 100%;
	height: 35px;
	margin: 0;
	padding: 6px 32px 6px 9px;
	border: 1px solid rgba(31, 64, 38, 0.18);
	border-radius: 8px;
	background: var(--uf-white);
	color: var(--uf-green-900);
	font-size: 10px;
	font-weight: 700;
}

.uf-cost-editor__amount input[type="number"]:focus {
	border-color: var(--uf-green-500);
	outline: 0;
	box-shadow: 0 0 0 3px rgba(90, 138, 98, 0.12);
}

.uf-cost-editor__amount > span:last-child {
	position: absolute;
	top: 50%;
	right: 9px;
	color: var(--uf-muted);
	font-size: 9px;
	font-weight: 650;
	pointer-events: none;
	transform: translateY(-50%);
}

.uf-cost-editor__field.is-disabled .uf-cost-editor__amount {
	opacity: 0.42;
}

.uf-cost-editor__save {
	display: flex;
	width: fit-content;
	min-height: 29px;
	align-items: center;
	justify-content: center;
	margin: 10px 0 0 auto;
	padding: 5px 10px;
	border: 1px solid rgba(31, 64, 38, 0.16);
	border-radius: 7px;
	background: var(--uf-white);
	color: var(--uf-green-800);
	cursor: pointer;
	font-size: 8px !important;
	font-weight: 760;
	letter-spacing: 0.02em;
}

.uf-cost-editor__save:hover,
.uf-cost-editor__save:focus-visible {
	border-color: rgba(31, 64, 38, 0.28);
	background: var(--uf-mint-100);
}

.uf-costs__opportunity {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: clamp(34px, 5vw, 58px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--uf-radius-lg);
	background:
		radial-gradient(circle at 100% 0%, rgba(210, 165, 86, 0.2), transparent 36%),
		linear-gradient(145deg, var(--uf-green-900), var(--uf-green-950));
	box-shadow: var(--uf-shadow-lg);
	color: var(--uf-white);
	overflow: hidden;
}

.uf-costs__opportunity::before {
	position: absolute;
	top: -70px;
	right: -70px;
	width: 190px;
	height: 190px;
	border: 1px solid rgba(210, 165, 86, 0.18);
	border-radius: 50%;
	content: "";
}

.uf-costs__eyebrow {
	position: relative;
	margin-bottom: 24px;
	color: var(--uf-gold-300);
	font-size: 10px;
	font-weight: 760;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.uf-costs__opportunity h3 {
	position: relative;
	margin-bottom: 19px;
	color: #f7f4ec !important;
	font-size: clamp(33px, 4vw, 48px);
	font-weight: 730;
	line-height: 1.02;
	-webkit-text-fill-color: #f7f4ec;
}

.uf-costs__opportunity h3 em {
	color: var(--uf-gold-300) !important;
	-webkit-text-fill-color: var(--uf-gold-300);
}

.uf-costs__opportunity > p:not(.uf-costs__eyebrow):not(.uf-costs__disclaimer) {
	position: relative;
	margin-bottom: 28px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 14px;
	line-height: 1.72;
}

.uf-costs__scenario {
	position: relative;
	padding: 20px;
	border: 1px solid rgba(210, 165, 86, 0.24);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.065);
}

.uf-costs__scenario > span {
	display: block;
	margin-bottom: 15px;
	color: var(--uf-gold-300);
	font-size: 10px;
	font-weight: 760;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.uf-costs__scenario > div {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.uf-costs__scenario p {
	margin: 0;
}

.uf-costs__scenario p + p {
	padding-left: 14px;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.uf-costs__scenario strong,
.uf-costs__scenario small {
	display: block;
}

.uf-costs__scenario strong {
	font-size: clamp(20px, 2.25vw, 28px);
	font-weight: 760;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.uf-costs__scenario small {
	margin-top: 7px;
	color: rgba(255, 255, 255, 0.48);
	font-size: 9px;
	font-weight: 650;
	line-height: 1.4;
}

.uf-site .uf-costs__disclaimer {
	position: relative;
	margin: 17px 0 22px;
	color: rgba(255, 255, 255, 0.42);
	font-size: 10px;
	line-height: 1.55;
}

.uf-costs__link {
	position: relative;
	display: inline-flex;
	width: fit-content;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	color: var(--uf-white) !important;
	font-size: 12px;
	font-weight: 730;
}

.uf-costs__link span {
	color: var(--uf-gold-300);
	transition: transform 180ms ease;
}

.uf-costs__link:hover span,
.uf-costs__link:focus-visible span {
	transform: translateX(4px);
}

.uf-cost-investment {
	position: relative;
	margin: 0;
	padding: clamp(30px, 4.5vw, 52px);
	border: 1px solid rgba(31, 64, 38, 0.12);
	border-radius: var(--uf-radius-lg);
	background:
		radial-gradient(circle at 92% 8%, rgba(239, 212, 158, 0.28), transparent 27%),
		radial-gradient(circle at 8% 100%, rgba(189, 232, 200, 0.34), transparent 31%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 245, 0.96));
	box-shadow: var(--uf-panel-shadow);
	overflow: hidden;
}

.uf-costs__layout[hidden],
.uf-cost-investment[hidden] {
	display: none !important;
}

.uf-cost-investment::before {
	position: absolute;
	top: -120px;
	right: -90px;
	width: 300px;
	height: 300px;
	border: 1px solid rgba(210, 165, 86, 0.14);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.uf-cost-investment__heading {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 34px;
	margin-bottom: 27px;
}

.uf-cost-investment__heading h3 {
	max-width: 760px;
	margin: 8px 0 13px;
	color: var(--uf-green-950);
	font-size: clamp(32px, 4.5vw, 50px);
	font-weight: 760;
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.uf-cost-investment__heading > div > p:last-child {
	max-width: 760px;
	margin: 0;
	color: var(--uf-copy);
	font-size: 14px;
	line-height: 1.7;
}

.uf-cost-investment__heading > div > p:last-child strong {
	color: var(--uf-green-900);
	font-weight: 780;
}

.uf-cost-investment__assumption {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 12px;
	border: 1px solid rgba(138, 97, 29, 0.17);
	border-radius: 999px;
	background: rgba(255, 248, 231, 0.88);
	color: #805f25;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.07em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.uf-cost-investment__actions {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	gap: 10px;
}

.uf-cost-investment__back {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 11px;
	border: 1px solid rgba(31, 64, 38, 0.13);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--uf-green-800) !important;
	cursor: pointer;
	font-family: inherit;
	font-size: 10px;
	font-weight: 760;
	line-height: 1.2;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.uf-cost-investment__back:hover,
.uf-cost-investment__back:focus-visible {
	border-color: var(--uf-green-700);
	background: var(--uf-mint-100);
	color: var(--uf-green-950) !important;
	transform: translateX(-2px);
}

.uf-cost-investment__values {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 14px;
}

.uf-cost-investment__values article {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: 16px 17px;
	border: 1px solid rgba(31, 64, 38, 0.1);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 9px 24px rgba(16, 38, 23, 0.045);
}

.uf-cost-investment__values article:nth-child(2) {
	border-color: rgba(210, 165, 86, 0.22);
}

.uf-cost-investment__values article:nth-child(3) {
	background: var(--uf-green-950);
}

.uf-cost-investment__values span {
	margin-bottom: 6px;
	color: var(--uf-green-500);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.uf-cost-investment__values strong {
	color: var(--uf-green-950);
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: 790;
	letter-spacing: -0.045em;
	line-height: 1.05;
	white-space: nowrap;
}

.uf-cost-investment__values small {
	margin-top: 7px;
	color: var(--uf-muted);
	font-size: 9px;
	font-weight: 620;
}

.uf-cost-investment__values article:nth-child(3) span {
	color: var(--uf-gold-300);
}

.uf-cost-investment__values article:nth-child(3) strong {
	color: var(--uf-white);
}

.uf-cost-investment__values article:nth-child(3) small {
	color: rgba(255, 255, 255, 0.53);
}

.uf-cost-investment__plot {
	position: relative;
	padding: 16px 18px 7px;
	border: 1px solid rgba(31, 64, 38, 0.09);
	border-radius: 19px;
	background: rgba(255, 255, 255, 0.67);
	overflow: hidden;
}

.uf-cost-investment__plot svg {
	display: block;
	width: 100%;
	height: auto;
}

.uf-cost-investment__grid line,
.uf-cost-investment__axis,
.uf-cost-investment__marker line,
.uf-cost-investment__line {
	vector-effect: non-scaling-stroke;
}

.uf-cost-investment__grid line {
	stroke: rgba(31, 64, 38, 0.08);
	stroke-width: 1;
}

.uf-cost-investment__axis {
	stroke: rgba(31, 64, 38, 0.18);
	stroke-width: 1;
}

.uf-cost-investment__axis-value {
	fill: var(--uf-muted);
	font-family: var(--uf-font);
	font-size: 7px;
	font-weight: 650;
}

.uf-cost-investment__area {
	fill: url(#uf-investment-area-gradient);
	stroke: none;
}

.uf-cost-investment__line {
	fill: none;
	stroke: var(--uf-green-800);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
}

.uf-cost-investment__marker {
	--uf-invest-marker: var(--uf-green-500);
}

.uf-cost-investment__marker--15 {
	--uf-invest-marker: var(--uf-gold-500);
}

.uf-cost-investment__marker--30 {
	--uf-invest-marker: var(--uf-green-950);
}

.uf-cost-investment__marker line {
	stroke: var(--uf-invest-marker);
	stroke-width: 1.2;
	opacity: 0.58;
}

.uf-cost-investment__marker circle {
	fill: var(--uf-white);
	stroke: var(--uf-invest-marker);
	stroke-width: 2.2;
	vector-effect: non-scaling-stroke;
}

.uf-cost-investment__marker text {
	fill: var(--uf-green-800);
	font-family: var(--uf-font);
	font-size: 8px;
	font-weight: 780;
}

.uf-cost-investment__disclaimer {
	position: relative;
	margin: 15px 0 0;
	color: var(--uf-muted);
	font-size: 9px;
	line-height: 1.55;
}

@media (max-width: 1080px) {
	.uf-costs__layout {
		grid-template-columns: 1fr;
	}

	.uf-cost-chart {
		grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1.2fr);
	}

	.uf-costs__opportunity {
		min-height: 520px;
	}
}

@media (max-width: 860px) {
	.uf-costs__heading {
		grid-template-columns: 1fr;
		gap: 23px;
		margin-bottom: 43px;
	}

	.uf-costs__heading > p {
		max-width: 660px;
	}

	.uf-cost-investment__heading {
		grid-template-columns: 1fr;
		gap: 17px;
	}

	.uf-cost-investment__assumption {
		justify-self: start;
	}

	.uf-cost-investment__actions {
		align-items: flex-start;
	}
}

@media (max-width: 620px) {
	.uf-costs__heading h2 {
		font-size: 39px;
	}

	.uf-costs__heading > p {
		font-size: 15px;
	}

	.uf-cost-chart {
		grid-template-columns: 1fr;
		gap: 23px;
		padding: 23px 18px;
		border-radius: 22px;
	}

	.uf-cost-chart__visual {
		width: min(100%, 320px);
	}

	.uf-cost-household {
		align-items: stretch;
		flex-direction: column;
		gap: 10px;
	}

	.uf-cost-household__switch {
		width: 100%;
	}

	.uf-cost-chart__legend button {
		padding: 12px 10px;
	}

	.uf-costs__opportunity {
		min-height: 0;
		padding: 31px 22px;
		border-radius: 22px;
	}

	.uf-costs__opportunity h3 {
		font-size: 36px;
	}

	.uf-costs__scenario > div {
		grid-template-columns: 1fr;
	}

	.uf-costs__scenario p + p {
		padding-top: 14px;
		padding-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		border-left: 0;
	}

	.uf-cost-investment {
		margin-top: 0;
		padding: 24px 17px 20px;
		border-radius: 22px;
	}

	.uf-cost-investment__heading {
		margin-bottom: 21px;
	}

	.uf-cost-investment__heading h3 {
		font-size: 34px;
	}

	.uf-cost-investment__heading > div > p:last-child {
		font-size: 13px;
	}

	.uf-cost-investment__values {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.uf-cost-investment__values article {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: baseline;
		gap: 3px 12px;
		padding: 13px 14px;
	}

	.uf-cost-investment__values span {
		margin: 0;
	}

	.uf-cost-investment__values strong {
		justify-self: end;
		font-size: 23px;
	}

	.uf-cost-investment__values small {
		grid-column: 1 / -1;
		margin-top: 2px;
	}

	.uf-cost-investment__plot {
		padding: 10px 5px 4px;
		border-radius: 15px;
	}

	.uf-cost-investment__disclaimer {
		font-size: 8px;
	}
}

/* Problems */

.uf-problems {
	background:
		radial-gradient(circle at 8% 12%, rgba(189, 232, 200, 0.28), transparent 27%),
		radial-gradient(circle at 92% 78%, rgba(239, 212, 158, 0.22), transparent 30%),
		var(--uf-white);
	overflow: hidden;
}

.uf-problems::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(31, 64, 38, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(31, 64, 38, 0.035) 1px, transparent 1px);
	background-size: 64px 64px;
	content: "";
	mask-image: linear-gradient(to bottom, transparent, black 18%, black 75%, transparent);
	opacity: 0.34;
	pointer-events: none;
}

.uf-problem-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.uf-problem-card {
	position: relative;
	min-height: 370px;
	padding: 29px 27px;
	border: 1px solid var(--uf-panel-border);
	border-radius: 23px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 247, 0.96)),
		var(--uf-white);
	box-shadow: var(--uf-panel-shadow);
	overflow: hidden;
	transition:
		transform 220ms ease,
		border-color 220ms ease,
		box-shadow 220ms ease;
}

.uf-problem-card::before {
	position: absolute;
	top: -75px;
	right: -75px;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(189, 232, 200, 0.5), transparent 68%);
	content: "";
	pointer-events: none;
}

.uf-problem-card::after {
	position: absolute;
	right: 27px;
	bottom: 24px;
	width: 34px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--uf-gold-500), rgba(210, 165, 86, 0));
	content: "";
	opacity: 0.68;
}

.uf-problem-card:hover {
	z-index: 1;
	border-color: rgba(31, 64, 38, 0.22);
	box-shadow: var(--uf-panel-shadow-hover);
	transform: translateY(-6px);
}

.uf-icon-tile {
	position: relative;
	display: grid;
	width: 48px;
	height: 48px;
	margin-bottom: 78px;
	place-items: center;
	border: 1px solid rgba(31, 64, 38, 0.12);
	border-radius: 14px;
	background: linear-gradient(145deg, #f6fbf7, var(--uf-mint-100));
	box-shadow: 0 9px 20px rgba(31, 64, 38, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
	color: var(--uf-green-800);
}

.uf-icon-tile svg {
	width: 23px;
	height: 23px;
}

.uf-problem-card h3 {
	position: relative;
	margin-bottom: 13px;
	color: var(--uf-green-900);
	font-size: 21px;
	font-weight: 740;
	line-height: 1.17;
}

.uf-problem-card p {
	position: relative;
	margin-bottom: 0;
	color: var(--uf-copy);
	font-size: 14px;
	line-height: 1.7;
}

.uf-site .uf-problems__conclusion {
	position: relative;
	max-width: 930px;
	margin: 96px auto 0;
	padding: 32px 42px;
	border: 1px solid var(--uf-panel-border);
	border-radius: 24px;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(237, 247, 239, 0.82));
	box-shadow: var(--uf-panel-shadow);
	color: var(--uf-green-500);
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 560;
	letter-spacing: -0.035em;
	line-height: 1.25;
	text-align: center;
}

.uf-site .uf-problems__conclusion strong {
	color: var(--uf-green-900);
	font-weight: 760;
}

/* Process */

.uf-process {
	background: var(--uf-green-950);
	color: var(--uf-white);
	overflow: hidden;
}

.uf-process::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 80px 80px;
	content: "";
	mask-image: linear-gradient(to bottom, black, transparent);
}

.uf-process__glow {
	position: absolute;
	top: -400px;
	left: 50%;
	width: 850px;
	height: 850px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(90, 138, 98, 0.3), transparent 65%);
	transform: translateX(-50%);
}

.uf-section-heading--light h2 {
	color: var(--uf-white);
}

.uf-section-heading--light .uf-kicker {
	color: var(--uf-gold-300);
}

.uf-section-heading--light > p {
	color: rgba(255, 255, 255, 0.55);
}

.uf-process-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.uf-process-step {
	position: relative;
	display: flex;
	min-height: 230px;
	flex-direction: column;
	justify-content: center;
	padding: 40px 30px;
	border: 1px solid var(--uf-dark-panel-border);
	border-radius: 21px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.025)),
		rgba(16, 38, 23, 0.3);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.055),
		0 20px 45px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	transition:
		transform 220ms ease,
		border-color 220ms ease,
		background-color 220ms ease;
}

.uf-process-step::before {
	position: absolute;
	top: 0;
	right: 28px;
	left: 28px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(189, 232, 200, 0.7), transparent);
	content: "";
	opacity: 0.58;
}

.uf-process-step::after {
	position: absolute;
	top: -75px;
	right: -80px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(90, 138, 98, 0.2), transparent 68%);
	content: "";
}

.uf-process-step:hover {
	border-color: rgba(189, 232, 200, 0.26);
	background-color: rgba(255, 255, 255, 0.035);
	transform: translateY(-5px);
}

.uf-process-step h3 {
	position: relative;
	z-index: 1;
	margin-bottom: 12px;
	color: var(--uf-white);
	font-size: 19px;
	font-weight: 680;
	letter-spacing: -0.025em;
	line-height: 1.25;
}

.uf-process-step p {
	position: relative;
	z-index: 1;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.52);
	font-size: 13px;
	line-height: 1.7;
}

.uf-process-note {
	display: flex;
	max-width: 700px;
	align-items: center;
	gap: 20px;
	margin: 50px auto 0;
	padding: 18px 22px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 19px;
	background: rgba(255, 255, 255, 0.055);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 18px 40px rgba(0, 0, 0, 0.11);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.uf-process-note__icon {
	display: grid;
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	place-items: center;
	border-radius: 15px;
	background: rgba(189, 232, 200, 0.1);
	color: var(--uf-mint-300);
}

.uf-process-note__icon svg {
	width: 26px;
	height: 26px;
}

.uf-process-note strong {
	display: block;
	margin-bottom: 2px;
	font-size: 15px;
}

.uf-process-note p {
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
}

/* Service areas */

.uf-services {
	background:
		radial-gradient(circle at 90% 8%, rgba(189, 232, 200, 0.4), transparent 25%),
		radial-gradient(circle at 6% 92%, rgba(210, 165, 86, 0.13), transparent 24%),
		var(--uf-canvas);
	overflow: hidden;
}

.uf-services::before {
	position: absolute;
	top: 90px;
	right: -150px;
	width: 390px;
	height: 390px;
	border: 1px solid rgba(31, 64, 38, 0.08);
	border-radius: 50%;
	content: "";
}

.uf-services-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.uf-service-card {
	position: relative;
	display: flex;
	min-height: 500px;
	flex-direction: column;
	padding: 34px;
	border: 1px solid var(--uf-panel-border);
	border-radius: 25px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 248, 0.93)),
		var(--uf-white);
	box-shadow: var(--uf-panel-shadow);
	overflow: hidden;
	transition:
		transform 220ms ease,
		border-color 220ms ease,
		box-shadow 220ms ease;
}

.uf-service-card::before {
	position: absolute;
	top: -130px;
	right: -120px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(189, 232, 200, 0.28), transparent 67%);
	content: "";
}

.uf-service-card::after {
	position: absolute;
	top: 0;
	right: 34px;
	left: 34px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(31, 64, 38, 0.2), transparent);
	content: "";
}

.uf-service-card--active {
	border-color: rgba(31, 64, 38, 0.23);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(237, 247, 239, 0.92)),
		var(--uf-white);
	box-shadow: 0 2px 4px rgba(16, 38, 23, 0.04), 0 28px 70px rgba(16, 38, 23, 0.11);
}

.uf-service-card:hover {
	border-color: rgba(31, 64, 38, 0.24);
	box-shadow: var(--uf-panel-shadow-hover);
	transform: translateY(-5px);
}

.uf-service-card__top {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 34px;
}

.uf-service-card__icon {
	display: grid;
	width: 54px;
	height: 54px;
	flex: 0 0 54px;
	place-items: center;
	border: 1px solid rgba(31, 64, 38, 0.11);
	border-radius: 16px;
	background: linear-gradient(145deg, var(--uf-mint-100), var(--uf-white));
	box-shadow: 0 10px 24px rgba(31, 64, 38, 0.08);
	color: var(--uf-green-800);
}

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

.uf-service-card__status {
	padding: 7px 10px;
	border: 1px solid rgba(31, 64, 38, 0.1);
	border-radius: 999px;
	background: rgba(237, 247, 239, 0.82);
	color: var(--uf-green-700);
	font-size: 10px;
	font-weight: 820;
	letter-spacing: 0.075em;
	line-height: 1;
	text-transform: uppercase;
}

.uf-service-card--active .uf-service-card__status {
	border-color: rgba(210, 165, 86, 0.28);
	background: rgba(239, 212, 158, 0.22);
	color: #805f25;
}

.uf-service-card h3 {
	position: relative;
	z-index: 1;
	margin-bottom: 14px;
	color: var(--uf-green-900);
	font-size: clamp(28px, 3vw, 39px);
	font-weight: 780;
}

.uf-service-card > p {
	position: relative;
	z-index: 1;
	max-width: 510px;
	margin-bottom: 25px;
	color: var(--uf-copy);
	font-size: 15px;
	line-height: 1.72;
}

.uf-service-card__facts {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.uf-service-card__facts li {
	padding: 7px 10px;
	border: 1px solid rgba(31, 64, 38, 0.1);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--uf-green-700);
	font-size: 11px;
	font-weight: 690;
}

.uf-service-card__modes {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: auto;
	padding-top: 25px;
	border-top: 1px solid var(--uf-line);
}

.uf-service-card__modes span {
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(31, 64, 38, 0.055);
	color: var(--uf-green-800);
	font-size: 12px;
	font-weight: 740;
	text-align: center;
}

.uf-service-card__link {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	margin-top: 22px;
	color: var(--uf-green-800);
	font-size: 13px;
	font-weight: 780;
}

.uf-service-card__link span {
	transition: transform 180ms ease;
}

.uf-service-card__link:hover span {
	transform: translateX(3px);
}

.uf-services__note {
	display: block;
	max-width: 820px;
	margin: 52px auto 0 !important;
	padding: 18px 23px;
	border: 1px solid rgba(31, 64, 38, 0.1);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.7);
	color: var(--uf-copy);
	font-size: 13px;
	line-height: 1.65;
	text-align: center;
}

.uf-services__note strong {
	color: var(--uf-green-900);
}

.uf-service-explorer {
	position: relative;
	display: grid;
	grid-template-columns: minmax(250px, 0.64fr) minmax(0, 1.36fr);
	gap: 14px;
	padding: 12px;
	border: 1px solid rgba(31, 64, 38, 0.12);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.56);
	box-shadow: 0 30px 85px rgba(16, 38, 23, 0.1);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.uf-service-picker {
	display: grid;
	align-content: start;
	gap: 9px;
	padding: 14px;
	border-radius: 22px;
	background: rgba(247, 248, 245, 0.9);
}

.uf-service-picker__label {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 2px 5px 10px;
	color: var(--uf-green-800);
	font-size: 11px;
	font-weight: 820;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.uf-service-picker__label > span,
.uf-service-detail__decision-head > span {
	display: grid;
	width: 25px;
	height: 25px;
	flex: 0 0 25px;
	place-items: center;
	border-radius: 50%;
	background: var(--uf-green-900);
	color: var(--uf-white);
	font-size: 11px;
	font-weight: 800;
}

.uf-service-picker__option {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 12px;
	width: 100%;
	min-width: 0;
	padding: 13px;
	border: 1px solid transparent;
	border-radius: 15px;
	background: transparent;
	box-shadow: none;
	color: var(--uf-green-900);
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.uf-service-picker__option:hover {
	border-color: rgba(31, 64, 38, 0.12);
	background: var(--uf-white);
	transform: translateX(2px);
}

.uf-service-picker__option:focus-visible {
	outline: 3px solid rgba(45, 88, 53, 0.2);
	outline-offset: 2px;
}

.uf-service-picker__option.is-active {
	border-color: rgba(255, 255, 255, 0.08);
	background:
		radial-gradient(circle at 12% 10%, rgba(189, 232, 200, 0.14), transparent 35%),
		var(--uf-green-950);
	box-shadow: 0 13px 30px rgba(16, 38, 23, 0.2);
	color: var(--uf-white);
	transform: none;
}

.uf-service-picker__icon {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(31, 64, 38, 0.1);
	border-radius: 12px;
	background: var(--uf-white);
	color: var(--uf-green-800);
}

.uf-service-picker__option.is-active .uf-service-picker__icon {
	border-color: rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.08);
	color: var(--uf-mint-300);
}

.uf-service-picker__icon svg {
	width: 21px;
	height: 21px;
}

.uf-service-picker__copy {
	display: grid;
	min-width: 0;
	gap: 3px;
}

.uf-service-picker__copy strong {
	overflow: hidden;
	font-size: 13px;
	font-weight: 760;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.uf-service-picker__option.is-active .uf-service-picker__copy strong {
	color: var(--uf-white, #fff) !important;
	-webkit-text-fill-color: var(--uf-white, #fff) !important;
}

.uf-service-picker__copy small {
	color: var(--uf-muted);
	font-size: 9px;
	font-weight: 780;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.uf-service-picker__option.is-active small {
	color: var(--uf-gold-300);
}

.uf-service-picker__arrow {
	color: var(--uf-green-500);
	font-size: 17px;
	transition: transform 180ms ease;
}

.uf-service-picker__option.is-active .uf-service-picker__arrow {
	color: var(--uf-gold-300);
	transform: translateX(2px);
}

.uf-service-details {
	min-width: 0;
}

.uf-service-detail {
	min-height: 100%;
	padding: clamp(30px, 4vw, 48px);
	border: 1px solid rgba(31, 64, 38, 0.1);
	border-radius: 22px;
	background:
		radial-gradient(circle at 100% 0, rgba(189, 232, 200, 0.25), transparent 30%),
		var(--uf-white);
	box-shadow: 0 18px 55px rgba(16, 38, 23, 0.07);
}

.uf-service-detail[hidden] {
	display: none !important;
}

.uf-service-detail.is-active {
	animation: uf-service-panel-in 360ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

@keyframes uf-service-panel-in {
	from { opacity: 0.55; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

.uf-service-detail__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.uf-service-detail__top .uf-kicker {
	margin-bottom: 8px;
}

.uf-service-detail__top h3 {
	margin: 0;
	font-size: clamp(34px, 4.3vw, 53px);
	letter-spacing: -0.05em;
	line-height: 1.02;
}

.uf-service-detail__status {
	flex: 0 0 auto;
	padding: 8px 11px;
	border: 1px solid rgba(31, 64, 38, 0.11);
	border-radius: 999px;
	background: var(--uf-canvas);
	color: var(--uf-green-700);
	font-size: 9px;
	font-weight: 820;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.uf-service-detail__status.is-open {
	border-color: rgba(210, 165, 86, 0.28);
	background: rgba(239, 212, 158, 0.22);
	color: #805f25;
}

.uf-service-detail__description {
	max-width: 690px;
	margin: 22px 0 26px;
	color: var(--uf-copy);
	font-size: 15px;
	line-height: 1.72;
}

.uf-service-detail__needs {
	padding: 20px;
	border: 1px solid rgba(31, 64, 38, 0.09);
	border-radius: 16px;
	background: rgba(247, 248, 245, 0.88);
}

.uf-service-detail__needs > strong {
	display: block;
	margin-bottom: 12px;
	color: var(--uf-green-900);
	font-size: 12px;
}

.uf-service-detail__needs ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.uf-service-detail__needs li {
	display: flex;
	align-items: center;
	gap: 7px;
	color: var(--uf-green-700);
	font-size: 11px;
	font-weight: 690;
	line-height: 1.35;
}

.uf-service-detail__needs li > span {
	display: grid;
	width: 19px;
	height: 19px;
	flex: 0 0 19px;
	place-items: center;
	border-radius: 50%;
	background: var(--uf-mint-100);
	color: var(--uf-green-800);
	font-size: 10px;
}

.uf-service-detail__decision {
	margin-top: 28px;
}

.uf-service-detail__decision-head {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 14px;
}

.uf-service-detail__decision-head > div {
	display: grid;
	gap: 1px;
}

.uf-service-detail__decision-head strong {
	color: var(--uf-green-900);
	font-size: 13px;
}

.uf-service-detail__decision-head small {
	color: var(--uf-muted);
	font-size: 10px;
}

.uf-service-modes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.uf-service-modes > button {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-width: 0;
	padding: 14px;
	border: 1px solid rgba(31, 64, 38, 0.12);
	border-radius: 15px;
	background: var(--uf-white);
	box-shadow: none;
	color: var(--uf-green-900);
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.uf-service-modes > button:hover {
	border-color: rgba(31, 64, 38, 0.25);
	transform: translateY(-1px);
}

.uf-service-modes > button:focus-visible {
	outline: 3px solid rgba(45, 88, 53, 0.2);
	outline-offset: 2px;
}

.uf-service-modes > button.is-active {
	border-color: rgba(31, 64, 38, 0.3);
	background: var(--uf-mint-100);
	box-shadow: inset 0 0 0 1px rgba(31, 64, 38, 0.04), 0 10px 24px rgba(31, 64, 38, 0.08);
}

.uf-service-mode__icon {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 12px;
	background: var(--uf-canvas);
	color: var(--uf-green-700);
}

.uf-service-modes > button.is-active .uf-service-mode__icon {
	background: var(--uf-green-900, #16301c);
	color: var(--uf-white);
}

.uf-service-mode__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.uf-service-modes > button > span:last-child {
	display: grid;
	min-width: 0;
	gap: 3px;
}

.uf-service-modes strong {
	font-size: 12px;
	font-weight: 760;
	line-height: 1.25;
}

.uf-service-modes small {
	color: var(--uf-muted);
	font-size: 9px;
	line-height: 1.25;
}

.uf-service-detail__result {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 12px;
	padding: 17px 18px;
	border: 1px solid rgba(31, 64, 38, 0.1);
	border-radius: 15px;
	background: linear-gradient(90deg, rgba(31, 64, 38, 0.055), rgba(189, 232, 200, 0.13));
}

.uf-service-detail__result > div {
	display: grid;
	gap: 3px;
}

.uf-service-detail__result span:first-child {
	color: var(--uf-green-700);
	font-size: 9px;
	font-weight: 820;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.uf-service-detail__result strong {
	font-size: 14px;
	font-weight: 780;
}

.uf-service-detail__result p {
	max-width: 650px;
	margin: 0;
	color: var(--uf-copy);
	font-size: 11px;
	line-height: 1.55;
}

.uf-service-detail__result-mark {
	display: grid;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	place-items: center;
	border-radius: 50%;
	background: var(--uf-green-900);
	color: var(--uf-white) !important;
	font-size: 13px !important;
}

.uf-service-detail__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 25px;
	padding-top: 22px;
	border-top: 1px solid rgba(31, 64, 38, 0.1);
}

.uf-service-detail__footer p {
	max-width: 360px;
	margin: 0;
	color: var(--uf-copy);
	font-size: 11px;
	line-height: 1.55;
}

.uf-service-detail__footer p strong {
	color: var(--uf-green-900);
}

.uf-service-detail__footer .uf-button {
	width: auto;
	flex: 0 0 auto;
	text-decoration: none;
}

.uf-site .uf-service-detail__footer .uf-button--primary,
.uf-site .uf-service-detail__footer .uf-button--primary:visited {
	color: var(--uf-white, #fff) !important;
	-webkit-text-fill-color: var(--uf-white, #fff) !important;
}

/* Initiative */

.uf-initiative {
	background:
		radial-gradient(circle at 80% 10%, rgba(189, 232, 200, 0.35), transparent 35%),
		var(--uf-canvas);
}

.uf-initiative__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.7fr);
	align-items: center;
	gap: 115px;
}

.uf-initiative__copy h2 {
	max-width: 680px;
	margin-bottom: 25px;
	color: var(--uf-green-900);
	font-size: clamp(42px, 5.2vw, 68px);
	font-weight: 780;
}

.uf-initiative__copy > p:not(.uf-kicker):not(.uf-initiative__micro) {
	max-width: 660px;
	margin-bottom: 31px;
	color: var(--uf-copy);
	font-size: 17px;
	line-height: 1.75;
}

.uf-initiative__micro {
	margin: 17px 0 0;
	color: var(--uf-muted);
	font-size: 12px;
	font-weight: 650;
}

.uf-offer-card {
	position: relative;
	border: 1px solid rgba(31, 64, 38, 0.15);
	border-radius: var(--uf-radius-lg);
	background:
		linear-gradient(rgba(255, 255, 255, 0.96), rgba(252, 253, 251, 0.98)),
		var(--uf-white);
	box-shadow: 0 2px 4px rgba(16, 38, 23, 0.04), 0 40px 95px rgba(16, 38, 23, 0.15);
	overflow: hidden;
}

.uf-offer-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--uf-green-800), var(--uf-gold-500), var(--uf-mint-300));
	content: "";
}

.uf-offer-card__head {
	padding: 23px 25px;
	border-bottom: 1px solid var(--uf-line);
}

.uf-offer-card__head > div {
	display: flex;
	align-items: center;
	gap: 10px;
}

.uf-offer-card__head p {
	margin: 0;
	color: var(--uf-green-900);
	font-size: 13px;
	font-weight: 800;
}

.uf-offer-card__head > span {
	padding: 5px 9px;
	border-radius: 6px;
	background: var(--uf-mint-100);
	color: var(--uf-green-700);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.uf-offer-card__body {
	padding: 35px 28px 28px;
	background:
		linear-gradient(rgba(31, 64, 38, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(31, 64, 38, 0.025) 1px, transparent 1px);
	background-size: 34px 34px;
}

.uf-offer-card__body > p {
	margin-bottom: 18px;
	color: var(--uf-muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.uf-offer-card__body ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.uf-offer-card__body li {
	position: relative;
	padding: 16px 16px 16px 40px;
	border: 1px solid rgba(31, 64, 38, 0.09);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 7px 18px rgba(16, 38, 23, 0.035);
	color: var(--uf-green-900);
	font-size: 14px;
	font-weight: 650;
}

.uf-offer-card__body li::before {
	position: absolute;
	top: 50%;
	left: 17px;
	width: 10px;
	height: 10px;
	border: 2px solid var(--uf-green-500);
	border-radius: 50%;
	content: "";
	transform: translateY(-50%);
	box-shadow: 0 0 0 4px rgba(90, 138, 98, 0.1);
}

.uf-offer-card__foot {
	padding: 22px 28px;
	background:
		radial-gradient(circle at 86% 20%, rgba(189, 232, 200, 0.15), transparent 36%),
		var(--uf-green-900);
	color: var(--uf-white);
}

.uf-offer-card__foot span {
	color: rgba(255, 255, 255, 0.55);
	font-size: 11px;
	font-weight: 650;
}

.uf-offer-card__foot strong {
	font-size: 13px;
}

/* Safety */

.uf-safety {
	padding-top: 90px;
	background:
		radial-gradient(circle at 12% 92%, rgba(189, 232, 200, 0.28), transparent 28%),
		var(--uf-cream);
}

.uf-safety__intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: end;
	gap: 100px;
	margin-bottom: 62px;
}

.uf-safety__intro .uf-kicker {
	grid-column: 1 / -1;
	margin-bottom: -80px;
}

.uf-safety-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.uf-safety-card {
	position: relative;
	display: flex;
	min-height: 215px;
	flex-direction: column;
	justify-content: center;
	padding: 36px 29px 29px;
	border: 1px solid var(--uf-panel-border);
	border-radius: 21px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(249, 248, 243, 0.9));
	box-shadow: var(--uf-panel-shadow);
	overflow: hidden;
	transition:
		transform 220ms ease,
		border-color 220ms ease,
		box-shadow 220ms ease;
}

.uf-safety-card::before {
	display: none;
	content: none;
}

.uf-safety-card::after {
	position: absolute;
	top: -90px;
	right: -75px;
	width: 170px;
	height: 170px;
	border: 1px solid rgba(210, 165, 86, 0.13);
	border-radius: 50%;
	content: "";
}

.uf-safety-card:hover {
	border-color: rgba(31, 64, 38, 0.22);
	box-shadow: var(--uf-panel-shadow-hover);
	transform: translateY(-5px);
}

.uf-safety-card h3 {
	margin-bottom: 9px;
	color: var(--uf-green-900);
	font-size: 18px;
	font-weight: 740;
}

.uf-safety-card p {
	margin: 0;
	color: var(--uf-copy);
	font-size: 13px;
	line-height: 1.65;
}

/* Logo story */

.uf-logo-story {
	position: relative;
	width: 100%;
	padding: clamp(80px, 9vw, 122px) 0;
	background: var(--uf-green-950);
	color: var(--uf-white);
	overflow: hidden;
}

.uf-logo-story::before {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 84% 16%, rgba(210, 165, 86, 0.18), transparent 28%),
		radial-gradient(circle at 60% 82%, rgba(90, 138, 98, 0.22), transparent 34%);
	content: "";
	pointer-events: none;
}

.uf-logo-story::after {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
	background-size: 52px 52px;
	content: "";
	mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
	opacity: 0.12;
	pointer-events: none;
}

.uf-logo-story__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
	align-items: center;
	gap: clamp(42px, 7vw, 94px);
}

.uf-logo-story__copy {
	max-width: 420px;
}

.uf-logo-story__visual {
	display: grid;
	min-width: 0;
}

.uf-logo-story__eyebrow {
	margin: 0 0 14px;
	color: var(--uf-mint-300);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.uf-logo-story h2 {
	margin: 0 0 24px;
	color: var(--uf-white);
	font-size: clamp(39px, 4.6vw, 56px);
	font-weight: 680;
	letter-spacing: -0.05em;
	line-height: 1.03;
}

.uf-logo-story__text {
	max-width: 410px;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	line-height: 1.72;
}

.uf-logo-story .uf-logo-story__replay {
	display: inline-flex;
	align-items: center;
	flex-direction: column;
	gap: 5px;
	justify-self: center;
	margin: 14px auto 0;
	padding: 0;
	border: 0 !important;
	border-bottom: 0;
	border-radius: 0;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--uf-white) !important;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	opacity: 0;
	pointer-events: none;
	text-decoration: none;
	transform: translateY(8px);
	-webkit-text-fill-color: var(--uf-white) !important;
	transition: color 180ms ease, opacity 280ms ease, transform 340ms cubic-bezier(0.2, 0.75, 0.25, 1), visibility 0s linear 340ms;
	visibility: hidden;
}

.uf-logo-story__stage.is-resolved + .uf-logo-story__replay {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	transition-delay: 220ms, 220ms, 220ms, 220ms;
	visibility: visible;
}

.uf-logo-story .uf-logo-story__replay svg {
	display: block;
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
	transition: transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.uf-logo-story .uf-logo-story__replay:hover,
.uf-logo-story .uf-logo-story__replay:focus,
.uf-logo-story .uf-logo-story__replay:active {
	border-color: transparent !important;
	background: transparent !important;
	color: var(--uf-gold-300) !important;
	-webkit-text-fill-color: var(--uf-gold-300) !important;
}

.uf-logo-story .uf-logo-story__replay:hover svg,
.uf-logo-story .uf-logo-story__replay:focus-visible svg {
	transform: rotate(-55deg);
}

.uf-logo-story .uf-logo-story__replay:focus-visible {
	outline: 2px solid rgba(239, 212, 158, 0.8);
	outline-offset: 5px;
}

.uf-logo-story__stage {
	position: relative;
	min-height: clamp(460px, 54vw, 650px);
	isolation: isolate;
	overflow: hidden;
}

.uf-logo-story__canvas {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: 1;
	filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.12));
	transition: opacity 520ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.uf-logo-story__resolve {
	position: absolute;
	top: 70%;
	left: 50%;
	z-index: 3;
	display: block;
	width: min(92%, 720px);
	justify-items: center;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 12px);
	transition: opacity 520ms ease, transform 680ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.uf-logo-story__resolve p {
	margin: 0;
	color: #fff;
	font-size: clamp(16px, 2vw, 21px);
	font-weight: 520;
	letter-spacing: 0;
	line-height: 1.35;
	text-align: center;
}

.uf-logo-story__resolve p strong,
.uf-logo-story__resolve p span {
	display: block;
}

.uf-logo-story__resolve p strong {
	font-size: clamp(23px, 3vw, 34px);
	font-weight: 790;
	letter-spacing: -0.025em;
}

.uf-logo-story__resolve p span {
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.7);
}

.uf-logo-story__stage.is-resolved .uf-logo-story__resolve {
	opacity: 1;
	transform: translate(-50%, 0);
}

.uf-logo-story__captions {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

.uf-logo-story__caption {
	position: absolute;
	right: auto;
	bottom: 4%;
	left: 50%;
	width: max-content;
	max-width: min(88%, 620px);
	margin: 0;
	padding: 10px 15px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(16, 38, 23, 0.64);
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(14px, 1.8vw, 18px);
	font-weight: 720;
	letter-spacing: -0.02em;
	line-height: 1.3;
	opacity: 0;
	text-align: center;
	transform: translate(-50%, 10px);
	transition: opacity 320ms ease, transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.uf-logo-story__stage.is-scattered .uf-logo-story__caption--scattered,
.uf-logo-story__stage.is-unhappy .uf-logo-story__caption--unhappy,
.uf-logo-story__stage.is-happy .uf-logo-story__caption--happy {
	opacity: 1;
	transform: translate(-50%, 0);
}

/* Founder */

.uf-founder {
	background:
		radial-gradient(circle at 88% 15%, rgba(239, 212, 158, 0.18), transparent 27%),
		var(--uf-white);
}

.uf-founder-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	border: 1px solid var(--uf-panel-border);
	border-radius: 30px;
	background: var(--uf-canvas);
	box-shadow: 0 2px 4px rgba(16, 38, 23, 0.04), 0 36px 90px rgba(16, 38, 23, 0.13);
	overflow: hidden;
}

.uf-team-carousel {
	display: grid;
	min-width: 0;
	grid-template-rows: 1fr auto;
	border-right: 1px solid rgba(31, 64, 38, 0.1);
	background: var(--uf-white);
}

.uf-team-carousel__viewport {
	display: grid;
	min-width: 0;
}

.uf-team-person {
	grid-area: 1 / 1;
	min-width: 0;
	opacity: 0;
	pointer-events: none;
	transform: translateX(14px);
	transition: opacity 280ms ease, transform 380ms cubic-bezier(0.2, 0.75, 0.25, 1), visibility 0s linear 380ms;
	visibility: hidden;
}

.uf-team-person.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
	transition-delay: 90ms, 90ms, 0s;
	visibility: visible;
}

.uf-team-person__photo {
	aspect-ratio: 16 / 10;
	background: var(--uf-mint-100);
	overflow: hidden;
}

.uf-team-person__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 22%;
}

.uf-team-person__body {
	padding: clamp(25px, 3vw, 34px);
}

.uf-team-person__role {
	display: block;
	margin-bottom: 8px;
	color: var(--uf-green-700);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.07em;
	line-height: 1.45;
	text-transform: uppercase;
}

.uf-team-person h3 {
	margin: 0 0 17px;
	color: var(--uf-green-950);
	font-size: clamp(25px, 2.5vw, 32px);
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.uf-team-person p {
	margin: 0 0 12px;
	color: var(--uf-copy);
	font-size: 13px;
	line-height: 1.68;
}

.uf-team-person p:last-child {
	margin-bottom: 0;
}

.uf-team-person__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.uf-team-person__contact {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid rgba(31, 64, 38, 0.13);
	border-radius: 999px;
	background: var(--uf-mint-100);
	color: var(--uf-green-800) !important;
	font-size: 12px;
	font-weight: 750;
	line-height: 1;
	text-decoration: none !important;
	-webkit-text-fill-color: var(--uf-green-800) !important;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.uf-team-person__contact svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
	flex: 0 0 17px;
}

.uf-team-person__contact--email svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.uf-team-person__contact:hover,
.uf-team-person__contact:focus-visible {
	border-color: var(--uf-gold-300);
	background: var(--uf-green-950);
	box-shadow: 0 0 0 3px rgba(239, 212, 158, 0.16), 0 9px 22px rgba(16, 38, 23, 0.14);
	color: var(--uf-gold-300) !important;
	text-decoration: none !important;
	transform: translateY(-1px);
	-webkit-text-fill-color: var(--uf-gold-300) !important;
}

.uf-team-person__contact:focus-visible {
	outline: 2px solid rgba(239, 212, 158, 0.72);
	outline-offset: 3px;
}

.uf-team-carousel__controls {
	display: flex;
	min-height: 74px;
	align-items: center;
	justify-content: space-between;
	padding: 14px clamp(22px, 3vw, 32px);
	border-top: 1px solid rgba(31, 64, 38, 0.1);
}

.uf-team-carousel__controls button {
	display: grid;
	width: 42px;
	height: 42px;
	padding: 0;
	place-items: center;
	border: 1px solid rgba(31, 64, 38, 0.16);
	border-radius: 50%;
	background: var(--uf-canvas);
	box-shadow: none;
	color: var(--uf-green-900);
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.uf-team-carousel__controls button:hover,
.uf-team-carousel__controls button:focus-visible {
	border-color: var(--uf-gold-500);
	background: var(--uf-green-950);
	color: var(--uf-gold-300);
	transform: translateY(-1px);
}

.uf-team-carousel__controls button:focus-visible {
	outline: 3px solid rgba(210, 165, 86, 0.35);
	outline-offset: 3px;
}

.uf-team-carousel__controls svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.uf-team-carousel__controls > span {
	color: var(--uf-muted);
	font-size: 12px;
	font-weight: 760;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.uf-founder-card__visual {
	position: relative;
	display: flex;
	min-height: 480px;
	flex-direction: column;
	justify-content: flex-end;
	padding: 45px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 52%),
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		var(--uf-green-950);
	background-size: auto, 52px 52px, 52px 52px, auto;
	color: var(--uf-white);
	overflow: hidden;
}

.uf-founder-card__visual::before,
.uf-founder-card__visual::after {
	position: absolute;
	border-radius: 50%;
	content: "";
}

.uf-founder-card__visual::before {
	top: -100px;
	right: -160px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(210, 165, 86, 0.15);
	box-shadow:
		0 0 0 55px rgba(210, 165, 86, 0.03),
		0 0 0 110px rgba(210, 165, 86, 0.02);
}

.uf-founder-card__visual::after {
	top: 65px;
	left: 55px;
	width: 160px;
	height: 160px;
	background: radial-gradient(circle, rgba(90, 138, 98, 0.46), transparent 68%);
}

.uf-founder-card__monogram {
	position: absolute;
	top: 45px;
	left: 45px;
	display: grid;
	width: 66px;
	height: 66px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--uf-gold-300);
	font-size: 20px;
	font-weight: 760;
	letter-spacing: -0.03em;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.uf-founder-card__line {
	position: relative;
	width: 45px;
	height: 2px;
	margin-bottom: 20px;
	background: var(--uf-gold-500);
}

.uf-founder-card__visual p {
	position: relative;
	max-width: 360px;
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 23px;
	letter-spacing: -0.025em;
	line-height: 1.35;
}

.uf-founder-card__visual strong {
	color: var(--uf-white);
	font-weight: 710;
}

.uf-founder-card__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 65px 70px;
	border-left: 1px solid rgba(31, 64, 38, 0.08);
	background:
		radial-gradient(circle at 100% 0, rgba(189, 232, 200, 0.25), transparent 31%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 248, 245, 0.94));
}

.uf-founder-card__copy h2 {
	margin-bottom: 28px;
	font-size: clamp(38px, 4vw, 56px);
}

.uf-founder-card__copy > p:not(.uf-kicker) {
	margin-bottom: 16px;
	color: var(--uf-copy);
	font-size: 15px;
	line-height: 1.75;
}

.uf-founder-card__copy .uf-founder-card__hint {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 20px 0 0 !important;
	color: var(--uf-green-700) !important;
	font-size: 12px !important;
	font-weight: 750;
	letter-spacing: 0.03em;
}

.uf-founder-card__hint span {
	color: var(--uf-gold-500);
	font-size: 17px;
}

/* Mission and vision */

.uf-direction {
	background:
		radial-gradient(circle at 14% 18%, rgba(189, 232, 200, 0.42), transparent 28%),
		var(--uf-canvas);
}

.uf-direction__heading {
	max-width: 760px;
	margin: 0 auto 52px;
	text-align: center;
}

.uf-direction__heading h2 {
	margin: 0;
	font-size: clamp(39px, 5vw, 62px);
	letter-spacing: -0.055em;
	line-height: 1.03;
}

.uf-direction__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.uf-direction-card {
	min-height: 440px;
	padding: clamp(34px, 4.5vw, 54px);
	border: 1px solid var(--uf-panel-border);
	border-radius: 28px;
	background: var(--uf-white);
	box-shadow: 0 26px 75px rgba(16, 38, 23, 0.09);
}

.uf-direction-card__icon {
	display: grid;
	width: 54px;
	height: 54px;
	margin-bottom: 34px;
	place-items: center;
	border-radius: 17px;
	background: var(--uf-mint-100);
	color: var(--uf-green-800);
}

.uf-direction-card__icon svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.uf-direction-card h3 {
	max-width: 470px;
	margin: 0 0 24px;
	font-size: clamp(30px, 3.4vw, 45px);
	letter-spacing: -0.045em;
	line-height: 1.06;
}

.uf-direction-card > p:not(.uf-kicker) {
	max-width: 500px;
	margin: 0 0 12px;
	color: var(--uf-copy);
	font-size: 15px;
	line-height: 1.72;
}

.uf-direction-card--dark {
	border-color: rgba(255, 255, 255, 0.1);
	background:
		radial-gradient(circle at 90% 10%, rgba(210, 165, 86, 0.18), transparent 31%),
		var(--uf-green-950);
	box-shadow: 0 30px 85px rgba(16, 38, 23, 0.2);
}

.uf-direction-card--dark .uf-direction-card__icon {
	background: rgba(255, 255, 255, 0.08);
	color: var(--uf-gold-300);
}

.uf-direction-card--dark .uf-kicker {
	color: var(--uf-gold-300);
}

.uf-direction-card--dark h3 {
	color: var(--uf-white);
}

.uf-direction-card--dark > p:not(.uf-kicker) {
	color: rgba(255, 255, 255, 0.72);
}

#hvorfor,
#saadan-virker-det,
#hvem-er-vi,
#spoergsmaal {
	scroll-margin-top: 96px;
}

/* Poll */

.uf-poll {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 48%),
		var(--uf-green-800);
	color: var(--uf-white);
	overflow: hidden;
}

.uf-poll::before {
	position: absolute;
	top: -230px;
	right: -130px;
	width: 610px;
	height: 610px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(189, 232, 200, 0.2), transparent 67%);
	content: "";
}

.uf-poll::after {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 70px 70px;
	content: "";
	mask-image: linear-gradient(90deg, transparent, black 55%, black);
	opacity: 0.28;
	pointer-events: none;
}

.uf-poll__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 0.8fr 1fr;
	align-items: center;
	gap: 110px;
}

.uf-poll__copy .uf-kicker {
	color: var(--uf-gold-300);
}

.uf-poll__copy h2 {
	margin-bottom: 24px;
	color: var(--uf-white);
}

.uf-poll__copy > p {
	color: rgba(255, 255, 255, 0.62);
}

.uf-poll-form {
	position: relative;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 27px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045)),
		rgba(16, 38, 23, 0.18);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.09),
		0 40px 90px rgba(0, 0, 0, 0.22);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.uf-poll-form::before {
	position: absolute;
	top: 0;
	right: 42px;
	left: 42px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(239, 212, 158, 0.85), transparent);
	content: "";
}

.uf-poll-form fieldset {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-bottom: 20px;
	padding: 0;
	border: 0;
}

.uf-poll-form label {
	cursor: pointer;
}

.uf-poll-form input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.uf-poll-form label span {
	display: flex;
	min-height: 57px;
	align-items: center;
	justify-content: space-between;
	padding: 0 17px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 13px;
	background: rgba(255, 255, 255, 0.065);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	font-weight: 680;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.uf-poll-form label:hover span {
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.09);
	transform: translateY(-1px);
}

.uf-poll-form label span::after {
	width: 13px;
	height: 13px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 50%;
	content: "";
	box-shadow: inset 0 0 0 3px transparent;
}

.uf-poll-form input:checked + span {
	border-color: var(--uf-gold-300);
	background: rgba(210, 165, 86, 0.12);
	color: var(--uf-white);
}

.uf-poll-form input:checked + span::after {
	border-color: var(--uf-gold-300);
	background: var(--uf-gold-300);
	box-shadow: inset 0 0 0 3px var(--uf-green-800);
}

.uf-poll-form .uf-button {
	position: relative;
	width: 100%;
}

.uf-poll-form__status {
	min-height: 18px;
	margin: 13px 0 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	text-align: center;
}

.uf-poll-form__status[data-state="success"] {
	color: var(--uf-mint-300);
}

.uf-poll-form__status[data-state="error"] {
	color: #ffd0c7;
}

.uf-poll-form.has-voted fieldset {
	opacity: 0.45;
	pointer-events: none;
}

.uf-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* FAQ */

.uf-faq {
	background:
		radial-gradient(circle at 82% 14%, rgba(189, 232, 200, 0.24), transparent 27%),
		var(--uf-canvas);
}

.uf-faq__layout {
	display: grid;
	grid-template-columns: 0.62fr 1fr;
	align-items: start;
	gap: 120px;
}

.uf-faq__intro {
	position: sticky;
	top: 130px;
}

.uf-faq__intro h2 {
	margin-bottom: 22px;
}

.uf-faq-list {
	display: grid;
	gap: 11px;
}

.uf-faq-list details {
	border: 1px solid var(--uf-panel-border);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 1px 2px rgba(16, 38, 23, 0.025), 0 10px 26px rgba(16, 38, 23, 0.045);
	overflow: hidden;
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		background-color 180ms ease;
}

.uf-faq-list details[open] {
	border-color: rgba(31, 64, 38, 0.19);
	background:
		radial-gradient(circle at 100% 0, rgba(189, 232, 200, 0.25), transparent 36%),
		var(--uf-white);
	box-shadow: var(--uf-panel-shadow);
}

.uf-faq-list summary {
	position: relative;
	display: flex;
	min-height: 86px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 10px 23px;
	color: var(--uf-green-900);
	cursor: pointer;
	font-size: 17px;
	font-weight: 720;
	list-style: none;
}

.uf-faq-list summary::-webkit-details-marker {
	display: none;
}

.uf-faq-list summary span {
	display: grid;
	position: relative;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	place-items: center;
	border: 1px solid rgba(31, 64, 38, 0.11);
	border-radius: 50%;
	background: rgba(237, 247, 239, 0.8);
}

.uf-faq-list summary span::before,
.uf-faq-list summary span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 13px;
	height: 1.5px;
	background: var(--uf-green-700);
	content: "";
	transform: translate(-50%, -50%);
	transition: transform 180ms ease;
}

.uf-faq-list summary span::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.uf-faq-list details[open] summary span::after {
	transform: translate(-50%, -50%) rotate(0);
}

.uf-faq-list details p {
	max-width: 700px;
	margin: -5px 62px 28px 23px;
	color: var(--uf-copy);
	font-size: 14px;
	line-height: 1.75;
}

/* Final CTA */

.uf-final-cta {
	position: relative;
	padding: 105px 0;
	background:
		linear-gradient(rgba(31, 64, 38, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(31, 64, 38, 0.025) 1px, transparent 1px),
		var(--uf-cream);
	background-size: 70px 70px;
	overflow: hidden;
	text-align: center;
}

.uf-final-cta__mesh {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 10%, rgba(189, 232, 200, 0.52), transparent 31%),
		radial-gradient(circle at 82% 100%, rgba(239, 212, 158, 0.48), transparent 35%);
}

.uf-final-cta__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: clamp(62px, 8vw, 95px) clamp(25px, 7vw, 90px);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 32px;
	background:
		radial-gradient(circle at 12% 8%, rgba(189, 232, 200, 0.18), transparent 30%),
		radial-gradient(circle at 88% 100%, rgba(210, 165, 86, 0.16), transparent 34%),
		var(--uf-green-950);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		0 42px 100px rgba(16, 38, 23, 0.22);
	overflow: hidden;
}

.uf-final-cta__inner::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 58px 58px;
	content: "";
	mask-image: radial-gradient(circle at center, black, transparent 77%);
	opacity: 0.3;
	pointer-events: none;
}

.uf-final-cta__inner > * {
	position: relative;
}

.uf-final-cta h2 {
	max-width: 930px;
	margin: 0 auto 34px;
	color: var(--uf-white);
	font-size: clamp(46px, 6.2vw, 76px);
	font-weight: 790;
}

.uf-final-cta .uf-button {
	margin-bottom: 22px;
}

.uf-final-cta .uf-kicker {
	color: var(--uf-gold-300);
}

.uf-site .uf-final-cta .uf-button--primary {
	border-color: rgba(255, 255, 255, 0.88);
	background: var(--uf-white);
	box-shadow: 0 9px 24px rgba(0, 0, 0, 0.2);
	color: var(--uf-green-900);
}

.uf-site .uf-final-cta .uf-button--primary:hover {
	border-color: var(--uf-white);
	background: var(--uf-mint-100);
	color: var(--uf-green-900) !important;
	-webkit-text-fill-color: var(--uf-green-900);
	box-shadow: 0 13px 32px rgba(0, 0, 0, 0.24);
}

.uf-site .uf-final-cta .uf-button--primary:focus,
.uf-site .uf-final-cta .uf-button--primary:focus-visible,
.uf-site .uf-final-cta .uf-button--primary:active {
	color: var(--uf-green-900) !important;
	-webkit-text-fill-color: var(--uf-green-900);
}

/* Footer */

.uf-footer {
	padding: 70px 0 28px;
	background: var(--uf-green-950);
	color: var(--uf-white);
}

.uf-brand--footer {
	display: inline-flex;
	padding: 9px 13px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.uf-brand__footer-logo {
	display: block;
	width: 205px;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.uf-footer__top {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 80px;
	padding-bottom: 65px;
}

.uf-footer__top > div:first-child > p {
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.48);
	font-size: 14px;
}

.uf-footer__links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 45px;
}

.uf-footer__links > div {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.uf-footer__links strong {
	margin-bottom: 7px;
	color: rgba(255, 255, 255, 0.4);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.11em;
}

.uf-footer__links a {
	width: fit-content;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	transition: color 160ms ease;
}

.uf-footer__links a:hover {
	color: var(--uf-white);
}

.uf-footer__project-note {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	gap: 18px;
	margin: 0 0 28px;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-left: 3px solid var(--uf-gold-500);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.045);
}

.uf-footer__project-label {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 4px 9px;
	border: 1px solid rgba(210, 165, 86, 0.28);
	border-radius: 999px;
	background: rgba(210, 165, 86, 0.09);
	color: #e4bd78;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.uf-footer__project-note p {
	max-width: 980px;
	margin: 1px 0 0;
	color: rgba(255, 255, 255, 0.61);
	font-size: 12px;
	font-weight: 450;
	line-height: 1.65;
}

.uf-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.37);
	font-size: 10px;
	font-weight: 650;
}

.uf-footer__bottom p {
	margin: 0;
}

/* Responsive */

@media (max-width: 1080px) {
	.uf-hero__layout {
		grid-template-columns: 1fr 410px;
		gap: 55px;
	}

	.uf-hero h1 {
		font-size: clamp(54px, 7vw, 76px);
	}

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

	.uf-problem-card {
		min-height: 320px;
	}

	.uf-icon-tile {
		margin-bottom: 55px;
	}

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

	.uf-initiative__layout {
		gap: 70px;
	}

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

@media (max-width: 860px) {
	.admin-bar .uf-header {
		top: 46px;
	}

	.uf-section {
		padding: 95px 0;
	}

	.uf-menu-button {
		display: flex;
	}

	.uf-nav {
		position: absolute;
		top: calc(100% + 10px);
		right: 24px;
		left: 24px;
		display: flex;
		max-height: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
		padding: 0 18px;
		border: 1px solid rgba(31, 64, 38, 0.12);
		border-radius: 16px;
		background: rgba(255, 255, 255, 0.97);
		box-shadow: 0 25px 60px rgba(16, 38, 23, 0.14);
		opacity: 0;
		overflow: hidden;
		pointer-events: none;
		transform: translateY(-10px);
		transition:
			max-height 250ms ease,
			opacity 180ms ease,
			transform 180ms ease,
			padding 250ms ease;
		-webkit-backdrop-filter: blur(16px);
		backdrop-filter: blur(16px);
	}

	.uf-menu-open .uf-nav {
		max-height: 470px;
		padding-block: 17px;
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.uf-nav > a:not(.uf-button) {
		padding: 11px 2px;
	}

	.uf-nav > a:not(.uf-button)::after {
		display: none;
	}

	.uf-button--nav {
		margin-top: 5px;
	}

	.uf-hero {
		min-height: auto;
		padding-top: 145px;
	}

	.uf-hero__layout {
		grid-template-columns: 1fr;
		gap: 55px;
	}

	.uf-hero__copy {
		max-width: 720px;
	}

	.uf-hero-card {
		width: min(100%, 620px);
		min-height: 570px;
	}

	.uf-hero__foot {
		margin-top: 65px;
	}

	.uf-section-heading,
	.uf-safety__intro {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.uf-section-heading {
		margin-bottom: 48px;
	}

	.uf-safety__intro .uf-kicker {
		grid-column: auto;
		margin-bottom: -5px;
	}

	.uf-initiative__layout,
	.uf-logo-story__inner,
	.uf-founder-card,
	.uf-poll__layout,
	.uf-faq__layout,
	.uf-footer__top {
		grid-template-columns: 1fr;
	}

	.uf-initiative__layout {
		gap: 60px;
	}

	.uf-service-card {
		min-height: 480px;
		padding: 29px;
	}

	.uf-service-explorer {
		grid-template-columns: 1fr;
	}

	.uf-service-picker {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.uf-service-picker__label {
		grid-column: 1 / -1;
	}

	.uf-logo-story__copy {
		max-width: 660px;
	}

	.uf-logo-story__stage {
		min-height: 540px;
	}

	.uf-offer-card {
		width: min(100%, 560px);
	}

	.uf-founder-card__visual {
		min-height: 390px;
	}

	.uf-founder-card__copy {
		padding: 55px 45px;
		border-top: 1px solid rgba(31, 64, 38, 0.08);
		border-left: 0;
	}

	.uf-team-carousel {
		border-right: 0;
		border-bottom: 1px solid rgba(31, 64, 38, 0.1);
	}

	.uf-team-person__photo {
		aspect-ratio: 16 / 9;
	}

	.uf-direction__grid {
		grid-template-columns: 1fr;
	}

	.uf-direction-card {
		min-height: 0;
	}

	.uf-poll__layout {
		gap: 45px;
	}

	.uf-faq__layout {
		gap: 45px;
	}

	.uf-faq__intro {
		position: static;
	}

	.uf-footer__top {
		gap: 55px;
	}
}

@media (max-width: 620px) {
	html {
		scroll-padding-top: 72px;
	}

	.uf-shell {
		width: min(calc(100% - 40px), var(--uf-shell));
	}

	.uf-section {
		padding: 76px 0;
	}

	.uf-header {
		padding: 11px 0;
	}

	.uf-header.is-scrolled {
		padding: 8px 0;
	}

	.uf-brand__logo {
		width: 172px;
	}

	.uf-brand__footer-logo {
		width: 188px;
	}

	.uf-menu-button__label {
		display: none;
	}

	.uf-nav {
		right: 16px;
		left: 16px;
	}

	.uf-hero {
		padding-top: 118px;
	}

	.uf-hero h1 {
		margin-bottom: 23px;
		font-size: clamp(44px, 13vw, 63px);
		line-height: 1.02;
	}

	.uf-hero__lead {
		margin-bottom: 27px;
		font-size: 16px;
		line-height: 1.68;
	}

	.uf-actions {
		align-items: stretch;
		flex-direction: column;
		gap: 9px;
		padding-bottom: 22px;
	}

	.uf-button {
		width: 100%;
	}

	.uf-site .uf-button--primary,
	.uf-site .uf-button--light {
		min-height: 50px;
		padding: 13px 19px;
	}

	.uf-button--text {
		justify-content: flex-start;
		padding: 14px 4px;
	}

	.uf-trustline {
		align-items: flex-start;
		flex-direction: column;
		margin-top: 22px;
	}

	.uf-hero-card {
		min-height: 540px;
		padding: 20px;
		border-radius: 22px;
	}

	.uf-hero-card__surface {
		padding: 21px;
		border-radius: 18px;
	}

	.uf-hero-card__statement {
		padding-block: 1px 22px;
	}

	.uf-hero-card__statement strong {
		font-size: clamp(24px, 7.6vw, 31px);
	}

	.uf-hero-card__route {
		grid-template-columns: 62px 1fr 72px 1fr 62px;
		gap: 5px;
		padding-block: 23px 20px;
	}

	.uf-route-node__visual {
		width: 60px;
		height: 60px;
		border-radius: 15px;
	}

	.uf-route-node--single .uf-card-person {
		top: 25px;
		left: 26px;
	}

	.uf-route-node--collective .uf-card-person {
		transform-origin: center;
	}

	.uf-route-node--collective .uf-card-person:nth-child(1) {
		top: 22px;
		left: 25px;
	}

	.uf-route-node--collective .uf-card-person:nth-child(2) {
		top: 15px;
		left: 13px;
	}

	.uf-route-node--collective .uf-card-person:nth-child(3) {
		top: 15px;
		right: 13px;
	}

	.uf-route-node--collective .uf-card-person:nth-child(4) {
		top: 31px;
		left: 10px;
	}

	.uf-route-node--collective .uf-card-person:nth-child(5) {
		top: 31px;
		right: 10px;
	}

	.uf-route-node--collective .uf-card-person:nth-child(6) {
		top: 9px;
		left: 26px;
	}

	.uf-route-node--collective .uf-card-person:nth-child(7) {
		top: 34px;
		left: 26px;
	}

	.uf-route-node > span {
		font-size: 8px;
	}

	.uf-hero-card__result {
		padding: 13px;
	}

	.uf-hero-card__footer {
		gap: 8px;
	}

	.uf-hero__foot {
		display: none;
	}

	.uf-section-heading h2,
	.uf-safety__intro h2,
	.uf-founder-card__copy h2,
	.uf-poll__copy h2,
	.uf-faq__intro h2 {
		font-size: 39px;
	}

	.uf-section-heading > p,
	.uf-safety__intro > p,
	.uf-poll__copy > p,
	.uf-faq__intro > p {
		font-size: 15px;
	}

	.uf-problem-grid,
	.uf-process-grid,
	.uf-services-grid,
	.uf-safety-grid {
		grid-template-columns: 1fr;
	}

	.uf-problem-card {
		min-height: 300px;
	}

	.uf-icon-tile {
		margin-bottom: 50px;
	}

	.uf-site .uf-problems__conclusion {
		margin-top: 70px;
		padding: 27px 24px;
		font-size: 25px;
	}

	.uf-process-step {
		min-height: 205px;
		padding: 34px 26px;
		border: 1px solid var(--uf-dark-panel-border);
		border-radius: 18px;
	}

	.uf-process-note {
		align-items: flex-start;
		padding: 17px;
	}

	.uf-service-card {
		min-height: 0;
		padding: 25px;
		border-radius: 20px;
	}

	.uf-service-card__top {
		margin-bottom: 27px;
	}

	.uf-service-card h3 {
		font-size: 29px;
	}

	.uf-service-card > p {
		font-size: 14px;
	}

	.uf-service-card__modes {
		margin-top: 8px;
	}

	.uf-services__note {
		margin-top: 34px !important;
		padding: 17px 18px;
		text-align: left;
	}

	.uf-service-explorer {
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.uf-service-picker {
		gap: 7px;
		padding: 9px;
		border: 1px solid rgba(31, 64, 38, 0.1);
		border-radius: 18px;
	}

	.uf-service-picker__option {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 9px;
		padding: 10px;
	}

	.uf-service-picker__icon {
		width: 38px;
		height: 38px;
	}

	.uf-service-picker__arrow {
		display: none;
	}

	.uf-service-picker__copy strong {
		font-size: 11px;
	}

	.uf-service-picker__copy small {
		font-size: 8px;
	}

	.uf-service-detail {
		padding: 27px 20px;
		border-radius: 20px;
	}

	.uf-service-detail__top {
		align-items: flex-start;
		flex-direction: column;
		gap: 13px;
	}

	.uf-service-detail__top h3 {
		font-size: 36px;
	}

	.uf-service-detail__needs ul,
	.uf-service-modes {
		grid-template-columns: 1fr;
	}

	.uf-service-detail__needs ul {
		gap: 10px;
	}

	.uf-service-detail__result {
		align-items: flex-start;
	}

	.uf-service-detail__footer {
		align-items: stretch;
		flex-direction: column;
		gap: 17px;
	}

	.uf-service-detail__footer .uf-button {
		width: 100%;
	}

	.uf-logo-story {
		padding: 72px 0;
	}

	.uf-logo-story__inner {
		gap: 34px;
	}

	.uf-logo-story h2 {
		font-size: 39px;
	}

	.uf-logo-story__text {
		font-size: 15px;
	}

	.uf-logo-story__stage {
		min-height: 440px;
	}

	.uf-logo-story__caption {
		bottom: 2%;
		width: max-content;
		max-width: 90%;
		font-size: 14px;
	}

	.uf-initiative__copy h2 {
		font-size: 37px;
		hyphens: auto;
		overflow-wrap: anywhere;
	}

	.uf-offer-card__body {
		padding-inline: 20px;
	}

	.uf-offer-card__foot {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
		padding-inline: 20px;
	}

	.uf-safety-card {
		min-height: 180px;
		padding: 29px 25px;
		border: 1px solid var(--uf-panel-border);
		border-radius: 18px;
	}

	.uf-founder-card {
		border-radius: 22px;
	}

	.uf-founder-card__visual {
		min-height: 350px;
		padding: 30px;
	}

	.uf-founder-card__monogram {
		top: 30px;
		left: 30px;
	}

	.uf-founder-card__visual p {
		font-size: 20px;
	}

	.uf-founder-card__copy {
		padding: 42px 27px;
	}

	.uf-team-person__photo {
		aspect-ratio: 4 / 3;
	}

	.uf-team-person__body {
		padding: 24px 22px;
	}

	.uf-team-person h3 {
		font-size: 27px;
	}

	.uf-team-carousel__controls {
		min-height: 68px;
		padding-inline: 20px;
	}

	.uf-direction__heading {
		margin-bottom: 34px;
		text-align: left;
	}

	.uf-direction__heading h2 {
		font-size: 39px;
	}

	.uf-direction-card {
		padding: 29px 25px;
		border-radius: 22px;
	}

	.uf-direction-card__icon {
		margin-bottom: 27px;
	}

	.uf-direction-card h3 {
		font-size: 31px;
	}

	.uf-founder-card__copy h2 {
		margin-bottom: 22px;
	}

	.uf-poll-form {
		padding: 20px;
		border-radius: 20px;
	}

	.uf-poll-form fieldset {
		grid-template-columns: 1fr;
	}

	.uf-faq-list summary {
		min-height: 76px;
		padding-inline: 18px;
		font-size: 15px;
	}

	.uf-faq-list details p {
		margin-right: 45px;
		margin-left: 18px;
		font-size: 13px;
	}

	.uf-final-cta {
		padding: 72px 0;
	}

	.uf-final-cta__inner {
		padding: 58px 22px;
		border-radius: 24px;
	}

	.uf-final-cta h2 {
		font-size: clamp(36px, 11vw, 45px);
	}

	.uf-footer {
		padding-top: 55px;
	}

	.uf-footer__links {
		grid-template-columns: repeat(2, 1fr);
		gap: 42px 24px;
	}

	.uf-footer__project-note {
		grid-template-columns: 1fr;
		gap: 11px;
		margin-bottom: 24px;
		padding: 16px;
	}

	.uf-footer__project-label {
		width: fit-content;
	}

	.uf-footer__project-note p {
		font-size: 11px;
		line-height: 1.65;
	}

	.uf-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
}

@media (max-width: 360px) {
	.uf-hero-card {
		padding: 14px;
	}

	.uf-hero-card__surface {
		padding-inline: 16px;
	}
}

@media (max-width: 782px) {
	.admin-bar .uf-header {
		top: 46px;
	}
}

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

	.uf-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.uf-logo-story__caption {
		animation: none !important;
	}

	.uf-site *,
	.uf-site *::before,
	.uf-site *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* ==========================================================
   Utilfreds Platform 6.7.10 – WordPress- og fusionslag
   ========================================================== */

body.utilfreds-platform .site-content,
body.utilfreds-platform .site-content > .ast-container,
body.utilfreds-platform .content-area,
body.utilfreds-platform .site-main,
body.utilfreds-platform article.page,
body.utilfreds-platform .entry-content {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.utilfreds-platform .entry-header {
	display: none;
}

/* WordPress leverer fortsat sideindholdet, mens Utilfreds ejer den synlige
   header, navigation og footer på alle offentlige undersider. */
body.utilfreds-platform-page #masthead,
body.utilfreds-platform-page #site-header,
body.utilfreds-platform-page header.site-header,
body.utilfreds-platform-page .site-header,
body.utilfreds-platform-page .ast-mobile-header-wrap,
body.utilfreds-platform-page .ast-primary-header-bar,
body.utilfreds-platform-page .site-primary-header-wrap,
body.utilfreds-platform-page .wp-site-blocks > header,
body.utilfreds-platform-page .wp-site-blocks > .wp-block-template-part > header {
	display: none !important;
}

body.utilfreds-platform-page .site-content,
body.utilfreds-platform-page .site-content > .ast-container,
body.utilfreds-platform-page .content-area,
body.utilfreds-platform-page .site-main,
body.utilfreds-platform-page article.page,
body.utilfreds-platform-page .entry-content {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.utilfreds-platform-page .entry-header {
	display: none !important;
}

body.utilfreds-platform-page #colophon,
body.utilfreds-platform-page footer.site-footer,
body.utilfreds-platform-page .site-below-footer-wrap,
body.utilfreds-platform-page .site-primary-footer-wrap,
body.utilfreds-platform-page .site-above-footer-wrap {
	display: none !important;
}

body.utilfreds-platform-page .wp-site-blocks > footer,
body.utilfreds-platform-page .wp-site-blocks > .wp-block-template-part > footer {
	display: none !important;
}

/* Juridiske sider bruger altid hele Utilfreds-skallen. Indholdet får lov til
   at vokse, mens den komplette footer spænder over hele sidebredden og bliver
   stående nederst på korte dokumenter. */
body.page-slug-cookiepolitik .uf-platform-page-shell,
body.page-slug-regler-og-vilkaar .uf-platform-page-shell {
	display: flex;
	width: 100%;
	max-width: none;
	min-height: 100vh;
	flex-direction: column;
	margin: 0;
}

body.page-slug-cookiepolitik .uf-platform-page-content,
body.page-slug-regler-og-vilkaar .uf-platform-page-content {
	width: 100%;
	max-width: none;
	flex: 1 0 auto;
}

body.page-slug-cookiepolitik .uf-footer,
body.page-slug-regler-og-vilkaar .uf-footer {
	width: 100%;
	max-width: none;
	flex: 0 0 auto;
	margin: 0;
}

.uf-platform-page-shell {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background: var(--uf-canvas);
}

.uf-platform-page-shell .uf-header {
	z-index: 100000;
	padding: 10px 0;
	border-color: rgba(31, 64, 38, 0.08);
	background: rgba(247, 248, 245, 0.95);
	box-shadow: 0 8px 30px rgba(16, 38, 23, 0.04);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.uf-platform-page-content {
	width: 100%;
	min-height: 50vh;
	padding-top: 72px;
}

.uf-auth-shell {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background: var(--uf-canvas);
}

.uf-auth-shell .uf-header {
	padding: 10px 0;
	border-color: rgba(31, 64, 38, 0.08);
	background: rgba(247, 248, 245, 0.95);
	box-shadow: 0 8px 30px rgba(16, 38, 23, 0.04);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.uf-auth-shell .uf-platform-page-content {
	padding-top: 0;
}

.uf-auth-shell .pkm-auth-page--login {
	padding-top: clamp(116px, 11vw, 142px) !important;
}

.uf-auth-shell .pkm-login-shell--status {
	display: block !important;
	width: min(680px, calc(100% - 48px)) !important;
	padding: 0 0 88px !important;
}

.uf-auth-shell .pkm-login-shell--status .pkm-card {
	padding: clamp(32px, 6vw, 54px) !important;
	text-align: center;
}

@media (max-width: 620px) {
	.uf-platform-page-content {
		padding-top: 64px;
	}

	.uf-auth-shell .pkm-auth-page--login {
		padding-top: 100px !important;
	}

	.uf-auth-shell .pkm-login-shell--status {
		width: calc(100% - 40px) !important;
		padding-bottom: 56px !important;
	}

	body.admin-bar .uf-platform-page-shell .uf-header {
		top: 0;
	}
}

body.utilfreds-platform #masthead,
body.utilfreds-platform header.site-header,
body.utilfreds-platform .ast-mobile-header-wrap {
	display: none !important;
}

body.utilfreds-platform #colophon,
body.utilfreds-platform footer.site-footer,
body.utilfreds-platform .site-below-footer-wrap,
body.utilfreds-platform .site-primary-footer-wrap,
body.utilfreds-platform .site-above-footer-wrap {
	display: none !important;
}

body.utilfreds-platform .uf-footer {
	display: block !important;
}

body.utilfreds-platform .custom-logo-link.utilfreds-custom-logo img {
	display: block;
	width: 190px;
	height: auto;
}

.ufp-platform {
	position: relative;
	overflow: clip;
	background: var(--uf-canvas);
}

.ufp-platform .uf-nav > a:not(.uf-button),
.ufp-platform .uf-nav > a:not(.uf-button):hover,
.ufp-platform .uf-nav > a:not(.uf-button):focus {
	border-bottom: 0 !important;
	background-image: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.ufp-platform .uf-nav > a:not(.uf-button)::after {
	display: none !important;
	content: none !important;
}

.ufp-platform .uf-nav > a[data-uf-section-link] {
	padding-inline: 10px;
	transition: color 180ms ease;
}

.ufp-platform .uf-nav > a[data-uf-section-link].is-active,
.ufp-platform .uf-nav > a[data-uf-section-link][aria-current="location"] {
	background: transparent !important;
	box-shadow: none !important;
	color: var(--uf-green-700, #2d5835) !important;
	text-shadow: none !important;
	-webkit-text-fill-color: var(--uf-green-700, #2d5835) !important;
}

.ufp-platform .uf-nav a:focus,
.ufp-platform .uf-nav a:focus-visible {
	outline: 0 !important;
	outline-offset: 0 !important;
}

.ufp-platform .uf-nav > a:not(.uf-button):focus,
.ufp-platform .uf-nav > a:not(.uf-button):focus-visible {
	color: var(--uf-green-700, #2d5835) !important;
	-webkit-text-fill-color: var(--uf-green-700, #2d5835) !important;
}

.ufp-platform .uf-nav .uf-button--nav:focus,
.ufp-platform .uf-nav .uf-button--nav:focus-visible {
	background: var(--uf-green-800);
}

.ufp-platform .uf-header .uf-button--nav,
.ufp-platform .uf-header .uf-button--nav:visited,
.ufp-platform .uf-header .uf-button--nav:hover,
.ufp-platform .uf-header .uf-button--nav:focus,
.ufp-platform .uf-header .uf-button--nav:focus-visible,
.ufp-platform .uf-header .uf-button--nav:active {
	color: var(--uf-white) !important;
	-webkit-text-fill-color: var(--uf-white) !important;
	text-decoration: none !important;
	text-decoration-line: none !important;
}

.ufp-platform .uf-footer__links a,
.ufp-platform .uf-footer__links a:hover,
.ufp-platform .uf-footer__links a:focus,
.ufp-platform .uf-footer__links a:active {
	border-bottom: 0 !important;
	background-image: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
	text-decoration-line: none !important;
}

.ufp-platform .uf-footer__links a::before,
.ufp-platform .uf-footer__links a::after {
	display: none !important;
	content: none !important;
}

.ufp-scroll-nav {
	position: sticky;
	top: var(--wp-admin--admin-bar--height, 0px);
	z-index: 120;
	border-bottom: 1px solid rgba(31, 64, 38, 0.09);
	background: rgba(247, 248, 245, 0.94);
	box-shadow: 0 10px 32px rgba(16, 38, 23, 0.04);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.ufp-scroll-nav__inner {
	display: flex;
	min-height: 72px;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.ufp-scroll-nav__brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
}

.ufp-scroll-nav__brand img {
	display: block;
	width: 172px;
	height: auto;
}

.ufp-scroll-nav__links {
	display: flex;
	align-items: center;
	gap: 28px;
	color: var(--uf-green-900);
	font-size: 14px;
	font-weight: 680;
}

.ufp-scroll-nav__links > a:not(.uf-button) {
	position: relative;
	padding: 10px 0;
}

.ufp-scroll-nav__links > a:not(.uf-button)::after {
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.ufp-scroll-nav__links > a:not(.uf-button):hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.ufp-platform .uf-hero__lead {
	max-width: 650px;
}

.ufp-proof {
	padding: 0;
	background: #fff;
}

.ufp-proof .pk-community {
	margin: 0;
}

.ufp-mobile-progress {
	display: grid;
	gap: 13px;
	margin: 4px 0 24px;
	padding: 18px;
	border: 1px solid rgba(31, 64, 38, 0.1);
	border-radius: 14px;
	background: var(--uf-mint-100);
}

.ufp-mobile-progress > div:first-child {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
}

.ufp-mobile-progress strong {
	color: var(--uf-green-900);
	font-size: 31px;
	line-height: 1;
}

.ufp-mobile-progress span {
	color: var(--uf-copy);
	font-size: 13px;
	font-weight: 680;
}

.ufp-mobile-progress__track {
	height: 8px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(31, 64, 38, 0.11);
}

.ufp-mobile-progress__track i {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--uf-green-800), var(--uf-green-500));
}

.ufp-signup {
	background: linear-gradient(180deg, #f7f8f5 0%, #edf5ef 100%);
}

.ufp-signup .pkm-signup-section {
	padding: 0;
	background: transparent;
}

.ufp-signup .pkm-shell--quick {
	width: 100%;
	max-width: none;
	padding: 0 !important;
}

.ufp-signup .pkm-intro {
	display: none;
}

.ufp-signup .pkm-signup-form {
	margin-inline: auto;
}

.ufp-interest-form fieldset legend {
	width: 100%;
	margin-bottom: 14px;
	color: #fff;
	font-size: 13px;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ufp-interest-form__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 22px 0;
}

.ufp-interest-form__fields label {
	display: grid;
	gap: 8px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 13px;
	font-weight: 680;
}

.ufp-interest-form__fields small {
	font-weight: 500;
	opacity: 0.75;
}

.ufp-interest-form__wide {
	grid-column: 1 / -1;
}

.ufp-interest-form input[type="email"],
.ufp-interest-form input[type="text"],
.ufp-interest-form select,
.ufp-interest-form textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	outline: none;
	background: rgba(255, 255, 255, 0.09);
	color: #fff;
}

.ufp-interest-form select option {
	color: var(--uf-ink);
}

.ufp-interest-form textarea {
	min-height: 94px;
	resize: vertical;
}

.ufp-interest-form input:focus,
.ufp-interest-form select:focus,
.ufp-interest-form textarea:focus {
	border-color: var(--uf-mint-300);
	box-shadow: 0 0 0 3px rgba(189, 232, 200, 0.12);
}

.ufp-interest-form__consent {
	display: flex !important;
	align-items: flex-start;
	gap: 11px;
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
	line-height: 1.55;
}

.ufp-interest-form__consent input {
	width: 17px;
	height: 17px;
	margin-top: 2px;
	accent-color: var(--uf-mint-300);
}

.ufp-interest-form__consent a {
	color: #fff;
	font-weight: 750;
	text-decoration: none;
}

@media (max-width: 860px) {
	.ufp-scroll-nav__inner {
		min-height: 64px;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.ufp-scroll-nav__inner::-webkit-scrollbar {
		display: none;
	}

	.ufp-scroll-nav__brand {
		position: sticky;
		left: 0;
		z-index: 2;
		padding-right: 18px;
		background: linear-gradient(90deg, #f7f8f5 82%, rgba(247, 248, 245, 0));
	}

	.ufp-scroll-nav__brand img {
		width: 145px;
	}

	.ufp-scroll-nav__links {
		flex: 0 0 auto;
		gap: 22px;
		padding-right: 6px;
	}

}

@media (max-width: 640px) {
	.ufp-scroll-nav__links .uf-button {
		min-height: 40px;
		padding: 9px 14px;
	}

	/* Samme sikre indvendige mobilafstand som fællesskabskortene. */
	body .ufp-platform .uf-problem-card,
	body .ufp-platform .uf-process-step,
	body .ufp-platform .uf-service-card,
	body .ufp-platform .uf-safety-card {
		box-sizing: border-box !important;
		width: 100% !important;
		max-width: 100% !important;
		padding: 22px 20px !important;
	}

	body .ufp-platform .uf-problem-card > *,
	body .ufp-platform .uf-process-step > *,
	body .ufp-platform .uf-service-card > *,
	body .ufp-platform .uf-safety-card > * {
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	/* Forsidens formular er bevidst full-bleed på mobil. */
	.ufp-platform .ufp-signup > .uf-shell {
		width: 100%;
		max-width: none;
	}

	.ufp-platform .ufp-signup > .uf-shell > .uf-section-heading {
		width: calc(100% - 40px);
		margin-right: auto;
		margin-left: auto;
	}

	.ufp-platform .ufp-signup .pkm-shell--quick {
		width: 100% !important;
		max-width: none !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.ufp-platform .ufp-signup .pkm-signup-form {
		width: 100% !important;
		max-width: none !important;
		border-right: 0 !important;
		border-left: 0 !important;
		border-radius: 0 !important;
	}

	/* Kompakte og stabile tryghedskort uden overløb på smalle skærme. */
	.ufp-platform .uf-safety-grid {
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
		min-width: 0;
		gap: 12px;
	}

	.ufp-platform .uf-safety-card {
		display: grid;
		grid-template-areas:
			"title"
			"text";
		grid-template-columns: minmax(0, 1fr);
		gap: 5px;
		width: 100%;
		min-width: 0;
		min-height: 0;
		justify-content: initial;
		padding: 22px 20px;
		border-radius: 16px;
	}

	.ufp-platform .uf-safety-card::before {
		display: none;
		content: none;
	}

	.ufp-platform .uf-safety-card::after {
		display: none;
		content: none;
	}

	.ufp-platform .uf-safety-card h3 {
		grid-area: title;
		margin: 0;
		font-size: 17px;
		line-height: 1.3;
	}

	.ufp-platform .uf-safety-card p {
		grid-area: text;
		font-size: 13px;
		line-height: 1.55;
	}

	.ufp-platform .uf-safety-card:hover {
		transform: none;
	}

	.ufp-interest-form__fields {
		grid-template-columns: 1fr;
	}

	.ufp-interest-form__wide {
		grid-column: auto;
	}
}

/* ==========================================================
   Utilfreds Platform 6.7.12 – hero som konkret brugerrejse
   ========================================================== */
.uf-hero-card {
	min-height: 0;
}

.uf-hero-card__surface {
	display: grid;
	gap: 14px;
	padding: 22px;
}

.uf-hero-demo__heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.uf-hero-demo__heading > div {
	display: grid;
	gap: 3px;
}

.uf-hero-demo__heading span,
.uf-hero-demo__needs span,
.uf-hero-demo__choice > p,
.uf-hero-demo__result div > span {
	color: var(--uf-gold-300);
	font-size: 9px;
	font-weight: 780;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
}

.uf-hero-demo__heading strong {
	font-size: 20px;
	font-weight: 720;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.uf-hero-demo__heading small {
	padding: 5px 8px;
	border: 1px solid rgba(189, 232, 200, 0.18);
	border-radius: 999px;
	background: rgba(189, 232, 200, 0.07);
	color: rgba(255, 255, 255, 0.66);
	font-size: 8px;
	font-weight: 720;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.uf-hero-demo__services {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.uf-hero-demo__service {
	position: relative;
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	gap: 9px;
	min-width: 0;
	padding: 9px 10px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.035);
	color: inherit;
	cursor: pointer;
	font: inherit;
	text-align: left;
	-webkit-appearance: none;
	appearance: none;
	transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.uf-hero-demo__service:hover {
	border-color: rgba(189, 232, 200, 0.22);
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-1px);
}

.uf-hero-demo__service.is-active {
	border-color: rgba(210, 165, 86, 0.34);
	background: linear-gradient(135deg, rgba(210, 165, 86, 0.13), rgba(255, 255, 255, 0.035));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.uf-hero-demo__service.is-active > i {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--uf-gold-500);
	box-shadow: 0 0 0 4px rgba(210, 165, 86, 0.09), 0 0 14px rgba(210, 165, 86, 0.4);
	animation: uf-demo-active 2.4s ease-in-out infinite;
}

.uf-hero-demo__service-icon {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.07);
	color: var(--uf-mint-300);
}

.uf-hero-demo__service.is-active .uf-hero-demo__service-icon {
	background: rgba(210, 165, 86, 0.12);
	color: var(--uf-gold-300);
}

.uf-hero-demo__service-icon svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.uf-hero-demo__service > div {
	display: grid;
	min-width: 0;
	gap: 2px;
}

.uf-hero-demo__service strong {
	overflow: hidden;
	font-size: 11px;
	font-weight: 690;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.uf-hero-demo__service small {
	color: rgba(255, 255, 255, 0.43);
	font-size: 8.5px;
	font-weight: 600;
	line-height: 1.2;
}

.uf-hero-demo__needs {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 13px 14px;
	border: 1px solid rgba(189, 232, 200, 0.15);
	border-radius: 12px;
	background: linear-gradient(90deg, rgba(189, 232, 200, 0.075), rgba(255, 255, 255, 0.025));
}

.uf-hero-demo__needs > div {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.uf-hero-demo__needs > div strong {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
}

.uf-hero-demo__needs > p {
	display: grid;
	flex: 0 0 auto;
	gap: 3px;
	margin: 0;
	text-align: right;
}

.uf-hero-demo__needs > p span {
	color: rgba(255, 255, 255, 0.38);
}

.uf-hero-demo__needs > p strong {
	font-size: 11px;
	font-weight: 680;
}

.uf-hero-demo__choice {
	display: grid;
	gap: 8px;
}

.uf-hero-demo__choice > p {
	margin: 0;
	color: rgba(255, 255, 255, 0.46);
}

.uf-hero-demo__paths {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.uf-hero-demo__path {
	position: relative;
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	gap: 9px;
	min-width: 0;
	padding: 12px 11px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.035);
	color: inherit;
	cursor: pointer;
	font: inherit;
	overflow: hidden;
	text-align: left;
	-webkit-appearance: none;
	appearance: none;
	transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.uf-hero-demo__path:hover {
	border-color: rgba(189, 232, 200, 0.25);
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-1px);
}

.uf-hero-demo__path.is-active {
	border-color: rgba(189, 232, 200, 0.27);
	background: linear-gradient(135deg, rgba(189, 232, 200, 0.12), rgba(255, 255, 255, 0.035));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 22px rgba(0, 0, 0, 0.08);
}

.uf-hero-demo__path.is-active::after {
	position: absolute;
	top: -35%;
	left: -45%;
	width: 36%;
	height: 170%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
	content: "";
	transform: rotate(18deg);
	animation: uf-demo-sheen 5.5s ease-in-out infinite;
}

.uf-hero-demo__path.is-active strong {
	color: var(--uf-gold-300);
}

.uf-hero-demo__path-icon {
	position: relative;
	display: block;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.07);
}

.uf-hero-demo__path-icon i {
	position: absolute;
	top: 14px;
	left: 14px;
	width: 6px;
	height: 12px;
	border-radius: 5px;
	background: var(--uf-mint-300);
}

.uf-hero-demo__path-icon i::before {
	position: absolute;
	top: -5px;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: inherit;
	content: "";
}

.uf-hero-demo__path--collective .uf-hero-demo__path-icon i:nth-child(1) {
	left: 7px;
	transform: scale(0.75);
}

.uf-hero-demo__path--collective .uf-hero-demo__path-icon i:nth-child(2) {
	left: 14px;
	background: var(--uf-gold-300);
}

.uf-hero-demo__path--collective .uf-hero-demo__path-icon i:nth-child(3) {
	left: 21px;
	transform: scale(0.75);
}

.uf-hero-demo__path > div {
	display: grid;
	min-width: 0;
	gap: 2px;
}

.uf-hero-demo__path strong {
	font-size: 10.5px;
	font-weight: 700;
	line-height: 1.2;
}

.uf-hero-demo__path small {
	color: rgba(255, 255, 255, 0.43);
	font-size: 8px;
	font-weight: 590;
	line-height: 1.25;
}

.uf-hero-demo__or {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: grid;
	width: 27px;
	height: 20px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 999px;
	background: #19341f;
	color: rgba(255, 255, 255, 0.43);
	font-size: 7px;
	font-weight: 690;
	text-transform: uppercase;
	transform: translate(-50%, -50%);
}

.uf-hero-demo__result {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	padding: 13px 14px;
	border: 1px solid rgba(210, 165, 86, 0.26);
	border-radius: 13px;
	background: linear-gradient(90deg, rgba(210, 165, 86, 0.13), rgba(210, 165, 86, 0.035));
}

.uf-hero-demo__result-icon {
	position: relative;
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border-radius: 11px;
	background: rgba(210, 165, 86, 0.13);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.uf-hero-demo__result-icon i {
	width: 16px;
	height: 9px;
	border-bottom: 2px solid var(--uf-gold-300);
	border-left: 2px solid var(--uf-gold-300);
	transform: translateY(-2px) rotate(-45deg);
}

.uf-hero-demo__result > div {
	display: grid;
	min-width: 0;
	gap: 2px;
}

.uf-hero-demo__result strong {
	font-size: 12px;
	font-weight: 720;
	line-height: 1.25;
}

.uf-hero-demo__result small {
	color: rgba(255, 255, 255, 0.48);
	font-size: 8.5px;
	font-weight: 580;
	line-height: 1.3;
}

.uf-hero-demo__service:focus-visible,
.uf-hero-demo__path:focus-visible {
	border-color: var(--uf-gold-300) !important;
	outline: 2px solid rgba(239, 212, 158, 0.82);
	outline-offset: 2px;
	box-shadow: 0 0 0 4px rgba(239, 212, 158, 0.12);
}

.uf-hero-demo__service:active,
.uf-hero-demo__path:active {
	transform: translateY(0) scale(0.99);
}

.uf-hero-card__footer strong {
	line-height: 1.25;
}

@keyframes uf-demo-active {
	0%, 100% {
		opacity: 0.75;
		transform: scale(0.92);
	}
	50% {
		opacity: 1;
		transform: scale(1.08);
	}
}

@keyframes uf-demo-sheen {
	0%, 48% {
		left: -45%;
		opacity: 0;
	}
	58% {
		opacity: 1;
	}
	78%, 100% {
		left: 125%;
		opacity: 0;
	}
}

@media (max-width: 620px) {
	.uf-hero-card {
		min-height: 0;
		padding: 18px;
	}

	.uf-hero-card__top {
		gap: 12px;
		font-size: 8.5px;
		letter-spacing: 0.08em;
	}

	.uf-live-dot {
		padding: 5px 7px;
		font-size: 8px;
	}

	.uf-hero-card__surface {
		gap: 12px;
		padding: 17px;
	}

	.uf-hero-demo__heading strong {
		font-size: 18px;
	}

	.uf-hero-demo__service {
		grid-template-columns: 30px minmax(0, 1fr);
		gap: 7px;
		padding: 8px;
	}

	.uf-hero-demo__service-icon {
		width: 30px;
		height: 30px;
	}

	.uf-hero-demo__service strong {
		font-size: 10px;
	}

	.uf-hero-demo__needs {
		padding: 11px 12px;
	}

	.uf-hero-demo__paths {
		grid-template-columns: 1fr;
		gap: 7px;
	}

	.uf-hero-demo__path {
		padding: 10px 11px;
	}

	.uf-hero-demo__path strong {
		font-size: 11px;
	}

	.uf-hero-demo__or {
		top: 50%;
		width: 30px;
		height: 18px;
	}

	.uf-hero-card__footer {
		grid-template-columns: 0.8fr 1.45fr 0.8fr;
		gap: 7px;
		padding-top: 16px;
	}

	.uf-hero-card__footer strong {
		font-size: 10.5px;
	}
}

@media (max-width: 380px) {
	.uf-hero-card {
		padding: 14px;
	}

	.uf-hero-card__surface {
		padding: 15px;
	}

	.uf-hero-demo__needs {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.uf-hero-demo__needs > p {
		width: 100%;
		grid-template-columns: auto 1fr;
		align-items: center;
		text-align: left;
	}
}

/* ==========================================================
   Utilfreds Platform 6.7.13 – direkte aftale med udbyderen
   ========================================================== */
.uf-hero-card__footer--direct {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	align-items: start;
	justify-content: initial;
	gap: 12px;
	padding-top: 17px;
}

.uf-hero-card__direct-icon {
	display: grid;
	align-self: start;
	width: 38px;
	height: 38px;
	margin-top: 0;
	place-items: center;
	border: 1px solid rgba(189, 232, 200, 0.16);
	border-radius: 11px;
	background: rgba(189, 232, 200, 0.07);
	color: var(--uf-mint-300) !important;
}

.uf-hero-card__direct-icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.65;
}

.uf-hero-card__direct-icon svg[hidden] {
	display: none;
}

.uf-hero-card__direct-icon svg.is-active {
	animation: uf-information-icon-in 360ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.uf-hero-card__direct-copy {
	display: grid;
	min-width: 0;
	gap: 3px;
	min-height: 66px;
}

.uf-hero-card__direct-copy > strong {
	color: var(--uf-white);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.uf-hero-card__direct-copy > span {
	color: rgba(255, 255, 255, 0.46);
	font-size: 9px;
	font-weight: 570;
	letter-spacing: 0;
	line-height: 1.45;
	text-transform: none;
}

.uf-hero-card__information-controls {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	min-height: 15px;
	margin-top: 3px;
}

.uf-hero-card__information-dots {
	display: flex;
	align-items: center;
	gap: 1px;
}

.uf-hero-card__information-dots button {
	display: grid;
	width: 15px;
	height: 15px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: transparent;
	box-shadow: none;
	cursor: pointer;
}

.uf-hero-card__information-dots i {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.25);
	transition: width 180ms ease, background-color 180ms ease;
}

.uf-hero-card__information-dots button.is-active i {
	width: 11px;
	background: var(--uf-gold-300);
}

.uf-hero-card__information-dots button:focus-visible {
	outline: 1px solid var(--uf-gold-300);
	outline-offset: 1px;
}

.uf-hero-card__footer--direct.is-updating .uf-hero-card__direct-copy > strong,
.uf-hero-card__footer--direct.is-updating .uf-hero-card__direct-copy > span {
	animation: uf-information-in 360ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

@keyframes uf-information-in {
	from {
		opacity: 0.35;
		transform: translateY(3px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes uf-information-icon-in {
	from {
		opacity: 0.25;
		transform: scale(0.78) rotate(-5deg);
	}
	to {
		opacity: 1;
		transform: scale(1) rotate(0);
	}
}

@media (max-width: 620px) {
	.uf-hero-card__footer--direct {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 10px;
		padding-top: 15px;
	}

	.uf-hero-card__direct-icon {
		width: 34px;
		height: 34px;
		border-radius: 10px;
	}

	.uf-hero-card__direct-copy {
		min-height: 82px;
	}

	.uf-hero-card__direct-copy > strong {
		font-size: 11px;
	}

	.uf-hero-card__direct-copy > span {
		font-size: 8.5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.uf-hero-card__information-dots i,
	.uf-hero-card__direct-icon svg.is-active,
	.uf-hero-card__footer--direct.is-updating .uf-hero-card__direct-copy > strong,
	.uf-hero-card__footer--direct.is-updating .uf-hero-card__direct-copy > span {
		animation: none;
		transition: none;
	}
}

/* ==========================================================
   Utilfreds Platform 6.10.1 – grøn CTA-glød
   ========================================================== */
/* CTA'er skifter til en lys baggrund, så #2D5835 kan bruges
   konsekvent til tekst, kant og glød uden at miste kontrast. */
@media (hover: hover) and (pointer: fine) {
	.uf-site .uf-button:not(.uf-button--text):not(:disabled):hover,
	.uf-site .uf-cost-editor__save:not(:disabled):hover,
	.uf-site .pkm-signup-form .pkm-button:not(.pkm-button--secondary):not(:disabled):hover {
		border-color: var(--uf-green-700, #2d5835) !important;
		background: var(--uf-white, #fff) !important;
		color: var(--uf-green-700, #2d5835) !important;
		-webkit-text-fill-color: var(--uf-green-700, #2d5835) !important;
		box-shadow:
			0 0 0 3px rgba(45, 88, 53, 0.2),
			0 12px 30px rgba(45, 88, 53, 0.28),
			inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
		transform: translateY(-2px);
	}
}

.uf-site .uf-button:not(.uf-button--text):not(:disabled):focus-visible,
.uf-site .uf-cost-editor__save:not(:disabled):focus-visible,
.uf-site .pkm-signup-form .pkm-button:not(.pkm-button--secondary):not(:disabled):focus-visible {
	border-color: var(--uf-green-700, #2d5835) !important;
	background: var(--uf-white, #fff) !important;
	color: var(--uf-green-700, #2d5835) !important;
	-webkit-text-fill-color: var(--uf-green-700, #2d5835) !important;
	box-shadow:
		0 0 0 3px rgba(45, 88, 53, 0.2),
		0 12px 30px rgba(45, 88, 53, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
}

/* ==========================================================
   Utilfreds Platform 6.10.1 – CTA-tekst følger den grønne glød
   ========================================================== */
/* Mobilpilotens CTA skal være hvid i hvile, også efter linket
	 er blevet besøgt. Hover og fokus bliver derefter grønne. */
.uf-site .uf-initiative .uf-actions .uf-button--primary,
.uf-site .uf-initiative .uf-actions .uf-button--primary:visited {
	color: var(--uf-white, #fff) !important;
	-webkit-text-fill-color: var(--uf-white, #fff) !important;
}

@media (hover: hover) and (pointer: fine) {
	.uf-site .uf-initiative .uf-actions .uf-button--primary:hover,
	.ufp-platform .uf-header .uf-button--nav:hover {
		background: var(--uf-white, #fff) !important;
		color: var(--uf-green-700, #2d5835) !important;
		-webkit-text-fill-color: var(--uf-green-700, #2d5835) !important;
	}
}

.uf-site .uf-initiative .uf-actions .uf-button--primary:focus-visible,
.ufp-platform .uf-header .uf-button--nav:focus-visible {
	background: var(--uf-white, #fff) !important;
	color: var(--uf-green-700, #2d5835) !important;
	-webkit-text-fill-color: var(--uf-green-700, #2d5835) !important;
}

/* ==========================================================
   Utilfreds Platform 6.7.17 – interaktive valg i hero-kortet
   ========================================================== */
.uf-hero-demo__needs.is-updating,
.uf-hero-demo__result.is-updating {
	animation: uf-demo-selection-in 320ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

@keyframes uf-demo-selection-in {
	from {
		opacity: 0.58;
		transform: translateY(4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================
   Utilfreds Platform 6.10.5 – mobilpolering
   ========================================================== */
.uf-faq-list details,
.uf-faq-list summary,
.uf-faq-list summary * {
	-webkit-tap-highlight-color: transparent;
}

.uf-faq-list summary {
	touch-action: manipulation;
	-webkit-user-select: none;
	user-select: none;
}

.uf-faq-list summary:focus:not(:focus-visible) {
	outline: 0;
}

@media (max-width: 620px) {
	/* “Hvad vil du udfordre?” bliver et klart valg efterfulgt af ét fokuspanel. */
	.uf-services .uf-section-heading {
		margin-bottom: 29px;
	}

	.uf-service-explorer {
		gap: 12px;
	}

	.uf-service-picker {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		padding: 10px;
		border: 1px solid rgba(31, 64, 38, 0.09);
		border-radius: 20px;
		background: rgba(247, 248, 245, 0.92);
	}

	.uf-service-picker__label {
		grid-column: 1 / -1;
		margin: 2px 2px 5px;
		font-size: 10px;
	}

	.uf-service-picker__option {
		grid-template-columns: 34px minmax(0, 1fr);
		align-content: center;
		gap: 8px;
		min-height: 72px;
		padding: 10px 9px;
		border-color: rgba(31, 64, 38, 0.08);
		border-radius: 14px;
		background: var(--uf-white);
	}

	.uf-service-picker__option:hover {
		transform: none;
	}

	.uf-service-picker__icon {
		width: 34px;
		height: 34px;
		border-radius: 10px;
	}

	.uf-service-picker__icon svg {
		width: 18px;
		height: 18px;
	}

	.uf-service-picker__copy strong {
		overflow: visible;
		font-size: 10.5px;
		line-height: 1.2;
		overflow-wrap: anywhere;
		text-overflow: clip;
		white-space: normal;
	}

	.uf-service-picker__copy small {
		font-size: 7px;
		letter-spacing: 0.045em;
	}

	.uf-service-detail {
		padding: 24px 18px 20px;
		border-radius: 20px;
	}

	.uf-service-detail__top {
		flex-direction: row;
		gap: 10px;
	}

	.uf-service-detail__top h3 {
		font-size: clamp(29px, 9vw, 34px);
		overflow-wrap: anywhere;
	}

	.uf-service-detail__status {
		padding: 7px 9px;
		font-size: 7.5px;
	}

	.uf-service-detail__description {
		margin: 16px 0 18px;
		font-size: 14px;
		line-height: 1.62;
	}

	.uf-service-detail__needs {
		padding: 15px;
		border-radius: 14px;
	}

	.uf-service-detail__needs ul {
		gap: 9px;
	}

	.uf-service-detail__decision {
		margin-top: 22px;
	}

	.uf-service-modes {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.uf-service-modes > button {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 10px;
		padding: 11px 12px;
		border-radius: 13px;
	}

	.uf-service-mode__icon {
		width: 38px;
		height: 38px;
		border-radius: 10px;
	}

	.uf-service-detail__result {
		gap: 12px;
		padding: 14px;
		border-radius: 13px;
	}

	.uf-service-detail__result-mark {
		width: 29px;
		height: 29px;
		flex-basis: 29px;
	}

	.uf-service-detail__footer {
		gap: 16px;
		margin-top: 18px;
		padding-top: 18px;
	}

	/* Mission og Vision bruger en kompakt korttop i stedet for høj luft. */
	.uf-direction__heading {
		margin-bottom: 27px;
	}

	.uf-direction__heading h2 {
		font-size: clamp(34px, 10.3vw, 40px);
		line-height: 1.04;
	}

	.uf-direction__grid {
		gap: 12px;
	}

	.uf-direction-card {
		display: grid;
		min-height: 0;
		grid-template-columns: 46px minmax(0, 1fr);
		column-gap: 13px;
		padding: 22px 20px 23px;
		border-radius: 20px;
		box-shadow: 0 16px 42px rgba(16, 38, 23, 0.08);
	}

	.uf-direction-card__icon {
		grid-column: 1;
		grid-row: 1;
		width: 46px;
		height: 46px;
		margin: 0;
		border-radius: 14px;
	}

	.uf-direction-card__icon svg {
		width: 22px;
		height: 22px;
	}

	.uf-direction-card .uf-kicker {
		grid-column: 2;
		grid-row: 1;
		align-self: center;
		margin: 0;
	}

	.uf-direction-card h3 {
		grid-column: 1 / -1;
		margin: 18px 0 14px;
		font-size: clamp(25px, 7.2vw, 29px);
		line-height: 1.08;
	}

	.uf-direction-card > p:not(.uf-kicker) {
		grid-column: 1 / -1;
		margin-bottom: 9px;
		font-size: 14px;
		line-height: 1.62;
	}

	/* FAQ-feltet må ikke få en kort, grå touchflade ved tryk. */
	.uf-faq-list summary:active {
		background: transparent;
	}
}

@media (max-width: 380px) {
	.uf-service-picker__option {
		grid-template-columns: 30px minmax(0, 1fr);
		gap: 6px;
		padding-inline: 8px;
	}

	.uf-service-picker__icon {
		width: 30px;
		height: 30px;
	}

	.uf-service-picker__copy strong {
		font-size: 9.5px;
	}

	.uf-service-detail__top {
		flex-direction: column;
	}
}

/* ==========================================================
   Utilfreds Platform 6.10.6 – reel mobilafstand
   ========================================================== */
@media (max-width: 620px) {
	/* Den tidligere calc-bredde gav en visuel margen, men ingen reel
	   indvendig afstand. Padding holder nu indholdet sikkert indenfor,
	   også når Astra eller en komponent bruger fuld bredde. */
	body .ufp-platform .uf-process > .uf-shell,
	body .ufp-platform .uf-services > .uf-shell,
	body .ufp-platform .uf-direction > .uf-shell {
		box-sizing: border-box !important;
		width: 100% !important;
		max-width: calc(var(--uf-shell) + 40px) !important;
		padding-right: 20px !important;
		padding-left: 20px !important;
	}

	body .ufp-platform .uf-process-animation,
	body .ufp-platform .uf-service-explorer,
	body .ufp-platform .uf-direction__grid,
	body .ufp-platform .uf-service-picker,
	body .ufp-platform .uf-service-details {
		min-width: 0;
		max-width: 100%;
	}

	/* En ældre mobilregel satte explorerens padding og kant til nul. */
	body .ufp-platform .uf-services .uf-service-explorer {
		box-sizing: border-box !important;
		width: 100% !important;
		padding: 10px !important;
		border: 1px solid rgba(31, 64, 38, 0.11) !important;
		border-radius: 24px !important;
		background: rgba(255, 255, 255, 0.58) !important;
		box-shadow: 0 18px 48px rgba(16, 38, 23, 0.07) !important;
	}

	body .ufp-platform .uf-services .uf-service-picker {
		box-sizing: border-box !important;
		padding: 12px !important;
	}

	body .ufp-platform .uf-services .uf-service-detail {
		box-sizing: border-box !important;
		padding: 24px 20px 21px !important;
	}

	body .ufp-platform .uf-services .uf-service-detail__needs {
		padding: 16px !important;
	}

	body .ufp-platform .uf-services .uf-service-modes > button {
		padding: 12px 13px !important;
	}

	body .ufp-platform .uf-direction .uf-direction-card {
		box-sizing: border-box !important;
		padding: 24px 22px !important;
	}
}

/* ==========================================================
   Utilfreds Platform 6.10.7 – utilfredshed som signal-board
   ========================================================== */
.uf-problems .uf-section-heading {
	margin-bottom: 48px;
}

.uf-problems .uf-section-heading h2 {
	max-width: 760px;
}

.uf-problem-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-flow: row dense;
	gap: 14px;
}

.uf-problem-card {
	display: flex;
	min-width: 0;
	min-height: 0;
	flex-direction: column;
	padding: 30px;
	border-radius: 22px;
	overflow: hidden;
}

.uf-problem-card--lead {
	grid-column: span 5;
	grid-row: span 2;
	min-height: 540px;
	padding: 38px;
	border-color: rgba(255, 255, 255, 0.1);
	background:
		radial-gradient(circle at 92% 8%, rgba(210, 165, 86, 0.22), transparent 30%),
		linear-gradient(145deg, var(--uf-green-900), var(--uf-green-950));
	box-shadow: 0 28px 70px rgba(16, 38, 23, 0.19);
}

.uf-problem-card--wide {
	grid-column: span 7;
	min-height: 256px;
	background:
		radial-gradient(circle at 93% 10%, rgba(189, 232, 200, 0.33), transparent 29%),
		var(--uf-white);
}

.uf-problem-card--compact {
	min-height: 270px;
}

.uf-problem-card--compact:nth-child(3) {
	grid-column: span 4;
}

.uf-problem-card--compact:nth-child(4) {
	grid-column: span 3;
}

.uf-problem-card::before {
	top: auto;
	right: -58px;
	bottom: -72px;
	width: 190px;
	height: 190px;
	background: radial-gradient(circle, rgba(189, 232, 200, 0.34), transparent 69%);
}

.uf-problem-card::after {
	display: none;
	content: none;
}

.uf-problem-card:hover {
	transform: translateY(-4px);
}

.uf-problem-card .uf-icon-tile {
	width: 46px;
	height: 46px;
	margin: 0 0 30px;
	border-radius: 13px;
	box-shadow: none;
}

.uf-problem-card--lead .uf-icon-tile {
	width: 54px;
	height: 54px;
	margin-bottom: auto;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.08);
	color: var(--uf-gold-300);
}

.uf-problem-card--lead .uf-icon-tile svg {
	width: 25px;
	height: 25px;
}

.uf-problem-card__content {
	position: relative;
	z-index: 1;
}

.uf-problem-card__label {
	margin: 0 0 9px !important;
	color: var(--uf-green-600) !important;
	font-size: 9px !important;
	font-weight: 820;
	letter-spacing: 0.1em;
	line-height: 1.25 !important;
	text-transform: uppercase;
}

.uf-problem-card--lead .uf-problem-card__label {
	color: var(--uf-gold-300) !important;
}

.uf-problem-card__content h3 {
	max-width: 620px;
	margin: 0 0 11px;
	font-size: 25px;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.uf-problem-card--lead .uf-problem-card__content h3 {
	max-width: 390px;
	color: var(--uf-white);
	font-size: clamp(36px, 4vw, 48px);
	line-height: 1.02;
}

.uf-problem-card--wide .uf-problem-card__content h3 {
	max-width: 600px;
	font-size: clamp(28px, 3vw, 36px);
}

.uf-problem-card--compact .uf-problem-card__content h3 {
	font-size: 22px;
}

.uf-problem-card__content > p:last-child {
	max-width: 590px;
	font-size: 13px;
	line-height: 1.58;
}

.uf-problem-card--lead .uf-problem-card__content > p:last-child {
	max-width: 390px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 14px;
	line-height: 1.65;
}

.uf-problem-card__signal {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	margin: auto 0 0 !important;
	padding-top: 18px;
	border-top: 1px solid rgba(31, 64, 38, 0.09);
	color: var(--uf-green-700) !important;
	font-size: 9px !important;
	font-weight: 760;
	letter-spacing: 0.035em;
	line-height: 1.35 !important;
}

.uf-problem-card__signal span {
	width: 6px;
	height: 6px;
	flex: 0 0 6px;
	border-radius: 50%;
	background: var(--uf-gold-500);
	box-shadow: 0 0 0 4px rgba(210, 165, 86, 0.12);
}

.uf-problem-card--lead .uf-problem-card__signal {
	margin-top: 30px !important;
	border-top-color: rgba(255, 255, 255, 0.11);
	color: rgba(255, 255, 255, 0.66) !important;
}

.uf-site .uf-problems__conclusion {
	display: grid;
	max-width: none;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.72fr);
	align-items: end;
	gap: clamp(40px, 7vw, 100px);
	margin: 16px 0 0;
	padding: clamp(32px, 4.5vw, 50px);
	border-color: rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	background:
		radial-gradient(circle at 92% 8%, rgba(210, 165, 86, 0.2), transparent 28%),
		var(--uf-green-950);
	box-shadow: 0 28px 76px rgba(16, 38, 23, 0.16);
	letter-spacing: normal;
	text-align: left;
}

.uf-problems__conclusion-label {
	margin: 0 0 12px !important;
	color: var(--uf-gold-300) !important;
	font-size: 10px !important;
	font-weight: 820;
	letter-spacing: 0.11em;
	line-height: 1.2 !important;
	text-transform: uppercase;
}

.uf-problems__conclusion h3 {
	max-width: 700px;
	margin: 0;
	color: var(--uf-white);
	font-size: clamp(31px, 4vw, 48px);
	letter-spacing: -0.045em;
	line-height: 1.05;
}

.uf-problems__conclusion > div:last-child > p {
	margin: 0 0 26px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 15px;
	font-weight: 440;
	letter-spacing: 0;
	line-height: 1.72;
}

.uf-problems__conclusion a,
.uf-problems__conclusion a:visited {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 44px;
	padding: 10px 15px;
	border: 1px solid rgba(239, 212, 158, 0.28);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--uf-gold-300) !important;
	font-size: 13px;
	font-weight: 780;
	letter-spacing: 0.01em;
	line-height: 1.2;
	white-space: nowrap;
	transition: background-color 180ms ease, border-color 180ms ease;
}

.uf-problems__conclusion a:hover,
.uf-problems__conclusion a:focus-visible {
	border-color: var(--uf-gold-300);
	background: rgba(255, 255, 255, 0.1);
}

.uf-problems__conclusion a span {
	transition: transform 180ms ease;
}

.uf-problems__conclusion a:hover span {
	transform: translateX(3px);
}

@media (max-width: 960px) {
	.uf-problem-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.uf-problem-card--lead,
	.uf-problem-card--wide {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.uf-problem-card--lead {
		min-height: 430px;
	}

	.uf-problem-card--compact:nth-child(3),
	.uf-problem-card--compact:nth-child(4) {
		grid-column: auto;
	}
}

@media (max-width: 620px) {
	body .ufp-platform .uf-problems > .uf-shell {
		box-sizing: border-box !important;
		width: 100% !important;
		max-width: calc(var(--uf-shell) + 40px) !important;
		padding-right: 20px !important;
		padding-left: 20px !important;
	}

	.uf-problems .uf-section-heading {
		margin-bottom: 31px;
	}

	.uf-problems .uf-section-heading h2 {
		font-size: clamp(37px, 11.5vw, 46px);
		line-height: 1.02;
	}

	.uf-problem-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 11px;
	}

	body .ufp-platform .uf-problem-card,
	body .ufp-platform .uf-problem-card--lead,
	body .ufp-platform .uf-problem-card--wide,
	body .ufp-platform .uf-problem-card--compact:nth-child(3),
	body .ufp-platform .uf-problem-card--compact:nth-child(4) {
		grid-column: auto;
		grid-row: auto;
		min-height: 0;
		padding: 23px 20px !important;
		border-radius: 18px;
	}

	body .ufp-platform .uf-problem-card--lead {
		min-height: 390px;
		padding: 25px 22px !important;
	}

	.uf-problem-card .uf-icon-tile,
	.uf-problem-card--lead .uf-icon-tile {
		width: 44px;
		height: 44px;
		margin: 0 0 24px;
		border-radius: 12px;
	}

	.uf-problem-card--lead .uf-icon-tile {
		margin-bottom: auto;
	}

	.uf-problem-card__content h3,
	.uf-problem-card--compact .uf-problem-card__content h3 {
		font-size: 24px;
	}

	.uf-problem-card--wide .uf-problem-card__content h3 {
		font-size: 27px;
	}

	.uf-problem-card--lead .uf-problem-card__content h3 {
		font-size: clamp(31px, 9.5vw, 38px);
	}

	.uf-problem-card__signal,
	.uf-problem-card--lead .uf-problem-card__signal {
		margin-top: 22px !important;
		padding-top: 15px;
	}

	.uf-site .uf-problems__conclusion {
		grid-template-columns: minmax(0, 1fr);
		gap: 19px;
		margin-top: 11px;
		padding: 25px 22px;
		border-radius: 19px;
	}

	.uf-problems__conclusion h3 {
		font-size: clamp(28px, 8.7vw, 34px);
	}

	.uf-problems__conclusion > div:last-child > p {
		margin-bottom: 23px;
	}
}

/* ==========================================================
   Utilfreds Platform 6.10.9 – hero på præcis tre linjer
   ========================================================== */
.uf-hero h1 {
	max-width: none;
	font-size: clamp(52px, 5vw, 64px);
	line-height: 1.01;
}

.uf-hero h1 > span,
.uf-hero h1 > em {
	display: block;
	white-space: nowrap;
}

@media (min-width: 861px) and (max-width: 1080px) {
	.uf-hero h1 {
		font-size: clamp(40px, 4.6vw, 52px);
	}
}

@media (max-width: 860px) {
	.uf-hero h1 {
		font-size: clamp(46px, 7.2vw, 62px);
	}
}

@media (max-width: 620px) {
	.uf-hero h1 {
		font-size: clamp(28px, 9.2vw, 40px);
		letter-spacing: -0.055em;
	}
}

/* ==========================================================
   Utilfreds Platform 6.10.16 – ensartet fokus uden stiplet ramme
   ========================================================== */
.uf-site :where(a, button, [role="button"], summary):focus {
	outline: none !important;
}

.uf-site :where(a, button, [role="button"], summary):focus-visible {
	outline: 2px solid rgba(210, 165, 86, 0.72) !important;
	outline-offset: 3px !important;
}

/* =========================================================
   VERSION 6.10.21 – centrerede juridiske dokumenter
   Cookiepolitik og Regler og vilkår følger nu samme visuelle
   system som Privatlivspolitik, mens Complianz fortsat ejer
   og opdaterer selve dokumentindholdet.
   ========================================================= */
body.page-slug-cookiepolitik .uf-platform-page-content,
body.page-slug-regler-og-vilkaar .uf-platform-page-content {
	background: var(--uf-canvas);
}

.pkm-legal-page {
	box-sizing: border-box;
	width: min(1080px, calc(100% - 48px));
	margin: 0 auto;
	padding: 72px 0 104px;
}

.pkm-legal-hero {
	max-width: 900px;
	margin: 0 auto 38px;
	padding-bottom: 40px;
	border-bottom: 1px solid #dfe5e2;
}

.pkm-legal-hero .pkm-eyebrow {
	margin: 0 0 18px;
	color: #1f4026;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.pkm-legal-hero h1 {
	max-width: 820px;
	margin: 0;
	color: #17211f;
	font-size: clamp(46px, 6vw, 74px);
	font-weight: 780;
	line-height: 1.01;
	letter-spacing: -.055em;
}

.pkm-legal-hero__lead {
	max-width: 720px;
	margin: 24px 0 0;
	color: #596761;
	font-size: 18px;
	line-height: 1.72;
}

.pkm-legal-document {
	box-sizing: border-box;
	width: min(900px, 100%);
	margin: 0 auto;
	padding: clamp(30px, 5vw, 54px);
	background: #fff;
	border: 1px solid #dfe5e2;
	border-radius: 18px;
	box-shadow: 0 12px 34px rgba(25, 55, 46, .055);
}

.pkm-legal-document > :first-child,
.pkm-legal-document .cmplz-document > :first-child {
	margin-top: 0 !important;
}

.pkm-legal-document > :last-child,
.pkm-legal-document .cmplz-document > :last-child {
	margin-bottom: 0 !important;
}

/* Den indbyggede Cookiepolitik består allerede af separate indholdskort.
   På denne variant fjernes det store ydre dokumentkort, så strukturen følger
   Privatlivspolitikkens række af selvstændige kort. */
.pkm-legal-page--cards .pkm-legal-document {
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.pkm-legal-page--cards .pkm-policy-page {
	display: grid;
	box-sizing: border-box;
	width: 100% !important;
	max-width: none !important;
	gap: 16px;
	margin: 0 !important;
	padding: 0 !important;
}

.pkm-legal-page--cards .pkm-policy-page > .pkm-card {
	margin: 0 !important;
	padding: 30px 32px !important;
	background: #fff !important;
	border: 1px solid #dfe5e2 !important;
	border-radius: 18px !important;
	box-shadow: 0 10px 30px rgba(25, 55, 46, .045) !important;
}

.pkm-legal-page--cards .pkm-policy-page > .pkm-card h2 {
	margin: 0 0 12px !important;
	padding: 0 !important;
	border: 0 !important;
	font-size: 25px !important;
}

.pkm-legal-page--cards .pkm-policy-page > .pkm-card :is(p, ul, ol) {
	margin-bottom: 0 !important;
}

body.page-slug-cookiepolitik .pkm-legal-document .cmplz-document,
body.page-slug-regler-og-vilkaar .pkm-legal-document .cmplz-document {
	box-sizing: border-box;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #53625b;
	font-family: inherit !important;
	font-size: 16px;
	line-height: 1.75;
}

body.page-slug-cookiepolitik .pkm-legal-document :is(h1, h2, h3, h4),
body.page-slug-regler-og-vilkaar .pkm-legal-document :is(h1, h2, h3, h4) {
	color: #17211f !important;
	font-family: inherit !important;
}

body.page-slug-cookiepolitik .pkm-legal-document h1,
body.page-slug-regler-og-vilkaar .pkm-legal-document h1 {
	margin: 0 0 24px !important;
	font-size: clamp(34px, 5vw, 48px) !important;
	font-weight: 760 !important;
	line-height: 1.08 !important;
	letter-spacing: -.045em !important;
}

body.page-slug-cookiepolitik .pkm-legal-document h2,
body.page-slug-regler-og-vilkaar .pkm-legal-document h2 {
	margin: 40px 0 14px !important;
	padding-top: 34px;
	border-top: 1px solid #e2e7e3;
	font-size: 25px !important;
	font-weight: 760 !important;
	line-height: 1.22 !important;
	letter-spacing: -.025em !important;
}

body.page-slug-cookiepolitik .pkm-legal-document h2:first-child,
body.page-slug-regler-og-vilkaar .pkm-legal-document h2:first-child,
body.page-slug-cookiepolitik .pkm-legal-document .cmplz-document > h2:first-child,
body.page-slug-regler-og-vilkaar .pkm-legal-document .cmplz-document > h2:first-child {
	margin-top: 0 !important;
	padding-top: 0;
	border-top: 0;
}

body.page-slug-cookiepolitik .pkm-legal-document h3,
body.page-slug-regler-og-vilkaar .pkm-legal-document h3 {
	margin: 28px 0 10px !important;
	font-size: 20px !important;
	font-weight: 740 !important;
	line-height: 1.3 !important;
	letter-spacing: -.015em !important;
}

body.page-slug-cookiepolitik .pkm-legal-document h4,
body.page-slug-regler-og-vilkaar .pkm-legal-document h4 {
	margin: 24px 0 8px !important;
	font-size: 17px !important;
	font-weight: 750 !important;
	line-height: 1.4 !important;
}

body.page-slug-cookiepolitik .pkm-legal-document :is(p, li, td, th),
body.page-slug-regler-og-vilkaar .pkm-legal-document :is(p, li, td, th) {
	color: #53625b !important;
	font-family: inherit !important;
	font-size: 16px !important;
	line-height: 1.75 !important;
}

body.page-slug-cookiepolitik .pkm-legal-document p,
body.page-slug-regler-og-vilkaar .pkm-legal-document p {
	margin: 0 0 18px !important;
}

body.page-slug-cookiepolitik .pkm-legal-document :is(ul, ol),
body.page-slug-regler-og-vilkaar .pkm-legal-document :is(ul, ol) {
	margin: 0 0 20px !important;
	padding-left: 24px !important;
}

body.page-slug-cookiepolitik .pkm-legal-document li + li,
body.page-slug-regler-og-vilkaar .pkm-legal-document li + li {
	margin-top: 8px;
}

body.page-slug-cookiepolitik .pkm-legal-document :is(a, a:visited),
body.page-slug-regler-og-vilkaar .pkm-legal-document :is(a, a:visited) {
	color: #1f4026 !important;
	font-weight: 700;
	text-decoration: none !important;
	text-underline-offset: 3px;
}

body.page-slug-cookiepolitik .pkm-legal-document :is(a:hover, a:focus-visible),
body.page-slug-regler-og-vilkaar .pkm-legal-document :is(a:hover, a:focus-visible) {
	color: #b68132 !important;
	text-decoration: underline !important;
}

body.page-slug-cookiepolitik .pkm-legal-document :is(table, .cmplz-categories-wrap),
body.page-slug-regler-og-vilkaar .pkm-legal-document :is(table, .cmplz-categories-wrap) {
	width: 100% !important;
	margin: 24px 0 !important;
	border-color: #dfe5e2 !important;
}

body.page-slug-cookiepolitik .pkm-legal-document :is(th, td),
body.page-slug-regler-og-vilkaar .pkm-legal-document :is(th, td) {
	padding: 14px 16px !important;
	border-color: #e2e7e3 !important;
}

body.page-slug-cookiepolitik .pkm-legal-document button,
body.page-slug-regler-og-vilkaar .pkm-legal-document button,
body.page-slug-cookiepolitik .pkm-legal-document .cmplz-manage-consent,
body.page-slug-regler-og-vilkaar .pkm-legal-document .cmplz-manage-consent {
	min-height: 48px;
	padding: 12px 20px !important;
	background: #1f4026 !important;
	color: #fff !important;
	border: 1px solid #1f4026 !important;
	border-radius: 10px !important;
	font-family: inherit !important;
	font-size: 15px !important;
	font-weight: 750 !important;
	line-height: 1.2 !important;
	box-shadow: none !important;
}

body.page-slug-cookiepolitik .pkm-legal-document button:hover,
body.page-slug-regler-og-vilkaar .pkm-legal-document button:hover,
body.page-slug-cookiepolitik .pkm-legal-document .cmplz-manage-consent:hover,
body.page-slug-regler-og-vilkaar .pkm-legal-document .cmplz-manage-consent:hover {
	background: #2a5533 !important;
	color: #fff !important;
}

@media (max-width: 820px) {
	.pkm-legal-page {
		width: min(100% - 36px, 760px);
		padding-top: 48px;
		padding-bottom: 72px;
	}

	.pkm-legal-hero {
		margin-bottom: 28px;
		padding-bottom: 30px;
	}

	.pkm-legal-hero h1 {
		font-size: clamp(42px, 11vw, 58px);
	}

	.pkm-legal-hero__lead {
		font-size: 16px;
	}

	.pkm-legal-document {
		padding: 28px 24px;
		border-radius: 15px;
	}

	.pkm-legal-page--cards .pkm-legal-document {
		padding: 0;
	}

	.pkm-legal-page--cards .pkm-policy-page > .pkm-card {
		padding: 24px 20px !important;
		border-radius: 15px !important;
	}

	body.page-slug-cookiepolitik .pkm-legal-document h2,
	body.page-slug-regler-og-vilkaar .pkm-legal-document h2 {
		margin-top: 34px !important;
		padding-top: 28px;
		font-size: 22px !important;
	}

	body.page-slug-cookiepolitik .pkm-legal-document :is(p, li, td, th),
	body.page-slug-regler-og-vilkaar .pkm-legal-document :is(p, li, td, th) {
		font-size: 15px !important;
	}
}

@media (max-width: 520px) {
	.pkm-legal-page {
		width: calc(100% - 28px);
	}

	.pkm-legal-document {
		padding: 24px 18px;
	}

	body.page-slug-cookiepolitik .pkm-legal-document :is(table, tbody, tr, th, td),
	body.page-slug-regler-og-vilkaar .pkm-legal-document :is(table, tbody, tr, th, td) {
		max-width: 100%;
	}
}

