:root {
	--navy: #071a3d;
	--navy-2: #102b52;
	--heading: var(--navy);
	--on-dark: #ffffff;
	--blue: #075ecf;
	--blue-dark: #044da9;
	--ink: #111d31;
	--muted: #596579;
	--line: #d8dee8;
	--line-light: #e9edf3;
	--paper: #ffffff;
	--soft: #f6f8fb;
	--danger: #a82d24;
	--success: #087451;
	--container: min(1180px, calc(100% - 48px));
	--font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Elementor bridge: keep the Totaljob page widget genuinely full width. */
.totaljob-elementor-section,
.totaljob-elementor-section > .elementor-container,
.totaljob-elementor-column,
.totaljob-elementor-column > .elementor-widget-wrap,
.elementor-widget-totaljob-page,
.elementor-widget-totaljob-page > .elementor-widget-container {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.elementor-widget-totaljob-page .page-hero--image img,
.elementor-widget-totaljob-page .image-band img {
	border-radius: 20px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

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

a {
	color: var(--blue);
	text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
	font: inherit;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	color: var(--heading);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

h1 {
	font-size: clamp(3rem, 5.4vw, 5rem);
}

h2 {
	font-size: clamp(2rem, 3.5vw, 3.25rem);
}

h3 {
	font-size: 1.12rem;
	letter-spacing: -0.018em;
}

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

.section {
	padding: clamp(76px, 8vw, 116px) 0;
}

.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: fixed;
	z-index: 1000;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	color: var(--on-dark);
	background: var(--navy);
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: none;
}

.site-header {
	position: relative;
	z-index: 100;
	background: rgb(255 255 255 / 97%);
	border-bottom: 1px solid var(--line-light);
}

.site-header__inner {
	display: flex;
	min-height: 88px;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
}

.brand {
	display: inline-flex;
	flex-direction: column;
	color: var(--heading);
	line-height: 1;
	text-decoration: none;
}

.brand__name {
	font-size: clamp(1.5rem, 2.3vw, 1.95rem);
	font-weight: 800;
	letter-spacing: -0.045em;
}

.brand__name span {
	color: var(--blue);
}

.brand__tagline {
	margin-top: 7px;
	font-size: 0.61rem;
	font-weight: 700;
	letter-spacing: 0.19em;
	text-transform: uppercase;
}

.custom-logo {
	width: auto;
	max-height: 58px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 30px;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 31px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-nav__list a {
	position: relative;
	display: block;
	padding: 13px 0;
	color: var(--ink);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.site-nav__list a::after {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	height: 2px;
	background: var(--blue);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
}

.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after,
.site-nav__list .current_page_item > a::after {
	transform: scaleX(1);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 9px;
	background: transparent;
	border: 0;
}

.nav-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px auto;
	background: var(--navy);
}

.button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 0 27px;
	color: var(--on-dark);
	background: var(--navy);
	border: 1px solid var(--navy);
	border-radius: 2px;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
	color: var(--on-dark);
	background: var(--blue-dark);
	border-color: var(--blue-dark);
	transform: translateY(-1px);
}

.button--outline,
.button--ghost {
	color: var(--heading);
	background: transparent;
	border-color: var(--heading);
}

.button--outline:hover,
.button--ghost:hover {
	color: var(--on-dark);
	background: var(--navy);
	border-color: var(--heading);
}

.button--small {
	min-height: 44px;
	padding-inline: 22px;
}

.button--light {
	color: var(--heading);
	background: var(--paper);
	border-color: var(--on-dark);
}

.button--light:hover {
	color: var(--on-dark);
	background: var(--blue);
	border-color: var(--blue);
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.choice input:focus-visible + span,
.nav-toggle:focus-visible,
a:focus-visible {
	outline: 3px solid rgb(7 94 207 / 30%);
	outline-offset: 3px;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.hero {
	overflow: hidden;
	border-bottom: 1px solid var(--line-light);
}

.hero__grid {
	display: grid;
	min-height: 610px;
	grid-template-columns: 47% 53%;
}

.hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 76px 72px 76px 0;
}

.hero__content h1 {
	max-width: 560px;
	margin-bottom: 22px;
	font-size: clamp(3.4rem, 4.8vw, 4.75rem);
}

.hero__content p {
	max-width: 530px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: clamp(1.04rem, 1.4vw, 1.2rem);
	line-height: 1.65;
}

.eyebrow {
	margin-bottom: 14px !important;
	color: var(--blue) !important;
	font-size: 0.76rem !important;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero__content .button {
	align-self: flex-start;
	margin-top: 30px;
}

.hero__media {
	position: relative;
	width: calc(100% + max(24px, (100vw - 1180px) / 2));
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 64% center;
}

.section-heading {
	max-width: 710px;
	margin-bottom: 48px;
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.section-heading h2 {
	margin-bottom: 16px;
}

.section-heading p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 1.04rem;
}

.credibility {
	padding-bottom: 96px;
}

.proof-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line);
}

.proof-list article {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 18px;
	padding: 34px 34px 0 0;
}

.proof-list article + article {
	padding-left: 34px;
	border-left: 1px solid var(--line);
}

.proof-list h3 {
	margin-bottom: 7px;
}

.proof-list h2 {
	margin-bottom: 9px;
	font-size: 1.28rem;
}

.proof-list p {
	margin: 0;
	color: var(--muted);
	font-size: 0.91rem;
}

.line-icon {
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	color: var(--blue);
}

.line-icon svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.65;
}

.audiences {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-block: 1px solid var(--line);
}

.audience {
	display: grid;
	min-height: 390px;
	grid-template-columns: 42% 58%;
}

.audience + .audience {
	border-left: 1px solid var(--line);
}

.audience__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(34px, 5vw, 70px);
}

.audience__content h2 {
	margin-bottom: 17px;
	font-size: clamp(1.9rem, 2.8vw, 2.7rem);
}

.audience__content p {
	margin-bottom: 23px;
	color: var(--muted);
	font-size: 0.96rem;
}

.audience--company .audience__content {
	color: var(--on-dark);
	background: var(--navy);
}

.audience--company h2,
.audience--company .text-link {
	color: var(--on-dark);
}

.audience--company p {
	color: rgb(255 255 255 / 75%);
}

.audience__media {
	overflow: hidden;
}

.audience__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 25% center;
	transform: scale(1.17);
}

.audience--candidate {
	grid-template-columns: 1fr;
	background:
		linear-gradient(90deg, white 0%, rgb(255 255 255 / 94%) 55%, rgb(255 255 255 / 12%) 100%),
		url("../images/kandidat-pexels-andrea-piacquadio-3760067-scaled.jpg") 72% center / cover no-repeat;
}

.audience--candidate .audience__content {
	max-width: 480px;
}

.text-link {
	color: var(--heading);
	font-size: 0.89rem;
	font-weight: 700;
	text-decoration: none;
}

.text-link span {
	display: inline-block;
	margin-left: 7px;
	transition: transform 160ms ease;
}

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

.process {
	background: var(--soft);
}

.process__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line);
}

.process__steps article {
	padding: 32px 38px 0 0;
}

.process__steps article + article {
	padding-left: 38px;
	border-left: 1px solid var(--line);
}

.process__steps article > span,
.recruitment-process article > span,
.content-process article > span,
.numbered-values article > span {
	color: var(--blue);
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.05em;
}

.process__steps h3 {
	margin: 18px 0 10px;
}

.process__steps p,
.recruitment-process p {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.closing-cta {
	background: var(--soft);
	border-top: 1px solid var(--line-light);
}

.closing-cta--dark {
	color: var(--on-dark);
	background: var(--navy);
	border: 0;
}

.closing-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.closing-cta h2 {
	margin-bottom: 12px;
}

.closing-cta--dark h2 {
	color: var(--on-dark);
}

.closing-cta p {
	max-width: 720px;
	margin-bottom: 0;
	color: var(--muted);
}

.closing-cta--dark p {
	color: rgb(255 255 255 / 72%);
}

.newsletter-form {
	display: grid;
	min-width: min(390px, 100%);
	grid-template-columns: 1fr auto;
	gap: 8px;
}

.newsletter-signup {
	min-width: min(390px, 100%);
}

.newsletter-signup .form-notice {
	margin-bottom: 12px;
}

.newsletter-form input {
	min-width: 0;
	min-height: 50px;
	padding: 0 16px;
	background: var(--paper);
	border: 1px solid white;
	border-radius: 8px;
}

.newsletter-form .button {
	min-width: 58px;
	padding-inline: 18px;
}

.company-intro {
	padding-top: 72px;
}

.company-intro__grid {
	display: grid;
	grid-template-columns: 0.76fr 1.24fr;
	align-items: start;
	gap: clamp(52px, 7vw, 94px);
}

.company-intro__content {
	padding-top: 20px;
}

.company-intro h1 {
	margin-bottom: 22px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(3.35rem, 5vw, 4.9rem);
	font-weight: 700;
	letter-spacing: -0.045em;
}

.lead {
	color: var(--muted);
	font-size: 1.14rem;
}

.company-benefits {
	margin-top: 38px;
	border-top: 1px solid var(--line);
}

.company-benefits article {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 18px;
	padding: 24px 0;
	border-bottom: 1px solid var(--line);
}

.company-benefits h2 {
	margin: 1px 0 5px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.3rem;
	letter-spacing: -0.02em;
}

.company-benefits p {
	margin: 0;
	color: var(--muted);
	font-size: 0.9rem;
}

.simple-company-form {
	display: grid;
	gap: 18px;
	padding: clamp(26px, 3vw, 38px);
	background: var(--paper);
	border: 1px solid var(--line);
}

.simple-company-form > label:not(.consent),
.simple-company-form .field-grid label,
.form-step label,
.form-step legend,
.job-filters label {
	color: var(--ink);
	font-size: 0.84rem;
	font-weight: 700;
}

.simple-company-form input:not([type="checkbox"]),
.simple-company-form select,
.simple-company-form textarea,
.form-step input:not([type="radio"], [type="checkbox"], [type="file"]),
.form-step select,
.form-step textarea,
.job-filters input[type="search"] {
	display: block;
	width: 100%;
	min-height: 50px;
	padding: 12px 13px;
	margin-top: 7px;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid #bfc7d3;
	border-radius: 2px;
	font-size: 0.9rem;
	font-weight: 500;
	transition: border-color 150ms ease, box-shadow 150ms ease;
}

.simple-company-form textarea,
.form-step textarea {
	resize: vertical;
}

input::placeholder,
textarea::placeholder {
	color: #7b8492;
}

.field-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 18px;
	margin: 0;
}

.consent {
	display: grid !important;
	grid-template-columns: 19px 1fr;
	align-items: start;
	gap: 11px;
	padding: 0;
	color: var(--muted) !important;
	font-size: 0.76rem !important;
	font-weight: 500 !important;
	line-height: 1.55;
}

.consent input {
	width: 17px;
	height: 17px;
	margin: 2px 0 0;
	accent-color: var(--blue);
}

.simple-company-form .button {
	min-width: 190px;
	justify-self: end;
}

.recruitment-process {
	padding-top: 82px;
	border-top: 1px solid var(--line);
}

.recruitment-process__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	border-top: 1px solid var(--line);
}

.recruitment-process article {
	padding: 28px 22px 0 0;
}

.recruitment-process article + article {
	padding-left: 22px;
	border-left: 1px solid var(--line);
}

.recruitment-process h3 {
	margin: 16px 0 8px;
	font-size: 0.99rem;
}

.page-hero {
	padding: 88px 0 66px;
	background: var(--soft);
	border-bottom: 1px solid var(--line);
}

.page-hero--intro .container {
	max-width: 900px;
	margin-left: max(24px, calc((100vw - 1180px) / 2));
}

.page-hero--image .page-hero__grid {
	display: grid;
	max-width: var(--container);
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
	align-items: center;
	gap: clamp(44px, 7vw, 90px);
	margin-inline: auto;
}

.page-hero--image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: var(--shadow);
}

.image-band {
	width: var(--container);
	margin: 0 auto;
}

.image-band img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	border-radius: 20px;
}

.page-hero h1 {
	margin-bottom: 22px;
}

.page-hero p {
	max-width: 820px;
	margin-bottom: 25px;
	color: var(--muted);
	font-size: 1.08rem;
}

.section-label {
	margin-bottom: 14px;
	color: var(--blue);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.content-process__grid {
	display: grid;
}

.content-process article {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 24px;
	padding: 36px 0;
	border-top: 1px solid var(--line);
}

.content-process h2 {
	margin-bottom: 12px;
	font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.content-process p {
	max-width: 850px;
	color: var(--muted);
}

.free-callout {
	display: inline-block;
	color: var(--blue) !important;
	font-weight: 800;
}

.form-page {
	padding: 78px 0 110px;
}

.form-page__intro {
	max-width: 700px;
	margin-bottom: 36px;
}

.form-page__intro p {
	color: var(--muted);
}

.form-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	align-items: start;
	gap: 26px;
}

.form-main {
	min-width: 0;
}

.form-main--success .form-notice {
	margin: 0;
	padding: 26px 28px;
	border: 1px solid #b9e5d5;
	border-left: 4px solid var(--success);
	border-radius: 10px;
	box-shadow: 0 14px 34px rgba(8, 33, 70, 0.08);
	font-size: 1rem;
	line-height: 1.55;
}

.multi-step-form,
.form-aside {
	background: var(--paper);
	border: 1px solid var(--line);
}

.multi-step-form {
	padding: 32px;
}

.stepper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 0 0 26px;
	margin: 0 0 30px;
	border-bottom: 1px solid var(--line-light);
	list-style: none;
}

.stepper li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 600;
}

.stepper li span {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	border-radius: 50%;
}

.stepper li.is-active {
	color: var(--blue);
}

.stepper li.is-active span,
.stepper li.is-complete span {
	color: var(--on-dark);
	background: var(--blue);
	border-color: var(--blue);
}

.js-enabled .form-step:not(.is-active) {
	display: none;
}

.form-step > label,
.form-step > fieldset,
.form-step > .field-grid {
	display: block;
	margin-bottom: 22px;
}

.form-step > .field-grid {
	display: grid;
}

fieldset {
	padding: 0;
	border: 0;
}

legend {
	margin-bottom: 10px;
}

.choice-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 9px;
}

.choice {
	position: relative;
	cursor: pointer;
}

.choice input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.choice span {
	display: flex;
	min-height: 46px;
	align-items: center;
	padding: 9px 12px;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 2px;
	font-size: 0.8rem;
	font-weight: 600;
}

.choice input:checked + span {
	color: var(--blue);
	background: #f3f7fd;
	border-color: var(--blue);
}

.file-field {
	display: block;
	padding: 17px;
	background: var(--soft);
	border: 1px dashed var(--line);
}

.file-field input {
	display: block;
	margin: 9px 0 3px;
}

.file-field small {
	color: var(--muted);
	font-weight: 500;
}

.form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
	padding-top: 6px;
}

.form-aside {
	position: sticky;
	top: 24px;
	padding: 28px;
}

.form-aside h2 {
	margin: 15px 0 22px;
	font-size: 1.4rem;
}

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

.check-list li {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 10px;
	color: var(--ink);
	font-size: 0.84rem;
	font-weight: 600;
}

.check-list svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: var(--blue);
	stroke-width: 2;
}

.honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}

.form-notice {
	padding: 14px 18px;
	margin: 0 0 22px;
	border-left: 3px solid;
	font-weight: 600;
}

.form-notice--success {
	color: #05583c;
	background: #eaf8f2;
	border-color: var(--success);
}

.form-notice--error,
.field-error {
	color: var(--danger);
}

.form-notice--error {
	background: #fff1f0;
	border-color: var(--danger);
}

.field-error {
	display: block;
	margin-top: 5px;
	font-size: 0.75rem;
}

.info-page__grid {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	gap: clamp(44px, 8vw, 96px);
}

.info-panel {
	padding: 30px;
	background: var(--soft);
	border-top: 3px solid var(--blue);
}

.info-page__grid p,
.legal-copy p,
.numbered-values p,
.benefits-detail p {
	color: var(--muted);
}

.contact-details {
	display: grid;
	gap: 9px;
}

.contact-details a {
	width: fit-content;
	color: var(--heading);
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: none;
}

.stats-band,
.stats {
	padding: 38px 0;
	color: var(--on-dark);
	background: var(--navy);
}

.stats-band__grid,
.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.stats-band__grid div,
.stats__grid article {
	display: flex;
	flex-direction: column;
}

.stats-band strong,
.stats strong {
	font-size: clamp(2rem, 4vw, 3rem);
	font-variant-numeric: tabular-nums;
	line-height: 1.1;
}

.stats .stat-value,
.stats__grid article > strong {
	transform-origin: left center;
}

.stats .stat-value.is-counting,
.stats__grid article > strong.is-counting {
	animation: totaljob-counter-pulse 420ms ease-out both;
}

@keyframes totaljob-counter-pulse {
	from {
		opacity: 0.72;
		transform: translateY(4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.stats .stat-value,
	.stats__grid article > strong {
		animation: none;
	}
}

/* Professional motion system: calm reveals, tactile controls and media depth. */
.motion-ready .motion-reveal {
	opacity: 0;
	transform: translate3d(0, 22px, 0);
	transition:
		opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--motion-delay, 0ms);
	will-change: opacity, transform;
}

.motion-ready .motion-reveal[data-motion="left"] {
	transform: translate3d(-26px, 0, 0);
}

.motion-ready .motion-reveal[data-motion="right"] {
	transform: translate3d(26px, 0, 0);
}

.motion-ready .motion-reveal[data-motion="down"] {
	transform: translate3d(0, -14px, 0);
}

.motion-ready .motion-reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.motion-ready .motion-media {
	overflow: hidden;
}

.motion-ready .motion-media img {
	transform: scale(1.035);
	transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--motion-delay, 0ms);
}

.motion-ready .motion-media.is-visible img {
	transform: scale(1);
}

.motion-ready .motion-media.is-visible:hover img {
	transform: scale(1.015);
}

.motion-ready .motion-card.is-visible {
	transition:
		opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 260ms ease,
		box-shadow 260ms ease,
		border-color 260ms ease;
}

.motion-ready .motion-card.is-visible:hover {
	transform: translate3d(0, -5px, 0);
	box-shadow: 0 22px 52px rgb(7 26 61 / 11%);
}

.button:not(.wp-block-button),
.wp-block-button.button .wp-block-button__link {
	position: relative;
	overflow: hidden;
	box-shadow: 0 9px 22px rgb(7 94 207 / 16%);
	transition:
		background 180ms ease,
		border-color 180ms ease,
		box-shadow 220ms ease,
		transform 220ms ease;
}

.button:not(.wp-block-button):hover,
.wp-block-button.button .wp-block-button__link:hover {
	box-shadow: 0 13px 28px rgb(7 94 207 / 24%);
	transform: translateY(-2px);
}

.button:not(.wp-block-button):active,
.wp-block-button.button .wp-block-button__link:active {
	box-shadow: 0 5px 14px rgb(7 94 207 / 17%);
	transform: translateY(0);
}

.text-link span {
	display: inline-block;
	transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.text-link:hover span {
	transform: translateX(6px);
}

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

	.motion-ready .motion-reveal,
	.motion-ready .motion-media img,
	.button:not(.wp-block-button),
	.wp-block-button.button .wp-block-button__link,
	.text-link span {
		opacity: 1;
		animation: none !important;
		transform: none !important;
		transition: none !important;
	}
}

.stats-band span,
.stats span {
	color: rgb(255 255 255 / 70%);
	font-size: 0.78rem;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.testimonial-grid article {
	padding: 28px;
	background: var(--paper);
	border: 1px solid var(--line-light);
	border-radius: var(--radius);
	box-shadow: 0 14px 40px rgb(7 26 61 / 7%);
}

.testimonial-grid h3 {
	margin-bottom: 12px;
}

.testimonial-grid p {
	color: var(--muted);
}

.testimonial-grid strong,
.testimonial-grid span {
	display: block;
}

.testimonial-grid span {
	color: var(--muted);
	font-size: 0.82rem;
}

.numbered-values__grid,
.benefits-detail__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line);
}

.numbered-values article,
.benefits-detail article {
	padding: 28px 32px 0 0;
}

.numbered-values article + article,
.benefits-detail article + article {
	padding-left: 32px;
	border-left: 1px solid var(--line);
}

.numbered-values h2,
.benefits-detail h2 {
	margin: 14px 0 12px;
	font-size: 1.45rem;
}

.legal-copy {
	max-width: 850px;
}

.legal-copy h2 {
	margin: 2.1em 0 0.65em;
	font-size: 1.85rem;
}

.job-filters {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	align-items: end;
	gap: 15px;
	padding: 22px;
	margin-bottom: 36px;
	background: var(--soft);
	border: 1px solid var(--line-light);
}

.jobs-list {
	display: grid;
	gap: 12px;
}

.job-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 24px 26px;
	color: inherit;
	background: var(--paper);
	border: 1px solid var(--line);
	text-decoration: none;
	transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.job-card:hover {
	border-color: var(--blue);
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(8, 29, 63, 0.08);
}

.job-card h2 {
	margin: 7px 0 6px;
	font-size: 1.25rem;
}

.job-card p {
	margin: 0;
	color: var(--muted);
}

.job-card__content {
	min-width: 0;
}

.job-card__meta,
.job-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.job-card__meta span,
.job-hero__meta span {
	padding: 5px 9px;
	color: var(--blue);
	background: #eaf3ff;
	font-size: 0.75rem;
	font-weight: 700;
}

.job-card__arrow {
	display: grid;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	place-items: center;
	color: var(--on-dark);
	background: var(--blue);
}

.job-hero {
	padding: 74px 0 80px;
	color: var(--on-dark);
	background: var(--navy);
}

.job-hero__inner {
	max-width: 940px;
}

.job-back-link {
	display: inline-block;
	margin-bottom: 42px;
	color: #b9d8ff;
	text-decoration: none;
}

.job-hero__meta span {
	color: #ddebff;
	background: rgba(255, 255, 255, 0.1);
}

.job-hero h1 {
	max-width: 850px;
	margin: 20px 0 18px;
	color: var(--on-dark);
	font-size: clamp(2.5rem, 5vw, 4.6rem);
	line-height: 1.04;
}

.job-hero p {
	max-width: 760px;
	margin: 0;
	color: #cbd8eb;
	font-size: 1.14rem;
	line-height: 1.7;
}

.job-detail__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 370px;
	gap: 72px;
	align-items: start;
}

.job-detail__content {
	max-width: 760px;
}

.job-detail__content section + section {
	padding-top: 34px;
	margin-top: 34px;
	border-top: 1px solid var(--line);
}

.job-detail__content h2 {
	margin: 0 0 18px;
	font-size: 1.7rem;
}

.job-detail__content p {
	color: var(--muted);
	line-height: 1.75;
}

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

.job-check-list li {
	position: relative;
	padding-left: 31px;
	color: var(--muted);
	line-height: 1.55;
}

.job-check-list li::before {
	position: absolute;
	top: 2px;
	left: 0;
	display: grid;
	width: 20px;
	height: 20px;
	color: var(--on-dark);
	background: var(--blue);
	border-radius: 50%;
	content: "✓";
	font-size: 0.72rem;
	font-weight: 800;
	place-items: center;
}

.job-apply-card {
	position: sticky;
	top: 112px;
	padding: 34px;
	color: var(--on-dark);
	background: var(--navy);
}

.job-apply-card h2 {
	margin: 8px 0 10px;
	color: var(--on-dark);
	font-size: 1.8rem;
}

.job-apply-card > p {
	margin: 0 0 25px;
	color: #cbd8eb;
	line-height: 1.6;
}

.job-apply-card dl {
	margin: 0 0 27px;
}

.job-apply-card dl div {
	padding: 13px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.job-apply-card dt {
	margin-bottom: 3px;
	color: #92a7c5;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
}

.job-apply-card dd {
	margin: 0;
}

.job-apply-card dd a {
	color: var(--on-dark);
}

.job-apply-card__button {
	width: 100%;
	justify-content: center;
}

.empty-state {
	padding: 44px 22px;
	background: var(--soft);
	border: 1px solid var(--line-light);
	text-align: center;
}

.site-footer {
	padding: 68px 0 26px;
	background: var(--soft);
	border-top: 1px solid var(--line);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 34px;
}

.brand--footer .brand__tagline {
	color: var(--muted);
}

.site-footer h2 {
	margin-bottom: 15px;
	font-size: 0.84rem;
	letter-spacing: 0;
}

.site-footer__grid > div > a:not(.brand) {
	display: block;
	margin: 8px 0;
	color: var(--muted);
	font-size: 0.82rem;
	text-decoration: none;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	margin-top: 48px;
	color: var(--muted);
	border-top: 1px solid var(--line);
	font-size: 0.75rem;
}

.site-footer__bottom a {
	color: inherit;
}

@media (max-width: 1020px) {
	.site-nav__list {
		gap: 20px;
	}

	.site-nav {
		gap: 18px;
	}

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

	.hero__content {
		padding-right: 40px;
	}

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

	.audience + .audience {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.company-intro__grid {
		grid-template-columns: 1fr 1.35fr;
		gap: 44px;
	}

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

	.recruitment-process article:nth-child(4) {
		padding-left: 0;
		border-left: 0;
	}
}

@media (max-width: 880px) {
	.site-header__inner {
		min-height: 76px;
	}

	.nav-toggle {
		display: block;
	}

	.site-nav {
		position: fixed;
		inset: 76px 0 0;
		display: none;
		padding: 28px 24px;
		background: var(--paper);
	}

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

	.site-nav__list {
		display: block;
	}

	.site-nav__list li {
		border-bottom: 1px solid var(--line-light);
	}

	.site-nav__list a {
		padding: 17px 3px;
		font-size: 1.05rem;
	}

	.site-nav__cta {
		width: 100%;
		margin-top: 22px;
	}

	.hero__grid {
		width: 100%;
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.hero__content {
		width: var(--container);
		margin-inline: auto;
		padding: 68px 0 50px;
	}

	.hero__media {
		width: 100%;
		height: 54vw;
		min-height: 360px;
	}

	.proof-list {
		grid-template-columns: 1fr;
		border-top: 0;
	}

	.proof-list article,
	.proof-list article + article {
		padding: 25px 0;
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.company-intro__grid,
	.form-layout,
	.info-page__grid,
	.job-detail__grid,
	.page-hero--image .page-hero__grid {
		grid-template-columns: 1fr;
	}

	.form-aside,
	.job-apply-card {
		position: static;
	}

	.job-detail__grid {
		gap: 48px;
	}
}

@media (max-width: 680px) {
	.job-filters {
		grid-template-columns: 1fr;
	}

	.job-card {
		padding: 21px 19px;
	}

	.job-card__arrow {
		flex-basis: 36px;
		width: 36px;
		height: 36px;
	}

	.job-hero {
		padding: 48px 0 55px;
	}

	.job-back-link {
		margin-bottom: 30px;
	}

	.job-apply-card {
		padding: 27px 23px;
	}
}

/* Native Gutenberg page-content compatibility. */
.wp-block-group,
.wp-block-image,
.wp-block-buttons,
.wp-block-shortcode {
	margin-block: 0;
}

/* WordPress versions that use the classic group-block wrapper must expose
   its children to Totaljob's existing grid and flex layouts. */
.wp-block-group > .wp-block-group__inner-container {
	display: contents;
}

.wp-block-image img {
	display: block;
	width: 100%;
}

.wp-block-button.button {
	min-height: 0;
	padding: 0;
	background: transparent;
	border: 0;
}

.wp-block-button.button .wp-block-button__link {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 0 27px;
	color: var(--on-dark);
	background: var(--blue);
	border: 1px solid var(--blue);
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.wp-block-button.button .wp-block-button__link:hover {
	color: var(--on-dark);
	background: #1685e8;
	border-color: #1685e8;
	transform: translateY(-1px);
}

.text-link-wrap {
	margin: 0;
}

.proof-list .wp-block-shortcode,
.benefits-detail__grid .wp-block-shortcode {
	align-self: start;
}

.testimonial-name {
	margin: 20px 0 0 !important;
	color: var(--heading) !important;
	font-weight: 700;
}

.testimonial-role {
	margin: 2px 0 0 !important;
	font-size: 0.82rem;
}

.content-process article > .process-number,
.recruitment-process .process-number,
.numbered-values .value-number {
	margin: 0;
	color: var(--blue);
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.05em;
}

.content-process .step-label {
	margin-bottom: 8px;
	color: var(--blue);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.stats .stat-value {
	margin: 0;
	color: var(--on-dark);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
}

.stats .stat-label {
	margin: 5px 0 0;
	color: rgb(255 255 255 / 70%);
	font-size: 0.78rem;
}

.closing-cta .wp-block-buttons {
	flex-shrink: 0;
}

.legal-copy p {
	white-space: pre-line;
}

.check-list--editable li {
	position: relative;
	display: block;
	grid-template-columns: none;
	padding-left: 30px;
	line-height: 1.55;
}

.check-list--editable li::before {
	position: absolute;
	top: -1px;
	left: 0;
	color: var(--blue);
	content: "✓";
	font-size: 1.05rem;
	font-weight: 800;
}

@media (max-width: 680px) {
	:root {
		--container: min(100% - 30px, 1180px);
	}

	.section {
		padding-block: 64px;
	}

	h1 {
		font-size: clamp(2.55rem, 12vw, 3.5rem);
	}

	h2 {
		font-size: clamp(1.85rem, 9vw, 2.6rem);
	}

	.hero__content {
		padding-top: 54px;
	}

	.hero__content h1 {
		font-size: clamp(2.75rem, 12.5vw, 3.6rem);
	}

	.hero__media {
		height: 78vw;
		min-height: 300px;
	}

	.button-row,
	.button-row .button,
	.form-actions,
	.form-actions .button,
	.closing-cta .button {
		width: 100%;
	}

	.audience {
		min-height: 360px;
		grid-template-columns: 1fr;
	}

	.audience__media {
		height: 260px;
	}

	.audience--candidate {
		background-position: 62% center;
	}

	.process__steps,
	.field-grid,
	.choice-grid,
	.stats-band__grid,
	.stats__grid,
	.testimonial-grid,
	.numbered-values__grid,
	.benefits-detail__grid,
	.job-filters {
		grid-template-columns: 1fr;
	}

	.process__steps {
		border-top: 0;
	}

	.process__steps article,
	.process__steps article + article {
		padding: 25px 0;
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.closing-cta__inner,
	.site-footer__bottom,
	.job-card {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
	}

	.newsletter-form {
		width: 100%;
	}

	.company-intro {
		padding-top: 50px;
	}

	.company-intro h1 {
		font-size: clamp(2.8rem, 13vw, 3.8rem);
	}

	.simple-company-form,
	.multi-step-form,
	.form-aside {
		padding: 21px 17px;
	}

	.simple-company-form .button {
		width: 100%;
		justify-self: stretch;
	}

	.recruitment-process__grid {
		grid-template-columns: 1fr;
		border-top: 0;
	}

	.recruitment-process article,
	.recruitment-process article + article,
	.recruitment-process article:nth-child(4) {
		padding: 24px 0;
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.content-process article {
		grid-template-columns: 40px 1fr;
		gap: 13px;
	}

	.stepper li {
		display: block;
		font-size: 0.7rem;
		text-align: center;
	}

	.stepper li span {
		display: flex;
		margin: 0 auto 7px;
	}

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

	.site-footer__grid > div:first-child {
		grid-column: 1 / -1;
		margin-bottom: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Modern Totaljob brand direction — original logo, deeper contrast and digital surfaces. */
:root {
	--radius: 16px;
	--shadow: 0 24px 70px rgb(7 26 61 / 12%);
}

body {
	background: var(--soft);
}

.site-header {
	background: var(--navy);
	border-bottom-color: rgb(255 255 255 / 10%);
}

.brand__logo {
	width: clamp(220px, 22vw, 270px);
	height: auto;
}

.site-nav__list a {
	color: rgb(255 255 255 / 82%);
}

.site-nav__list a::after {
	background: #35a9f3;
}

.nav-toggle > span:not(.screen-reader-text) {
	background: var(--paper);
}

.button {
	background: var(--blue);
	border-color: var(--blue);
	border-radius: 8px;
}

.button:hover {
	background: #1685e8;
	border-color: #1685e8;
}

.hero {
	background: var(--navy);
	border-bottom-color: rgb(255 255 255 / 10%);
}

.hero__grid {
	grid-template-columns: 43% 57%;
}

.hero__content {
	padding: 82px 60px 82px 0;
}

.hero__content h1 {
	color: var(--on-dark);
	font-size: clamp(3.45rem, 5.1vw, 4.95rem);
}

.hero__content p {
	color: rgb(255 255 255 / 76%);
}

.hero__media {
	width: calc(100% + max(24px, (100vw - 1180px) / 2) - 22px);
	margin: 32px 0;
	border: 1px solid rgb(53 169 243 / 55%);
	border-radius: 20px;
}

.hero__media img {
	border-radius: 20px;
}

.hero .button--outline {
	color: var(--on-dark);
	background: transparent;
	border-color: rgb(255 255 255 / 65%);
}

.hero .button--outline:hover {
	color: var(--heading);
	background: var(--paper);
	border-color: var(--on-dark);
}

.credibility {
	position: relative;
	background: var(--paper);
	border-radius: 28px 28px 0 0;
}

.proof-list {
	gap: 16px;
	border-top: 0;
}

.proof-list article,
.proof-list article + article {
	padding: 24px;
	background: var(--soft);
	border: 1px solid var(--line-light);
	border-radius: var(--radius);
}

.line-icon {
	background: #eaf5ff;
	border-radius: 12px;
}

.audiences {
	width: var(--container);
	gap: 24px;
	margin: 0 auto clamp(76px, 8vw, 116px);
	background: var(--soft);
	border: 0;
}

.audience {
	min-height: 530px;
	overflow: hidden;
	grid-template-columns: 1fr;
	grid-template-rows: 48% 52%;
	background: var(--navy);
	border-radius: 20px;
	box-shadow: var(--shadow);
}

.audience + .audience {
	border-left: 0;
}

.audience__content,
.audience--company .audience__content {
	grid-row: 2;
	padding: clamp(28px, 4vw, 44px);
	color: var(--on-dark);
	background: var(--navy);
}

.audience__content h2 {
	color: var(--on-dark);
}

.audience__content p,
.audience--company p {
	color: rgb(255 255 255 / 72%);
}

.audience__media {
	grid-row: 1;
}

.audience__media img {
	object-position: 35% center;
	transform: none;
}

.audience--candidate {
	grid-template-columns: 1fr;
	background: var(--navy);
}

.audience--candidate .audience__content {
	align-self: end;
}

.audience--candidate .audience__media img {
	object-position: center 58%;
}

.text-link,
.audience--company .text-link {
	color: #42b3ff;
}

.process {
	background: var(--paper);
}

.company-intro {
	background: var(--soft);
}

.company-intro h1,
.company-benefits h2 {
	font-family: var(--font);
}

.company-intro h1 {
	font-weight: 800;
}

.simple-company-form {
	border-color: var(--line-light);
	border-radius: 20px;
	box-shadow: var(--shadow);
}

.simple-company-form input:not([type="checkbox"]),
.simple-company-form select,
.simple-company-form textarea,
.form-step input:not([type="radio"], [type="checkbox"], [type="file"]),
.form-step select,
.form-step textarea,
.choice span {
	border-radius: 8px;
}

.site-footer {
	color: rgb(255 255 255 / 72%);
	background: var(--navy);
	border-top-color: rgb(255 255 255 / 10%);
}

.brand--footer .brand__logo {
	width: min(270px, 100%);
}

.site-footer h2 {
	color: var(--on-dark);
}

.site-footer__grid > div > a:not(.brand) {
	color: rgb(255 255 255 / 68%);
}

.site-footer__bottom {
	color: rgb(255 255 255 / 58%);
	border-top-color: rgb(255 255 255 / 12%);
}

@media (max-width: 880px) {
	.site-nav {
		background: var(--navy);
	}

	.site-nav__list li {
		border-bottom-color: rgb(255 255 255 / 12%);
	}

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

	.hero__media {
		width: 100%;
		margin: 0;
		border: 0;
		border-radius: 0;
	}

	.hero__media img {
		border-radius: 0;
	}
}

@media (max-width: 680px) {
	.brand__logo {
		width: 205px;
	}

	.audience {
		min-height: 500px;
	}
}
