:root {
	--vck-primary: #1f7aea;
	--vck-primary-strong: #165cb3;
	--vck-secondary: #0c1b30;
	--vck-secondary-strong: #071220;
	--vck-accent: #8fb5de;
	--vck-surface: #0f2239;
	--vck-text: #e8f0fb;
	--vck-text-soft: #c3d5ea;
	--vck-bg-start: #050d18;
	--vck-bg-mid: #0a182a;
	--vck-bg-end: #0f2238;
	--vck-bg-services: #0f2239;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 7.5rem;
}

body {
	margin: 0;
	font-family: "Segoe UI", Roboto, Arial, sans-serif;
	background: linear-gradient(160deg, var(--vck-bg-start) 0%, var(--vck-bg-mid) 48%, var(--vck-bg-end) 100%);
	color: var(--vck-text);
	line-height: 1.6;
	min-height: 100vh;
}

a {
	color: var(--vck-primary);
	text-decoration: none;
}

a:hover {
	color: var(--vck-primary-strong);
}

.container {
	width: min(1180px, 92%);
	margin: 0 auto;
}

.site-header {
	background: linear-gradient(120deg, rgba(7, 18, 32, 0.92) 0%, rgba(12, 27, 48, 0.9) 100%);
	color: var(--vck-text);
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(6px);
	border-bottom: 1px solid rgba(143, 181, 222, 0.24);
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid rgba(143, 181, 222, 0.4);
	border-radius: 0.5rem;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease;
}

.menu-toggle:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(187, 209, 232, 0.55);
}

.menu-toggle:focus-visible {
	outline: 2px solid rgba(143, 181, 222, 0.85);
	outline-offset: 2px;
}

.menu-toggle__box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 1.25rem;
	height: 1rem;
}

.menu-toggle__bar {
	display: block;
	height: 2px;
	border-radius: 1px;
	background: #fff;
	transition: transform 200ms ease, opacity 200ms ease;
	transform-origin: center;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle[aria-expanded='true'] .menu-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Do not set position: relative here — it overrides mobile position:fixed and traps the overlay. */
body.site-nav-open .site-header {
	z-index: 99998;
}

.site-branding {
	color: var(--vck-text);
	font-size: 1.2rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
}

.site-branding .custom-logo,
.site-branding-logo {
	display: block;
	height: 108px;
	width: auto;
	max-height: none;
}

.main-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.main-nav ul {
	display: flex;
	gap: 1.35rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-nav a {
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
}

.main-nav a:hover {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.content-area {
	padding: 2rem 0;
}

.hero {
	padding: 5rem 0;
	background-image:
		linear-gradient(120deg, rgba(5, 14, 24, 0.78) 10%, rgba(7, 18, 32, 0.6) 52%, rgba(5, 14, 24, 0.8) 100%),
		var(--hero-bg-image, none);
	background-size: cover;
	background-position: center;
	box-shadow: 0 28px 60px rgba(2, 8, 20, 0.4);
}

.hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(250px, 1fr);
	gap: 1.2rem;
	align-items: stretch;
}

.hero-panel {
	padding: 2rem 2.1rem;
	/* Opaque panel so hero text stays readable over busy photography */
	background: linear-gradient(165deg, #152a46 0%, #0f1f35 100%);
	border: 1px solid rgba(140, 178, 215, 0.45);
	box-shadow: 0 12px 40px rgba(2, 8, 20, 0.35);
}

.hero-copy {
	color: #f6fbff;
	max-width: 56ch;
}

.eyebrow {
	display: inline-block;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: rgba(31, 122, 234, 0.22);
	border: 1px solid rgba(143, 181, 222, 0.44);
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	margin-bottom: 1rem;
}

.hero h1 {
	font-size: clamp(1.8rem, 3vw, 3rem);
	margin: 0 0 0.8rem;
	line-height: 1.15;
	color: #f5f9ff;
}

.hero p {
	margin: 0.4rem 0;
	color: #e6f0fb;
}

.cta-row {
	display: flex;
	gap: 0.8rem;
	margin-top: 1.15rem;
	flex-wrap: wrap;
}

@media (max-width: 520px) {
	.hero .cta-row {
		flex-direction: column;
		align-items: stretch;
	}

	.hero .cta-row .btn {
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}
}

.btn {
	display: inline-block;
	padding: 0.7rem 1.1rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(158, 191, 222, 0.52);
	background: linear-gradient(180deg, var(--vck-primary) 0%, var(--vck-primary-strong) 100%);
	color: #fff;
	font-weight: 600;
	position: relative;
	overflow: hidden;
	transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.btn:hover {
	filter: brightness(1.08);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 12px 18px rgba(16, 76, 155, 0.32);
}

.btn::after {
	content: "";
	position: absolute;
	top: -140%;
	left: -30%;
	width: 60%;
	height: 300%;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
	transform: rotate(16deg);
	opacity: 0;
	pointer-events: none;
}

.btn:hover::after {
	opacity: 1;
	animation: contact-button-shine 620ms ease;
}

.site-header .btn:hover {
	color: #ffffff;
	filter: brightness(1.1);
}

.btn-small {
	padding: 0.5rem 0.85rem;
	font-size: 0.9rem;
}

.site-header .btn-small {
	padding: 0.72rem 1.35rem;
	font-size: 1.05rem;
	border-radius: 0.55rem;
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(187, 209, 232, 0.45);
}

button.btn {
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.btn-consultation-open {
	padding: 0.85rem 1.4rem;
	font-size: 1.06rem;
	border-radius: 0.55rem;
}

.consultation-dialog {
	padding: 0;
	border: none;
	background: transparent;
	max-width: min(440px, calc(100vw - 2rem));
	width: 100%;
	margin: auto;
	color: #fff;
}

.consultation-dialog::backdrop {
	background: rgba(5, 13, 24, 0.62);
	backdrop-filter: blur(5px);
}

.consultation-dialog__box {
	position: relative;
	padding: 1.85rem 1.75rem 1.65rem;
	background: linear-gradient(165deg, #1a4588 0%, #1e4d9b 100%);
	border-radius: 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 28px 56px rgba(2, 12, 28, 0.5);
}

.consultation-dialog__close {
	position: absolute;
	top: 0.6rem;
	right: 0.6rem;
	width: 2.25rem;
	height: 2.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	border-radius: 0.4rem;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	transition: background 150ms ease;
}

.consultation-dialog__close:hover {
	background: rgba(255, 255, 255, 0.28);
}

.consultation-dialog__title {
	margin: 0 2rem 0.65rem 0;
	font-size: clamp(1.2rem, 2.2vw, 1.45rem);
	line-height: 1.25;
	color: #fff;
}

.consultation-dialog__lead {
	margin: 0 0 1.15rem;
	font-size: 0.98rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
}

.consultation-dialog__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}

.consultation-dialog__list li {
	display: grid;
	gap: 0.15rem;
	font-size: 1.02rem;
}

.consultation-dialog__label {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.75);
}

.consultation-dialog__list a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.consultation-dialog__list a:hover {
	text-decoration: underline;
}

.consultation-dialog__footnote {
	margin: 1.25rem 0 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
}

.consultation-dialog__form-link {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.consultation-dialog__form-link:hover {
	color: rgba(255, 255, 255, 0.9);
}

@media (prefers-reduced-motion: reduce) {
	.consultation-dialog::backdrop {
		backdrop-filter: none;
	}
}

/* Job apply modal: mobile-first single column; 2-col + aligned inputs only on wider screens */
.consultation-dialog.apply-dialog {
	width: min(100%, calc(100vw - 1.25rem));
	max-width: min(520px, calc(100vw - 1.25rem));
	margin-inline: auto;
}

.consultation-dialog.apply-dialog .consultation-dialog__box {
	max-height: min(88dvh, calc(100dvh - 2rem));
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding-left: max(1.75rem, env(safe-area-inset-left, 0px));
	padding-right: max(1.75rem, env(safe-area-inset-right, 0px));
}

.apply-dialog__notice {
	margin: 0 0 1rem;
	padding: 0.65rem 0.75rem;
	border-radius: 0.45rem;
	font-size: 0.92rem;
	line-height: 1.45;
}

.apply-dialog__notice--success {
	background: rgba(46, 160, 110, 0.28);
	border: 1px solid rgba(120, 220, 170, 0.45);
	color: #e8fff4;
}

.apply-dialog__notice--error {
	background: rgba(200, 72, 72, 0.28);
	border: 1px solid rgba(255, 160, 160, 0.45);
	color: #ffecec;
}

.apply-dialog__form {
	margin: 0;
}

.apply-dialog__fields {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	gap: 0.7rem;
	margin: 0 0 1rem;
}

.apply-dialog__field {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-height: 0;
	min-width: 0;
	width: 100%;
	margin: 0;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.95);
}

.apply-dialog__field--full {
	grid-column: 1 / -1;
}

.apply-dialog__label {
	display: block;
	flex-shrink: 0;
	width: 100%;
	margin-bottom: 0.35rem;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.78);
}

.apply-dialog__optional {
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	opacity: 0.85;
}

.apply-dialog__field input,
.apply-dialog__field textarea {
	flex-shrink: 0;
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	margin-top: 0;
	padding: 0.55rem 0.65rem;
	border-radius: 0.45rem;
	border: 1px solid rgba(20, 40, 60, 0.18);
	background: #fff;
	color: #142032;
	font: inherit;
	font-size: 1rem;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.apply-dialog__field input::placeholder,
.apply-dialog__field textarea::placeholder {
	color: rgba(20, 40, 60, 0.45);
}

.apply-dialog__field input:focus,
.apply-dialog__field textarea:focus {
	outline: none;
	border-color: rgba(46, 110, 200, 0.75);
	box-shadow: 0 0 0 2px rgba(120, 180, 255, 0.35);
}

.apply-dialog__field textarea {
	resize: vertical;
	min-height: 5.5rem;
}

.apply-dialog__submit {
	width: 100%;
	margin-top: 0.15rem;
	box-sizing: border-box;
}

@media (min-width: 641px) {
	.apply-dialog__fields {
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
		gap: 0.75rem 0.85rem;
	}

	.apply-dialog__field {
		min-height: 100%;
	}

	.apply-dialog__field input,
	.apply-dialog__field textarea {
		margin-top: auto;
	}
}

@media (max-width: 640px) {
	.consultation-dialog.apply-dialog .consultation-dialog__box {
		padding-top: 1.35rem;
		padding-bottom: 1.2rem;
	}
}

.glass-card {
	background: linear-gradient(165deg, #1a4570 0%, #14375d 100%);
	border: 1px solid rgba(160, 198, 232, 0.42);
	border-radius: 0.85rem;
	box-shadow: 0 8px 28px rgba(2, 10, 24, 0.28);
}

.hero-stat {
	padding: 1.1rem 1.2rem;
	background: linear-gradient(165deg, #1a4570 0%, #14375d 100%);
	border: 1px solid rgba(174, 208, 238, 0.46);
	color: #f6fbff;
	box-shadow: 0 8px 28px rgba(2, 10, 24, 0.28);
}

.hero-stat h3 {
	margin-top: 0;
}

.hero-stat ul {
	padding-left: 1.1rem;
	margin-bottom: 0;
	color: #f0f6ff;
	line-height: 1.45;
}

.hero-stat--image {
	padding: 0;
	overflow: hidden;
	position: relative;
	aspect-ratio: 4 / 3;
	max-height: min(42vh, 400px);
	align-self: stretch;
	background: transparent;
}

.hero-stat-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 58% 42%;
	display: block;
}

.cta-callout {
	position: relative;
	overflow: hidden;
	margin-inline: calc(50% - 50vw);
	padding: clamp(3.25rem, 8vw, 5.75rem) max(4vw, 2rem);
	background: linear-gradient(120deg, #1e4d7a 0%, #1a4570 50%, #173c63 100%);
	color: #fff;
	text-align: center;
}

.cta-callout::before,
.cta-callout::after {
	content: "";
	position: absolute;
	top: 50%;
	width: min(55vmin, 420px);
	height: min(55vmin, 420px);
	transform: translateY(-50%);
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.08);
	pointer-events: none;
}

.cta-callout::before {
	left: -6%;
}

.cta-callout::after {
	right: -6%;
}

.cta-callout-inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto;
	display: grid;
	gap: 1.25rem;
	justify-items: center;
}

.cta-callout-title {
	margin: 0;
	font-size: clamp(1.65rem, 3.2vw, 2.35rem);
	line-height: 1.2;
	font-weight: 700;
	color: #fff;
}

.cta-callout-lead {
	margin: 0;
	font-size: clamp(1rem, 1.35vw, 1.15rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
	max-width: 52ch;
}

.cta-callout-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.35rem;
	padding: 0.75rem 1.85rem;
	border-radius: 999px;
	background: #fff;
	color: #0a3d4c;
	font-weight: 700;
	font-size: 0.98rem;
	text-decoration: none;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
	position: relative;
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.cta-callout-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
	color: #083542;
}

.cta-callout-btn::after {
	content: "";
	position: absolute;
	top: -140%;
	left: -30%;
	width: 60%;
	height: 300%;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(10, 61, 76, 0.12) 50%, rgba(255, 255, 255, 0) 100%);
	transform: rotate(16deg);
	opacity: 0;
	pointer-events: none;
}

.cta-callout-btn:hover::after {
	opacity: 1;
	animation: contact-button-shine 620ms ease;
}

/* Split banner: image + overlay card | text panel */
.customer-split {
	width: 100%;
	overflow: hidden;
}

.customer-split-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: stretch;
	min-height: min(52vh, 520px);
}

.customer-split-media {
	position: relative;
	min-height: min(52vh, 520px);
	background: #0c1b30;
	overflow: hidden;
}

.customer-split-img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: min(52vh, 520px);
	object-fit: cover;
	object-position: center center;
	opacity: 0.92;
}

.customer-split-overlay {
	position: absolute;
	left: 0;
	bottom: 0;
	width: min(78%, 26rem);
	max-width: calc(100% - 1rem);
	padding: 1.15rem 1.35rem 1.35rem 1.15rem;
	background: linear-gradient(165deg, #1a4588 0%, #1e4d9b 100%);
	color: #fff;
	border-radius: 0 0.85rem 0.85rem 0;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.customer-split-overlay-label {
	margin: 0 0 0.4rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.95;
}

.customer-split-overlay-quote {
	margin: 0;
	font-size: clamp(0.95rem, 1.35vw, 1.08rem);
	line-height: 1.45;
	font-weight: 600;
	font-style: normal;
}

.customer-split-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.85rem;
	padding: clamp(2rem, 5vw, 3.75rem) clamp(1.5rem, 4vw, 3.25rem);
	background: linear-gradient(165deg, #1a4588 0%, #1e4d9b 48%, #1a4588 100%);
	color: #fff;
}

.customer-split-eyebrow {
	margin: 0;
	color: rgba(255, 255, 255, 0.95);
}

.customer-split-title {
	margin: 0;
	font-size: clamp(1.45rem, 2.6vw, 2.05rem);
	line-height: 1.2;
	font-weight: 700;
	color: #fff;
}

.customer-split-lead {
	margin: 0;
	font-size: clamp(0.98rem, 1.25vw, 1.08rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.94);
	max-width: 52ch;
}

@media (max-width: 900px) {
	.customer-split-grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.customer-split-media {
		min-height: min(42vh, 380px);
	}

	.customer-split-img {
		min-height: min(42vh, 380px);
	}

	.customer-split-overlay {
		width: min(88%, 24rem);
	}
}


.section-grid {
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
	gap: 3rem;
	align-items: start;
	position: relative;
	padding: 2.2rem max(4vw, 2rem) 2rem;
	background: linear-gradient(120deg, #1e4d7a 0%, #1a4570 50%, #173c63 100%);
	border: 0;
	border-radius: 0;
	color: #f2f8ff;
}

.section-grid::before {
	content: none;
}

.about-company {
	padding: 0.3rem 0;
	position: relative;
	overflow: hidden;
	animation: section-slide-up 750ms ease-out both;
}

.about-company h2 {
	margin: 0.15rem 0 0.65rem;
	line-height: 1.2;
	font-size: clamp(1.45rem, 2.2vw, 2rem);
	color: #f4f9ff;
}

.about-company p {
	color: #e8f2fc;
	margin: 0.75rem 0;
	max-width: 62ch;
	font-size: 1.04rem;
	line-height: 1.6;
}

.about-company::after {
	content: none;
}

.about-company .eyebrow {
	background: transparent;
	border: 0;
	padding: 0;
	border-radius: 0;
	margin-bottom: 0.6rem;
	color: #b9d2eb;
	letter-spacing: 0.06em;
}

.stats-list {
	padding: 0.45rem 0 0.45rem 0.4rem;
	position: relative;
	overflow: visible;
	animation: section-slide-up 850ms ease-out both;
	animation-delay: 120ms;
}

.stats-list h3 {
	margin: 0 0 0.95rem;
	font-size: 1.75rem;
	line-height: 1.1;
	position: relative;
	display: inline-block;
	color: #f1f8ff;
}

.stats-list h3::after {
	content: "";
	display: block;
	margin-top: 0.35rem;
	height: 2px;
	width: 72px;
	background: linear-gradient(90deg, rgba(88, 165, 255, 0.95) 0%, rgba(88, 165, 255, 0) 100%);
}

.stats-list-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 1.6rem;
	row-gap: 1.3rem;
	position: relative;
}

.stats-list-grid::before {
	content: none;
}

.stats-list-item {
	padding: 0.3rem 0;
	display: grid;
	gap: 0.35rem;
	background: transparent;
	min-height: 0;
	position: relative;
	overflow: visible;
	transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.stats-list-item strong {
	font-size: clamp(2rem, 2.5vw, 2.25rem);
	line-height: 1;
	color: #d6e8fb;
	letter-spacing: 0.01em;
	transition: transform 220ms ease, color 220ms ease;
}

.stats-list-item strong span {
	font-size: 0.66em;
}

.stats-list-item > span {
	color: #e8f2fc;
	font-size: 1.03rem;
	line-height: 1.3;
}

.section-grid:hover .about-company {
	transform: translateY(-2px);
	transition: transform 280ms ease;
}

.stats-list:hover {
	transition: transform 280ms ease;
	transform: translateY(-2px);
}

.stats-list-item::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.2rem;
	height: 1px;
	width: 58%;
	background: linear-gradient(90deg, rgba(145, 198, 255, 0.85) 0%, rgba(145, 198, 255, 0) 100%);
	transform-origin: left center;
	transform: scaleX(0.2);
	opacity: 0;
}

.stats-list-item:hover {
	background: transparent;
	transform: translateY(-2px);
	box-shadow: none;
}

.stats-list-item:hover::before {
	opacity: 1;
	transform: scaleX(1);
	transition: transform 220ms ease, opacity 220ms ease;
}

.stats-list-item:hover strong {
	transform: translateY(-1px);
	color: #eef7ff;
}

@keyframes section-slide-up {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes stat-shine {
	from {
		left: -58%;
	}
	to {
		left: 130%;
	}
}

@keyframes about-glow-pulse {
	0%,
	100% {
		opacity: 0.45;
		transform: scale(0.94);
	}
	50% {
		opacity: 0.85;
		transform: scale(1.04);
	}
}

@keyframes about-section-ambient {
	0%,
	100% {
		opacity: 0.72;
		transform: translateX(0);
	}
	50% {
		opacity: 1;
		transform: translateX(-8px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.about-company,
	.stats-list,
	.stats-list-item,
	.stats-list-item::before,
	.about-company::after,
	.section-grid::before {
		animation: none !important;
		transition: none !important;
		transform: none !important;
	}
}

.latest-posts {
	padding: 2rem 0;
}

.scrolling-image-break {
	min-height: 42vh;
	display: grid;
	align-items: center;
	background-image: var(--scrolling-break-image, none);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
	overflow: hidden;
}

.scrolling-image-break-inner {
	padding: 3.1rem 0;
	color: #dce9f8;
}

.scrolling-image-break-inner .eyebrow {
	background: var(--vck-primary-strong);
	border-color: #345b7f;
	color: #fff;
}

.scrolling-image-break h2 {
	margin: 0;
	max-width: 22ch;
	font-size: clamp(1.7rem, 3.1vw, 2.6rem);
	line-height: 1.12;
	color: #edf5ff;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
}

.services-offer {
	width: 100%;
	padding: 5%;
	background: var(--vck-bg-services);
	text-align: center;
}

.services-offer > h2 {
	color: #e8f1fd;
	margin: 0 0 1.35rem;
	font-size: clamp(1.9rem, 3.2vw, 2.75rem);
}

.services-offer-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(250px, 300px));
	gap: 1.8rem;
	justify-content: center;
}

.offer-card {
	padding: 1.75rem 1.45rem 1.55rem;
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	align-content: stretch;
	gap: 1rem;
	background: linear-gradient(120deg, #1e4d7a 0%, #1a4570 50%, #173c63 100%);
	border: 1px solid rgba(165, 201, 234, 0.45);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
	min-height: 420px;
}

.offer-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 36px rgba(8, 30, 66, 0.38);
	border-color: rgba(92, 148, 209, 0.62);
}

.offer-icon {
	width: 76px;
	height: 76px;
	display: grid;
	place-items: center;
	border-radius: 0.9rem;
	background: var(--vck-primary-strong);
	border: 1px solid #365e85;
	margin: 0 auto;
}

.offer-icon svg {
	width: 46px;
	height: 46px;
	fill: #d9ebff;
}

.offer-card h3 {
	margin: 0;
	font-size: 1.9rem;
	line-height: 1.1;
	color: #f0f7ff;
}

.offer-card p {
	margin: 0;
	color: #dceaf8;
	min-height: 4.9em;
}

.offer-card .btn {
	margin-top: 0.35rem;
	justify-self: center;
	align-self: end;
	background: var(--vck-primary-strong);
	border-color: #365e85;
	color: #fff;
	box-shadow: 0 10px 16px rgba(16, 79, 160, 0.3);
}

.offer-card .btn:hover {
	background: #365f86;
	border-color: #2f5375;
	filter: none;
}

.contact-section {
	padding: 2.1rem 0 2.3rem;
	background: linear-gradient(120deg, rgba(9, 23, 40, 0.96) 0%, rgba(12, 30, 51, 0.94) 45%, rgba(9, 23, 40, 0.96) 100%);
	border-top: 1px solid rgba(155, 188, 220, 0.2);
	border-bottom: 1px solid rgba(155, 188, 220, 0.18);
	position: relative;
	overflow: hidden;
}

.contact-section-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
	gap: 1.2rem;
	padding: 0.45rem 0;
	position: relative;
	z-index: 1;
}

.contact-notice {
	grid-column: 1 / -1;
	margin: 0 0 0.75rem;
	padding: 0.85rem 1.1rem;
	border-radius: 0.65rem;
	font-size: 0.98rem;
	line-height: 1.45;
}

.contact-notice--success {
	background: rgba(40, 90, 140, 0.45);
	border: 1px solid rgba(160, 210, 255, 0.35);
	color: #e9f4ff;
}

.contact-notice--error {
	background: rgba(120, 40, 40, 0.35);
	border: 1px solid rgba(255, 160, 140, 0.4);
	color: #ffe8e4;
}

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

.contact-copy {
	padding: 1.25rem 1.2rem;
	animation: contact-copy-enter 700ms ease both;
}

.contact-copy h2 {
	margin: 0.2rem 0 0.7rem;
	line-height: 1.15;
	font-size: clamp(1.8rem, 2.6vw, 2.5rem);
	color: #edf5ff;
}

.contact-copy p.whitetext {
	color: #d3e2f4;
}

.contact-copy p {
	margin: 0.45rem 0;
	color: #d3e2f4;
}

.contact-points {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	display: grid;
	gap: 0.45rem;
	color: #d0e1f3;
}

.contact-form-panel {
	background: #fff;
	border: 1px solid rgba(161, 196, 228, 0.48);
	border-radius: 0.9rem;
	padding: 1.05rem;
	animation: contact-form-enter 820ms ease both;
	animation-delay: 110ms;
	transition: transform 260ms ease, box-shadow 260ms ease;
}

.contact-form-panel:hover {
	transform: translateY(-3px);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 20px 34px rgba(7, 26, 59, 0.25);
}

.contact-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem 0.85rem;
}

.contact-form-grid label {
	display: grid;
	gap: 0.3rem;
}

.contact-form-grid label span {
	color: var(--vck-primary);
	font-weight: 600;
	font-size: 0.9rem;
}

.contact-form-grid input,
.contact-form-grid textarea {
	width: 100%;
	border: 1px solid rgba(134, 167, 201, 0.5);
	border-radius: 0.5rem;
	background: #fff;
	color: #123253;
	padding: 0.62rem 0.7rem;
	font: inherit;
	transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
	outline: 2px solid rgba(79, 134, 184, 0.34);
	outline-offset: 1px;
	border-color: rgba(79, 134, 184, 0.78);
	box-shadow: 0 0 0 4px rgba(79, 134, 184, 0.16);
	transform: translateY(-1px);
}

.contact-message-field {
	grid-column: 1 / -1;
}

.contact-form-grid textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-submit {
	margin-top: 0.9rem;
	padding-inline: 1.5rem;
}

@keyframes contact-copy-enter {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes contact-form-enter {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.99);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes contact-ambient-pulse {
	0%,
	100% {
		opacity: 0.48;
		transform: scale(0.94);
	}
	50% {
		opacity: 0.92;
		transform: scale(1.08);
	}
}

@keyframes contact-button-shine {
	from {
		left: -45%;
	}
	to {
		left: 120%;
	}
}

.latest-posts h2 {
	margin: 0 0 0.8rem;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.post-card {
	background: linear-gradient(160deg, rgba(18, 41, 67, 0.82) 0%, rgba(13, 30, 50, 0.8) 100%);
	border-left: 4px solid var(--vck-primary);
	padding: 1.2rem;
	margin-bottom: 1rem;
	border-radius: 0.65rem;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.post-title {
	margin-top: 0;
	margin-bottom: 0.35rem;
}

.post-meta {
	font-size: 0.875rem;
	opacity: 0.88;
	margin-bottom: 0.75rem;
	color: #e2effd;
}

.site-footer {
	padding: 0;
	background: linear-gradient(165deg, #1a4588 0%, #1e4d9b 48%, #1a4588 100%);
	color: #fff;
	border-top: 3px solid rgba(255, 255, 255, 0.22);
}

.site-footer a {
	color: #fff;
}

.site-footer a:hover {
	color: rgba(255, 255, 255, 0.88);
}

.site-footer-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 0.85fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	padding: clamp(1.35rem, 3.5vw, 2rem) 0 clamp(2rem, 4vw, 2.75rem);
	align-items: start;
}

.site-footer-brand {
	display: grid;
	gap: 1.35rem;
	align-content: start;
}

.site-footer-logo-wrap {
	line-height: 0;
	margin-top: -0.15rem;
}

.site-footer-logo-wrap .custom-logo-link,
.site-footer-logo-link {
	display: inline-block;
	line-height: 0;
}

.site-footer-logo-wrap .custom-logo,
.site-footer-logo {
	display: block;
	height: 80px;
	width: auto;
	max-width: 340px;
	object-fit: contain;
}

.site-footer-contact {
	margin: 0;
	font-style: normal;
	display: grid;
	gap: 0.55rem;
	font-size: 1.08rem;
	line-height: 1.5;
}

.site-footer-contact a {
	text-decoration: none;
	font-weight: 600;
}

.site-footer-phone {
	font-size: 1.28rem;
	font-weight: 700;
	line-height: 1.35;
}

.site-footer-contact a:hover {
	text-decoration: underline;
}

.site-footer-heading {
	margin: 0 0 1rem;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
}

.site-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
	font-size: 1.06rem;
	line-height: 1.45;
}

.site-footer-menu a {
	font-weight: 600;
	text-decoration: none;
}

.site-footer-menu a:hover {
	text-decoration: underline;
}

.site-footer-social-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.site-footer-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	transition: background 160ms ease, color 160ms ease;
}

.site-footer-social-link:hover {
	background: #8fb5de;
	color: #1e4d9b;
}

.site-footer-social-icon {
	width: 1.25rem;
	height: 1.25rem;
}

.site-footer-bottom {
	padding: 0 0 clamp(1.75rem, 4vw, 2.5rem);
}

.site-footer-copy {
	margin: 0;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.28);
	font-size: 1.02rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.92);
}

.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;
}

@media (max-width: 768px) {
	.site-footer-inner {
		grid-template-columns: 1fr;
		padding-bottom: clamp(1.5rem, 5vw, 2rem);
	}
}

@media (max-width: 950px) {
	/*
	 * Fixed bar + high z-index: sticky z-index:20 loses to transformed / stacked page content
	 * after in-page #hash jumps (e.g. Services), so the menu control looked "gone" or covered.
	 */
	/*
	 * backdrop-filter creates a containing block: fixed children (the overlay nav) would only
	 * fill the header box — disable on mobile so .main-nav.is-open can cover the full viewport.
	 */
	.site-header {
		position: fixed !important;
		left: 0;
		right: 0;
		top: 0;
		width: 100%;
		z-index: 99990;
		box-sizing: border-box;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	body.site-nav-open .site-header {
		position: fixed !important;
		z-index: 99998;
	}

	html.admin-bar .site-header,
	body.admin-bar .site-header {
		top: var(--wp-admin--admin-bar--height, 32px);
	}

	body {
		padding-top: var(--vck-mobile-header-h, 5.75rem);
	}

	/* Full-width bar; controls at edges, logo centered on viewport (not the grid mid-column). */
	.site-header .container {
		width: 100%;
		max-width: none;
		padding-left: max(0.65rem, env(safe-area-inset-left, 0px));
		padding-right: max(0.65rem, env(safe-area-inset-right, 0px));
	}

	.hero-inner,
	.section-grid,
	.services-offer-grid,
	.posts-grid,
	.contact-section-inner {
		grid-template-columns: 1fr;
	}

	.header-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		width: 100%;
		min-height: 3.25rem;
	}

	.menu-toggle {
		display: inline-flex;
		flex-shrink: 0;
		position: relative;
		z-index: 1;
		width: 2.35rem;
		height: 2.35rem;
		border-radius: 0.4rem;
	}

	.menu-toggle__box {
		width: 1.05rem;
		height: 0.85rem;
		gap: 4px;
	}

	.menu-toggle__bar {
		height: 1.5px;
	}

	.menu-toggle[aria-expanded='true'] .menu-toggle__bar:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.menu-toggle[aria-expanded='true'] .menu-toggle__bar:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.site-header .btn-small {
		padding: 0.52rem 0.95rem;
		font-size: 0.88rem;
		border-radius: 0.45rem;
	}

	.site-branding {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 0;
		min-width: 0;
		max-width: min(220px, calc(100% - 9.5rem));
		pointer-events: auto;
	}

	.header-inner > .btn {
		flex-shrink: 0;
		position: relative;
		z-index: 1;
	}

	body.site-nav-open:has(.main-nav.is-open) .header-inner > .site-branding,
	body.site-nav-open:has(.main-nav.is-open) .header-inner > .btn {
		display: none;
	}

	body.site-nav-open:has(.main-nav.is-open) .menu-toggle {
		position: fixed;
		top: max(0.75rem, env(safe-area-inset-top, 0px));
		left: max(0.75rem, env(safe-area-inset-left, 0px));
		z-index: 100002;
	}

	body.admin-bar.site-nav-open:has(.main-nav.is-open) .menu-toggle,
	html.admin-bar body.site-nav-open:has(.main-nav.is-open) .menu-toggle {
		top: calc(max(0.75rem, env(safe-area-inset-top, 0px)) + 46px);
	}

	@media screen and (min-width: 783px) {
		body.admin-bar.site-nav-open:has(.main-nav.is-open) .menu-toggle,
		html.admin-bar body.site-nav-open:has(.main-nav.is-open) .menu-toggle {
			top: calc(max(0.75rem, env(safe-area-inset-top, 0px)) + 32px);
		}
	}

	.main-nav {
		display: none;
		flex: initial;
	}

	.main-nav.is-open {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		/* Viewport-relative: must not use inset:0 alone when any ancestor used to form a containing block */
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100vw;
		width: 100dvw;
		max-width: none;
		height: 100vh;
		height: 100dvh;
		min-height: 100vh;
		min-height: 100dvh;
		margin: 0;
		padding: clamp(1.25rem, 6vw, 2.5rem);
		padding-top: max(env(safe-area-inset-top, 0px), clamp(1.25rem, 6vw, 2.5rem));
		padding-bottom: max(env(safe-area-inset-bottom, 0px), clamp(1.25rem, 6vw, 2.5rem));
		border: none;
		/* Fully opaque so page content never shows through */
		background-color: #070f1c;
		background-image: linear-gradient(160deg, #060d18 0%, #0a1628 45%, #070f1a 100%);
		box-shadow: none;
		z-index: 100001;
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		isolation: isolate;
	}

	body.site-nav-open:has(.main-nav.is-open) .site-main,
	body.site-nav-open:has(.main-nav.is-open) .site-footer {
		pointer-events: none;
	}

	.main-nav ul {
		flex-direction: column;
		align-items: center;
		gap: clamp(0.5rem, 3vw, 1.15rem);
		width: min(100%, 22rem);
		text-align: center;
	}

	.main-nav a {
		display: block;
		padding: 0.65rem 1rem;
		border-radius: 0.5rem;
		font-size: clamp(1.15rem, 4.2vw, 1.55rem);
		font-weight: 600;
	}

	.main-nav a:hover,
	.main-nav a:focus-visible {
		background: rgba(255, 255, 255, 0.08);
		text-decoration: none;
	}

	.site-branding .custom-logo,
	.site-branding-logo {
		height: 80px;
		max-height: none;
	}

	.hero {
		/* body already reserves space for fixed header; avoid double top gap */
		padding: 1.25rem 0 3rem;
		border-radius: 0.85rem;
	}

	.hero-panel {
		padding: 1.4rem 1.2rem;
	}

	.scrolling-image-break {
		background-attachment: scroll;
		min-height: 34vh;
	}

	.scrolling-image-break-inner {
		padding: 2.2rem 0;
	}

	.offer-card p {
		min-height: 0;
	}

	.contact-copy {
		padding: 0.5rem 0.35rem;
	}

	.contact-section {
		padding: 1.55rem 0 1.7rem;
	}

	.stats-list {
		padding-left: 0;
	}
}

/* --- Legal documents & GDPR layout --- */
.legal-page-wrap {
	max-width: 52rem;
	padding-top: clamp(1.5rem, 4vw, 2.5rem);
	padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.legal-page-header {
	margin-bottom: 1.75rem;
}

.legal-page-title {
	margin: 0;
	font-size: clamp(1.65rem, 3.5vw, 2.1rem);
	line-height: 1.2;
	color: #f6fbff;
}

.legal-doc {
	color: var(--vck-text-soft);
	font-size: 1.02rem;
}

.legal-doc__meta {
	margin: 0 0 2rem;
	font-size: 0.95rem;
	color: rgba(232, 240, 251, 0.82);
}

.legal-doc__section {
	margin-bottom: 2rem;
}

.legal-doc__section h2 {
	margin: 0 0 0.75rem;
	font-size: 1.2rem;
	color: #f6fbff;
}

.legal-doc__section p,
.legal-doc__section li {
	margin: 0 0 0.75rem;
}

.legal-doc__section ul {
	margin: 0 0 0.75rem;
	padding-left: 1.25rem;
}

.legal-doc__section a {
	color: var(--vck-accent);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.legal-doc__section a:hover {
	color: #fff;
}

.page-header-default h1 {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #f6fbff;
}

.entry-content {
	color: var(--vck-text-soft);
	max-width: 52rem;
}

.entry-content a {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

/* Job apply dialog: intro & consent */
.apply-dialog__intro {
	margin: 0 0 1.1rem;
	font-size: 1rem;
	line-height: 1.55;
	color: rgba(232, 240, 251, 0.92);
}

.apply-dialog__consent {
	margin: 1rem 0 1.25rem;
	padding: 0.85rem 1rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(143, 181, 222, 0.35);
	background: rgba(5, 14, 24, 0.35);
}

.apply-dialog__consent-label {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin: 0;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.45;
	color: rgba(232, 240, 251, 0.95);
}

.apply-dialog__consent-label input {
	margin-top: 0.2rem;
	flex-shrink: 0;
	width: 1.05rem;
	height: 1.05rem;
	accent-color: var(--vck-primary);
}

.apply-dialog__consent-text a {
	color: var(--vck-accent);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.apply-dialog__consent-text a:hover {
	color: #fff;
}

/* Footer legal strip */
.site-footer-legal-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem 1.5rem;
	padding-bottom: 1rem;
	margin-bottom: 0.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	font-size: 0.98rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.95);
}

.site-footer-entity {
	margin: 0;
}

.site-footer-entity-label {
	font-weight: 600;
	margin-right: 0.35rem;
	color: rgba(255, 255, 255, 0.88);
}

.site-footer-legal-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.15rem;
}

.site-footer-legal-links a {
	font-weight: 600;
	text-decoration: none;
}

.site-footer-legal-links a:hover {
	text-decoration: underline;
}

.site-footer-legal-contact {
	margin: 0;
}

.site-footer-legal-contact a {
	font-weight: 600;
	text-decoration: none;
}

.site-footer-legal-contact a:hover {
	text-decoration: underline;
}

@media (max-width: 640px) {
	.site-footer-legal-row {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Cookie consent banner — fully opaque so page copy never shows through */
.cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100010;
	padding: 0.75rem 0 max(0.85rem, env(safe-area-inset-bottom, 0px));
	background: #070f1c;
	background-image: linear-gradient(180deg, #0c1b30 0%, #070f1a 100%);
	border-top: 2px solid rgba(100, 165, 225, 0.55);
	box-shadow:
		0 -4px 0 rgba(0, 0, 0, 0.35),
		0 -20px 48px rgba(2, 8, 20, 0.65);
	isolation: isolate;
}

.cookie-consent__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	width: min(1180px, 92%);
	margin: 0 auto;
	padding: 0.65rem 1rem;
	background: #122a45;
	border: 1px solid rgba(150, 190, 235, 0.4);
	border-radius: 0.65rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.cookie-consent__text-wrap {
	flex: 1 1 16rem;
	max-width: 46rem;
	min-width: 0;
}

.cookie-consent__title {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
}

.cookie-consent__text {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: #e4eef9;
}

.cookie-consent__text a {
	font-weight: 600;
	margin-left: 0.25rem;
	color: #9fd4ff;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.cookie-consent__text a:hover {
	color: #fff;
}

.cookie-consent .btn {
	color: #fff;
}

.cookie-consent .btn-ghost {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.42);
}

.cookie-consent .btn-ghost:hover {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
}

.cookie-consent__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	flex-shrink: 0;
}

body.vck-cookie-banner-visible {
	padding-bottom: max(7.25rem, calc(6.5rem + env(safe-area-inset-bottom, 0px)));
}

@media (max-width: 600px) {
	.cookie-consent {
		padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
		padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
	}

	.cookie-consent__inner {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		padding: 0.85rem 0.95rem;
	}

	.cookie-consent__actions {
		justify-content: stretch;
	}

	.cookie-consent__actions .btn {
		flex: 1 1 auto;
		text-align: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.contact-section::before,
	.contact-copy,
	.contact-form-panel,
	.contact-form-grid input,
	.contact-form-grid textarea,
	.btn,
	.btn::after,
	.cta-callout-btn,
	.cta-callout-btn::after {
		transition: none !important;
		transform: none !important;
	}

	.menu-toggle__bar {
		transition: none !important;
	}
}

