:root {
	--brand-blue: #2c409b;
	--brand-blue-dark: #172565;
	--brand-green: #65b32e;
	--accessible-green: #356b19;
	--ink: #172033;
	--muted-ink: #536078;
	--surface: #ffffff;
	--surface-muted: #f5f7fb;
	--line: #d9dfed;
	--focus-light: #b8d8ff;
	--focus-dark: #1a5fb4;
	--radius: 12px;
	--content-width: 1200px;
}

* {
	box-sizing: border-box;
}

html {
	background: var(--surface-muted);
}

body {
	margin: 0;
	background: var(--surface);
	color: var(--ink);
	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
}

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

a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--brand-blue);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
	word-break: break-word;
}

a:hover {
	color: var(--brand-blue-dark);
}

a:focus-visible {
	outline: 3px solid var(--focus-dark);
	outline-offset: 4px;
}

.site-shell {
	width: min(100% - 40px, var(--content-width));
	margin-inline: auto;
}

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

.skip-link {
	position: absolute;
	left: 20px;
	top: 12px;
	z-index: 30;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 8px 14px;
	background: var(--surface);
	color: var(--brand-blue);
	font-weight: 700;
	transform: translateY(-180%);
}

.skip-link:focus-visible {
	transform: translateY(0);
	outline-color: var(--focus-dark);
}

.site-header {
	background: var(--surface);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	display: grid;
	gap: 12px;
	padding-block: 16px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	gap: 12px;
	color: var(--ink);
	font-size: 1.05rem;
	font-weight: 700;
	text-decoration: none;
}

.site-brand:hover {
	color: var(--brand-blue);
}

.site-brand__mark {
	flex: 0 0 48px;
}

.site-brand__mark img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
}

.site-brand__name strong {
	color: var(--brand-blue);
}

.site-nav ul,
.site-footer nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-nav a,
.site-header__contact a,
.site-footer a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 8px 4px;
	font-weight: 700;
}

.site-header__contact {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 16px;
}

.contact-link--phone {
	white-space: nowrap;
}

.site-notice {
	width: min(100% - 40px, var(--content-width));
	margin: 0 auto;
	padding: 0 0 14px;
	color: var(--muted-ink);
	font-size: 0.9rem;
}

.hero {
	position: relative;
	overflow: hidden;
	background: var(--brand-blue);
	color: var(--surface);
}

.hero::after {
	position: absolute;
	right: -80px;
	bottom: -100px;
	width: 260px;
	height: 260px;
	border: 28px solid rgba(101, 179, 46, 0.35);
	border-radius: 50%;
	content: "";
}

.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 40px;
	padding-block: 56px 64px;
}

.eyebrow {
	margin: 0 0 12px;
	color: var(--focus-light);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.3;
	text-transform: uppercase;
}

.eyebrow--dark {
	color: var(--accessible-green);
}

h1,
h2,
h3 {
	margin-top: 0;
	line-height: 1.12;
	text-wrap: balance;
}

h1 {
	max-width: 14ch;
	margin-bottom: 24px;
	font-size: clamp(2.25rem, 9vw, 4.5rem);
	letter-spacing: -0.04em;
}

h2 {
	margin-bottom: 16px;
	font-size: clamp(1.8rem, 5vw, 3rem);
	letter-spacing: -0.025em;
}

h3 {
	margin-bottom: 8px;
	font-size: 1.25rem;
}

p {
	max-width: 70ch;
}

.hero__lead {
	max-width: 58ch;
	margin-bottom: 28px;
	font-size: clamp(1.05rem, 2.3vw, 1.25rem);
}

.hero__actions,
.action-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
}

.button:hover {
	filter: brightness(0.96);
}

.button:focus-visible {
	outline-color: var(--focus-light);
}

.button--light {
	background: var(--surface);
	color: var(--brand-blue);
}

.button--light:hover {
	background: #eaf0ff;
	color: var(--brand-blue-dark);
}

.button--outline {
	border-color: var(--focus-light);
	color: var(--surface);
}

.button--outline:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--surface);
}

.button--primary {
	background: var(--brand-blue);
	color: var(--surface);
}

.button--primary:hover {
	background: var(--brand-blue-dark);
	color: var(--surface);
}

.button--secondary {
	border-color: var(--brand-blue);
	color: var(--brand-blue);
}

.button--secondary:hover {
	background: #e9edff;
	color: var(--brand-blue-dark);
}

.hero__overview {
	align-self: end;
	max-width: 320px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: var(--radius);
	background: rgba(23, 37, 101, 0.32);
}

.hero__overview-line {
	width: 72px;
	height: 8px;
	margin-bottom: 24px;
	background: var(--brand-green);
}

.hero__overview-label,
.hero__overview-copy {
	margin: 0;
	color: var(--focus-light);
}

.hero__overview-number {
	margin: 8px 0;
	font-size: 4rem;
	font-weight: 800;
	letter-spacing: -0.08em;
	line-height: 1;
}

.section {
	padding-block: 64px;
}

.section--compact {
	padding-block: 48px 64px;
}

.section--muted {
	background: var(--surface-muted);
}

.section--blue {
	background: var(--brand-blue);
	color: var(--surface);
}

.section--contact {
	background: #e9edff;
}

.section-heading {
	margin-bottom: 28px;
}

.section-heading--wide {
	max-width: 720px;
}

.section-heading--light .eyebrow,
.section-heading--light h2 {
	color: var(--surface);
}

.section-heading--light h2 {
	max-width: 18ch;
}

.audience-grid,
.services-grid {
	display: grid;
	gap: 16px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.info-card,
.service-card {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

.info-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 100%;
}

.info-card--accent {
	border-top: 5px solid var(--brand-green);
}

.text-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	margin-top: auto;
	padding-top: 16px;
	font-weight: 800;
}

.split-layout,
.private-panel,
.contact-layout {
	display: grid;
	gap: 28px;
}

.monitoring-copy {
	max-width: 58ch;
}

.monitoring-copy > p:first-child {
	font-size: 1.1rem;
}

.check-list {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 24px 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 28px;
}

.check-list li::before {
	position: absolute;
	left: 0;
	color: var(--brand-green);
	content: "✓";
	font-weight: 800;
}

.offer-note {
	padding: 16px;
	border-left: 4px solid var(--brand-green);
	background: rgba(255, 255, 255, 0.1);
}

.private-panel {
	align-items: center;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

.private-panel .section-heading,
.private-panel__copy p {
	margin-bottom: 0;
}

.services-grid {
	grid-template-columns: 1fr;
}

.service-card {
	height: 100%;
	border-top: 4px solid var(--brand-blue);
}

.service-card p:last-child {
	margin-bottom: 0;
	color: var(--muted-ink);
}

.contact-layout {
	align-items: start;
}

.contact-details {
	display: grid;
	gap: 24px;
	padding: 24px;
	border: 1px solid rgba(44, 64, 155, 0.2);
	border-radius: var(--radius);
	background: var(--surface);
}

address {
	font-style: normal;
}

.contact-details dl {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 0;
}

.contact-details dl > div {
	display: grid;
	grid-template-columns: 5rem 1fr;
	gap: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--line);
}

.contact-details dt {
	color: var(--muted-ink);
	font-weight: 700;
}

.contact-details dd {
	margin: 0;
	font-weight: 700;
}

.site-footer {
	background: var(--brand-blue-dark);
	color: var(--surface);
}

.site-footer__grid {
	display: grid;
	gap: 28px;
	padding-block: 40px;
}

.site-footer p {
	margin-top: 0;
}

.site-footer__title {
	font-weight: 800;
}

.site-footer__label {
	margin-bottom: 4px;
	color: var(--focus-light);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-footer a {
	color: var(--surface);
}

.site-footer a:hover {
	color: var(--focus-light);
}

.site-footer__contact {
	display: grid;
	justify-items: start;
}

@media (min-width: 30rem) {
	.audience-grid,
	.services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 48rem) {
	.site-header__inner {
		grid-template-columns: auto 1fr auto;
		align-items: center;
		gap: 20px;
	}

	.site-nav ul {
		justify-content: center;
	}

	.site-header__contact {
		justify-content: flex-end;
	}

	.hero__grid {
		grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
		align-items: center;
		gap: 64px;
		padding-block: 88px 96px;
	}

	.split-layout,
	.private-panel,
	.contact-layout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 64px;
	}

	.section-heading {
		margin-bottom: 0;
	}

	.private-panel {
		padding: 40px;
	}

	.site-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}
}

@media (min-width: 64rem) {
	.site-shell,
	.site-notice {
		width: min(100% - 96px, var(--content-width));
	}

	.hero__overview {
		justify-self: end;
	}

	.services-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
	}
}

/* Schutz in Bewegung: the landing page remains inside the blue brand world. */
:root {
	--blue-raised: #344ba6;
	--blue-depth: #172565;
	--blue-ink: #101b51;
	--blue-line: rgba(255, 255, 255, 0.22);
	--blue-line-soft: rgba(255, 255, 255, 0.12);
	--white-muted: #dbe5ff;
	--green-focus: #b7ee82;
	--journey-signal-distance: 240px;
}

html,
body {
	background: var(--brand-blue);
}

body {
	background: var(--brand-blue);
	color: var(--surface);
}

a {
	color: var(--surface);
}

a:hover {
	color: var(--green-focus);
}

a:focus-visible {
	outline-color: var(--green-focus);
}

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

.skip-link {
	background: var(--brand-green);
	color: var(--blue-ink);
}

.site-header {
	background: var(--blue-depth);
	border-bottom-color: var(--blue-line);
}

.site-header__inner {
	gap: 8px;
	padding-block: 12px;
}

.site-brand,
.site-brand:hover {
	color: var(--surface);
}

.site-brand__mark {
	flex-basis: 52px;
	padding: 2px;
	border: 1px solid var(--blue-line);
	border-radius: 50%;
	background: var(--surface);
}

.site-brand__mark img {
	width: 46px;
	height: 46px;
}

.site-brand__name strong {
	color: var(--green-focus);
}

.site-nav a,
.site-header__contact a,
.site-footer a {
	padding-inline: 8px;
	color: var(--surface);
	text-decoration-color: transparent;
}

.site-nav a:hover,
.site-header__contact a:hover,
.site-footer a:hover {
	color: var(--green-focus);
	text-decoration-color: currentcolor;
}

.site-header__contact {
	gap: 4px;
}

.site-notice {
	position: sticky;
	top: 0;
	z-index: 20;
	width: 100%;
	margin: 0;
	padding: 12px 20px;
	background: var(--brand-green);
	color: var(--blue-ink);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

#start,
#main-content,
.section {
	scroll-margin-top: 128px;
}

.site-notice__label {
	margin-right: 8px;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero {
	min-height: 620px;
	background: var(--brand-blue);
}

.hero::before {
	position: absolute;
	top: -180px;
	right: -110px;
	width: min(54vw, 620px);
	aspect-ratio: 1;
	border: 1px solid var(--blue-line);
	border-radius: 50%;
	box-shadow: 0 0 0 72px rgba(255, 255, 255, 0.035), 0 0 0 144px rgba(255, 255, 255, 0.025);
	content: "";
}

.hero::after {
	right: 12%;
	bottom: 14%;
	width: 120px;
	height: 120px;
	border-width: 1px;
	border-color: var(--blue-line);
	background: transparent;
}

.hero__grid {
	gap: 48px;
	padding-block: 64px 76px;
}

.eyebrow,
.eyebrow--dark {
	color: var(--green-focus);
}

h1,
h2,
h3 {
	color: var(--surface);
}

h1 {
	max-width: 13ch;
	font-size: clamp(2.45rem, 8.5vw, 3.5rem);
	letter-spacing: -0.055em;
}

h2 {
	max-width: 19ch;
}

.hero__lead {
	color: var(--white-muted);
	font-size: clamp(1.1rem, 2.1vw, 1.32rem);
}

.button {
	border-radius: var(--radius);
	transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button--light,
.button--primary {
	background: var(--brand-green);
	color: var(--blue-ink);
}

.button--light:hover,
.button--primary:hover {
	background: var(--green-focus);
	color: var(--blue-ink);
}

.button--outline,
.button--secondary {
	border-color: var(--blue-line);
	color: var(--surface);
}

.button--outline:hover,
.button--secondary:hover {
	border-color: var(--green-focus);
	background: transparent;
	color: var(--green-focus);
}

.button:focus-visible {
	outline-color: var(--green-focus);
}

.hero__journey {
	position: relative;
	max-width: 380px;
	padding: 28px;
	border: 1px solid var(--blue-line);
	border-radius: var(--radius);
	background: var(--blue-depth);
	box-shadow: 18px 18px 0 rgba(16, 27, 81, 0.25);
}

.hero__journey::before {
	position: absolute;
	top: 77px;
	bottom: 38px;
	left: 46px;
	width: 1px;
	background: var(--blue-line);
	content: "";
}

.hero__journey::after {
	position: absolute;
	top: 78px;
	left: 42px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--brand-green);
	box-shadow: 0 0 0 7px rgba(101, 179, 46, 0.18);
	content: "";
}

.hero__journey-label {
	margin: 0 0 26px;
	color: var(--surface);
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1.35;
}

.hero__journey-list {
	display: grid;
	gap: 24px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.journey-step {
	position: relative;
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 16px;
	align-items: start;
}

.journey-step__number {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--blue-line);
	border-radius: 50%;
	background: var(--blue-depth);
	color: var(--green-focus);
	font-size: 0.75rem;
	font-weight: 800;
}

.journey-step strong {
	display: block;
	margin-top: 4px;
	color: var(--surface);
}

.journey-step p {
	margin: 3px 0 0;
	color: var(--white-muted);
	font-size: 0.9rem;
	line-height: 1.45;
}

.section,
.section--compact,
.section--muted,
.section--blue,
.section--contact {
	position: relative;
	background: var(--brand-blue);
	color: var(--surface);
}

.section,
.section--compact {
	padding-block: 76px;
	border-top: 1px solid var(--blue-line-soft);
}

.section--blue {
	background: var(--blue-depth);
}

.section--blue::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--brand-green);
	content: "";
}

.section-heading {
	margin-bottom: 32px;
}

.section-heading p,
.monitoring-copy > p,
.private-panel__copy p,
.service-card p:last-child,
.contact-details dt {
	color: var(--white-muted);
}

.section-heading--light .eyebrow,
.section-heading--light h2 {
	color: var(--surface);
}

.audience-grid,
.services-grid {
	gap: 12px;
}

.info-card,
.service-card,
.private-panel,
.contact-details {
	border-color: var(--blue-line);
	background: var(--blue-raised);
	box-shadow: none;
}

.info-card,
.service-card {
	padding: 28px;
}

.info-card,
.service-card {
	border-top-width: 4px;
	border-top-color: var(--brand-green);
}

.info-card {
	color: var(--surface);
	text-decoration: none;
}

.info-card:hover {
	color: var(--surface);
}

.info-card__arrow {
	margin-top: auto;
	color: var(--green-focus);
	font-size: 1.4rem;
	font-weight: 800;
}

.check-list li::before {
	color: var(--green-focus);
}

.offer-note {
	border-left-color: var(--brand-green);
	background: rgba(255, 255, 255, 0.08);
}

.audience-section {
	scroll-margin-top: 128px;
}

.audience-section__copy {
	align-self: center;
	padding: 28px;
	border: 1px solid var(--blue-line);
	border-left: 4px solid var(--brand-green);
	border-radius: var(--radius);
	background: var(--blue-raised);
}

.audience-section__copy > p:first-child {
	margin-top: 0;
	color: var(--white-muted);
	font-size: 1.1rem;
}

.audience-section__copy .check-list {
	margin-bottom: 28px;
}

.private-panel {
	padding: 32px;
}

.contact-details {
	padding: 28px;
}

.contact-details dl > div {
	border-top-color: var(--blue-line);
}

.contact-details a {
	color: var(--surface);
}

.contact-details a:hover {
	color: var(--green-focus);
}

.site-footer {
	border-top: 1px solid var(--blue-line);
	background: var(--blue-ink);
}

.site-footer__label {
	color: var(--green-focus);
}

@keyframes signal-travel {
	0%,
	15% {
		transform: translateY(0);
		opacity: 0;
	}
	25%,
	80% {
		opacity: 1;
	}
	90%,
	100% {
		transform: translateY(var(--journey-signal-distance));
		opacity: 0;
	}
}

@media (max-width: 47.99rem) {
	.hero__journey {
		--journey-signal-distance: 256px;
	}

	.site-header__contact {
		order: 2;
	}

	.site-nav {
		order: 3;
	}
}

@media (min-width: 30rem) {
	.hero__journey {
		padding: 32px;
	}
}

@media (min-width: 48rem) {
	.site-header__inner {
		grid-template-columns: auto 1fr auto;
		gap: 12px;
	}

	.hero__grid {
		grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
		gap: 72px;
		padding-block: 104px;
	}

	.hero__journey {
		justify-self: end;
		width: 100%;
	}

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

	.section-heading {
		margin-bottom: 36px;
	}
}

@media (min-width: 64rem) {
	.site-shell {
		width: min(100% - 96px, var(--content-width));
	}

	.hero__journey {
		margin-top: 48px;
		margin-right: 28px;
	}
}

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

	.hero__journey::after {
		animation: signal-travel 4.8s ease-in-out infinite;
	}
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
	.info-card,
	.service-card {
		transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
	}

	.info-card:hover,
	.info-card:focus-within,
	.service-card:hover {
		transform: translateY(-6px);
		border-color: var(--green-focus);
		background: #3d56b5;
	}
}
