:root {
	--navy-950: #041b31;
	--navy-900: #082a4c;
	--navy-800: #0a3b67;
	--blue-700: #0a63ad;
	--blue-600: #0876cf;
	--blue-500: #1593e8;
	--blue-100: #dff1fd;
	--blue-50: #f0f8fd;
	--gold-600: #d69d24;
	--gold-500: #f2b84b;
	--gold-400: #ffc965;
	--green-700: #087a54;
	--green-600: #0c9d68;
	--green-100: #dff8ed;
	--red-600: #d64343;
	--red-100: #ffebeb;
	--ink: #183149;
	--muted: #64788b;
	--border: #dce6ee;
	--surface: #ffffff;
	--surface-soft: #f4f8fb;
	--shadow-sm: 0 8px 24px rgba(6, 42, 76, 0.07);
	--shadow-md: 0 18px 50px rgba(6, 42, 76, 0.12);
	--shadow-lg: 0 30px 80px rgba(3, 27, 50, 0.22);
	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 24px;
	--container: 1240px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
}

body {
	background: var(--surface);
	color: var(--ink);
	font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

body.drawer-open {
	overflow: hidden;
}

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

img {
	height: auto;
}

a {
	color: var(--blue-700);
	text-decoration: none;
	transition: color 180ms ease, opacity 180ms ease;
}

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

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

button {
	cursor: pointer;
}

h1,
h2,
h3,
h4 {
	color: var(--navy-900);
	font-weight: 750;
	letter-spacing: -0.035em;
	line-height: 1.15;
	margin: 0 0 0.65em;
}

h1 {
	font-size: clamp(2.4rem, 5vw, 4.7rem);
}

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

h3 {
	font-size: 1.25rem;
}

p {
	margin: 0 0 1rem;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

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

.narrow-content {
	max-width: 840px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.skip-link:focus {
	background: #fff;
	clip: auto !important;
	clip-path: none;
	color: var(--navy-900);
	display: block;
	font-weight: 700;
	height: auto;
	left: 12px;
	padding: 12px 18px;
	top: 12px;
	width: auto;
	z-index: 100000;
}

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

.ijp-icon {
	flex: 0 0 auto;
}

.button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
	display: inline-flex;
	font-weight: 750;
	gap: 9px;
	justify-content: center;
	line-height: 1;
	min-height: 50px;
	padding: 0 24px;
	position: relative;
	text-align: center;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button--primary {
	background: var(--blue-700);
	box-shadow: 0 8px 18px rgba(10, 99, 173, 0.2);
	color: #fff;
}

.button--primary:hover {
	background: var(--navy-800);
	color: #fff;
}

.button--gold {
	background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
	box-shadow: 0 10px 24px rgba(242, 184, 75, 0.28);
	color: var(--navy-950);
}

.button--gold:hover {
	background: linear-gradient(135deg, #ffd585, var(--gold-400));
	color: var(--navy-950);
}

.button--secondary {
	background: #fff;
	border-color: #b9ccda;
	color: var(--navy-900);
}

.button--secondary:hover {
	border-color: var(--blue-600);
	box-shadow: var(--shadow-sm);
	color: var(--blue-700);
}

.button--ghost {
	background: transparent;
	border-color: var(--border);
	color: var(--ink);
}

.button--glass {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.28);
	backdrop-filter: blur(10px);
	color: #fff;
}

.button--glass:hover {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}

.button--whatsapp {
	background: #0b9f63;
	color: #fff;
}

.button--whatsapp:hover {
	background: #087d4e;
	color: #fff;
}

.button--outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
}

.button--small {
	font-size: 0.88rem;
	min-height: 42px;
	padding-inline: 19px;
}

.button--large {
	min-height: 58px;
	padding-inline: 30px;
}

.button--block {
	width: 100%;
}

.button-link {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--blue-700);
	display: inline-flex;
	font-weight: 750;
	gap: 7px;
	padding: 0;
}

.button-link:hover {
	color: var(--blue-500);
}

.button-link--light {
	color: #fff;
}

.button-link--arrow:hover .ijp-icon {
	transform: translateX(4px);
}

.button-link .ijp-icon {
	transition: transform 180ms ease;
}

.eyebrow {
	align-items: center;
	color: var(--blue-700);
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	margin-bottom: 13px;
	text-transform: uppercase;
}

.eyebrow--light {
	color: var(--gold-400);
}

.section {
	padding-block: 96px;
}

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

.section--navy {
	background: var(--navy-950);
	color: #dce9f4;
}

.section-heading {
	align-items: end;
	display: flex;
	gap: 30px;
	justify-content: space-between;
	margin-bottom: 42px;
}

.section-heading > div:first-child {
	max-width: 720px;
}

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

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

.section-heading--center {
	justify-content: center;
	text-align: center;
}

.section-heading--center > div {
	max-width: 760px;
}

/* Header */
.site-topbar {
	background: var(--navy-950);
	color: #c9d9e7;
	font-size: 0.78rem;
}

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

.site-topbar__contacts,
.site-topbar__extras {
	align-items: center;
	display: flex;
	gap: 21px;
}

.site-topbar a,
.site-topbar__contacts > span {
	align-items: center;
	color: inherit;
	display: inline-flex;
	gap: 7px;
}

.site-topbar a:hover {
	color: #fff;
}

.language-select {
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 0.78rem;
	padding: 3px;
}

.language-select option {
	color: var(--ink);
}

.site-header {
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid rgba(220, 230, 238, 0.7);
	height: 78px;
	position: sticky;
	top: 0;
	transition: box-shadow 180ms ease, height 180ms ease;
	z-index: 1000;
}

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

.site-header.is-scrolled {
	box-shadow: 0 10px 36px rgba(4, 27, 49, 0.1);
	height: 70px;
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 18px;
	height: 100%;
	justify-content: space-between;
	max-width: 1540px;
}

.site-brand,
.custom-logo-link {
	align-items: center;
	color: var(--navy-900);
	display: inline-flex;
	flex: 0 0 auto;
	gap: 11px;
}

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

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

.site-brand__mark {
	align-items: center;
	background: linear-gradient(145deg, var(--blue-700), var(--navy-900));
	border-radius: 13px;
	box-shadow: 0 7px 16px rgba(10, 99, 173, 0.22);
	color: var(--gold-400);
	display: inline-flex;
	height: 43px;
	justify-content: center;
	width: 43px;
}

.site-brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.site-brand__text strong {
	font-size: 1.15rem;
	letter-spacing: -0.04em;
}

.site-brand__text small {
	color: var(--blue-700);
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	margin-top: 5px;
	text-transform: uppercase;
}

.desktop-nav {
	align-items: center;
	display: flex;
	height: 100%;
	margin-left: auto;
	margin-right: 10px;
	min-width: 0;
}

.primary-menu {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 2px;
	list-style: none;
	white-space: nowrap;
}

.primary-menu li {
	flex: 0 0 auto;
	position: relative;
}

.primary-menu > li > a {
	color: var(--ink);
	display: block;
	font-size: 0.86rem;
	font-weight: 650;
	padding: 12px 11px;
}

.primary-menu > li > a:hover,
.primary-menu > .current-menu-item > a {
	color: var(--blue-700);
}

.primary-menu .sub-menu {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md);
	left: 0;
	list-style: none;
	min-width: 220px;
	opacity: 0;
	padding: 9px;
	pointer-events: none;
	position: absolute;
	top: 100%;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.primary-menu .sub-menu a {
	border-radius: 7px;
	color: var(--ink);
	display: block;
	font-size: 0.85rem;
	padding: 9px 11px;
}

.primary-menu .sub-menu a:hover {
	background: var(--blue-50);
	color: var(--blue-700);
}

.country-mega {
	align-items: center;
	display: flex;
	height: 100%;
	position: relative;
}

.country-mega__toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--ink);
	display: flex;
	font-size: 0.86rem;
	font-weight: 650;
	gap: 5px;
	padding: 12px 10px;
	white-space: nowrap;
}

.country-mega__panel {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	opacity: 0;
	padding: 24px;
	pointer-events: none;
	position: absolute;
	right: -160px;
	top: calc(100% - 4px);
	transform: translateY(10px);
	transition: opacity 180ms ease, transform 180ms ease;
	width: min(720px, 86vw);
}

.country-mega:hover .country-mega__panel,
.country-mega:focus-within .country-mega__panel,
.country-mega.is-open .country-mega__panel {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.country-mega__heading {
	align-items: center;
	border-bottom: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	margin-bottom: 17px;
	padding-bottom: 16px;
}

.country-mega__heading .eyebrow {
	margin: 0 0 5px;
}

.country-mega__heading strong {
	display: block;
	font-size: 1.18rem;
}

.country-mega__heading > a {
	font-size: 0.83rem;
	font-weight: 750;
}

.country-mega__grid {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(3, 1fr);
}

.country-mega__grid > a {
	align-items: center;
	border-radius: 10px;
	color: var(--ink);
	display: flex;
	gap: 10px;
	padding: 9px;
}

.country-mega__grid > a:hover {
	background: var(--blue-50);
}

.country-mega__grid img {
	border-radius: 4px;
	height: 24px;
	object-fit: cover;
	width: 36px;
}

.country-mega__grid span {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.country-mega__grid strong {
	font-size: 0.85rem;
}

.country-mega__grid small {
	color: var(--muted);
	font-size: 0.7rem;
}

.site-header__actions {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	gap: 12px;
}

@media (min-width: 1181px) and (max-width: 1420px) {
	.site-header__inner {
		gap: 10px;
	}

	.site-brand__text {
		display: none;
	}

	.desktop-nav {
		margin-right: 4px;
	}

	.primary-menu {
		gap: 0;
	}

	.primary-menu > li > a,
	.country-mega__toggle {
		font-size: 0.8rem;
		padding-inline: 7px;
	}

	.site-header__actions {
		gap: 8px;
	}

	.site-header__actions .button {
		padding-inline: 15px;
	}
}

.header-login {
	align-items: center;
	color: var(--ink);
	display: inline-flex;
	font-size: 0.84rem;
	font-weight: 700;
	gap: 6px;
	white-space: nowrap;
}

.mobile-menu-toggle {
	align-items: center;
	background: var(--blue-50);
	border: 0;
	border-radius: 9px;
	color: var(--navy-900);
	display: none;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.mobile-drawer,
.mobile-drawer-backdrop {
	display: none;
}

/* Hero */
.hero {
	background:
		radial-gradient(circle at 76% 28%, rgba(21, 147, 232, 0.22), transparent 28%),
		linear-gradient(125deg, var(--navy-950) 0%, var(--navy-900) 54%, #064b7b 100%);
	color: #fff;
	min-height: 690px;
	overflow: visible;
	position: relative;
}

.hero__pattern,
.career-cta__pattern {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 54px 54px;
	inset: 0;
	mask-image: linear-gradient(to right, #000, transparent);
	position: absolute;
}

.hero__inner {
	align-items: center;
	display: grid;
	gap: 60px;
	grid-template-columns: 1.03fr 0.97fr;
	min-height: 600px;
	padding-bottom: 80px;
	padding-top: 64px;
	position: relative;
}

.hero__content {
	position: relative;
	z-index: 2;
}

.hero__eyebrow {
	align-items: center;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	color: #d9eafa;
	display: inline-flex;
	font-size: 0.77rem;
	font-weight: 750;
	gap: 8px;
	letter-spacing: 0.08em;
	margin-bottom: 21px;
	padding: 7px 13px;
	text-transform: uppercase;
}

.hero__eyebrow span {
	color: var(--gold-400);
}

.hero h1 {
	color: #fff;
	font-size: clamp(3.25rem, 5.5vw, 5.2rem);
	letter-spacing: -0.055em;
	max-width: 760px;
}

.hero__content > p {
	color: #c9dced;
	font-size: clamp(1.08rem, 1.5vw, 1.25rem);
	max-width: 650px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 30px;
}

.hero__proof {
	align-items: center;
	display: flex;
	gap: 14px;
	margin-top: 34px;
}

.avatar-stack {
	display: flex;
	padding-left: 8px;
}

.avatar-stack span {
	align-items: center;
	background: var(--blue-600);
	border: 2px solid var(--navy-900);
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 0.65rem;
	font-weight: 800;
	height: 34px;
	justify-content: center;
	margin-left: -8px;
	width: 34px;
}

.avatar-stack span:nth-child(2) {
	background: var(--gold-600);
}

.avatar-stack span:nth-child(3) {
	background: var(--green-600);
}

.avatar-stack span:last-child {
	background: #fff;
	color: var(--navy-900);
}

.hero__proof > div:last-child {
	display: flex;
	flex-direction: column;
}

.hero__proof strong {
	font-size: 0.86rem;
}

.hero__proof span {
	color: #a9c2d6;
	font-size: 0.76rem;
}

.hero__visual {
	height: 480px;
	position: relative;
}

.world-globe {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 390px;
}

.world-globe svg circle {
	fill: rgba(8, 118, 207, 0.12);
	stroke: rgba(163, 215, 246, 0.4);
	stroke-width: 1.2;
}

.world-globe svg path {
	fill: rgba(44, 160, 222, 0.23);
	stroke: rgba(190, 227, 249, 0.35);
	stroke-width: 1;
}

.world-globe svg path:last-child {
	fill: none;
	opacity: 0.65;
}

.world-orbit {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.world-orbit--outer {
	height: 455px;
	width: 455px;
}

.world-orbit--inner {
	height: 335px;
	width: 335px;
}

.globe-pin {
	align-items: center;
	animation: pin-pulse 2.2s ease-in-out infinite;
	background: var(--gold-400);
	border: 4px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	color: var(--navy-900);
	display: flex;
	height: 36px;
	justify-content: center;
	position: absolute;
	width: 36px;
}

.globe-pin--one {
	left: 66%;
	top: 25%;
}

.globe-pin--two {
	animation-delay: 0.7s;
	left: 27%;
	top: 39%;
}

.globe-pin--three {
	animation-delay: 1.4s;
	left: 58%;
	top: 66%;
}

.floating-job {
	align-items: center;
	backdrop-filter: blur(14px);
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.68);
	border-radius: 14px;
	box-shadow: var(--shadow-lg);
	color: var(--ink);
	display: flex;
	gap: 11px;
	padding: 13px 15px;
	position: absolute;
	z-index: 2;
}

.floating-job--one {
	animation: float-card 5s ease-in-out infinite;
	left: 0;
	top: 72px;
}

.floating-job--two {
	animation: float-card 5s ease-in-out infinite reverse;
	bottom: 55px;
	right: 0;
}

.floating-job__icon,
.floating-job__check {
	align-items: center;
	background: var(--blue-100);
	border-radius: 9px;
	color: var(--blue-700);
	display: flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.floating-job__check {
	background: var(--green-100);
	color: var(--green-700);
}

.floating-job div {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.floating-job small,
.floating-job span {
	color: var(--muted);
	font-size: 0.7rem;
}

.floating-job strong {
	font-size: 0.82rem;
}

.hero__search-wrap {
	margin-bottom: -67px;
	position: relative;
	z-index: 5;
}

.hero-search {
	align-items: end;
	background: #fff;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 18px;
	box-shadow: 0 25px 70px rgba(4, 27, 49, 0.27);
	display: grid;
	gap: 0;
	grid-template-columns: 1.25fr 0.8fr 0.8fr auto;
	padding: 12px;
}

.hero-search__field {
	border-right: 1px solid var(--border);
	padding: 7px 18px 8px 45px;
	position: relative;
}

.hero-search__field label {
	color: var(--navy-900);
	display: block;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hero-search__field > span {
	color: var(--blue-600);
	left: 16px;
	position: absolute;
	top: 32px;
}

.hero-search input,
.hero-search select {
	background: transparent;
	border: 0;
	color: var(--ink);
	height: 34px;
	outline: 0;
	padding: 3px 0;
	width: 100%;
}

.hero-search input::placeholder {
	color: #8fa0ae;
}

.hero-search__submit {
	border-radius: 12px;
	height: 58px;
	margin-left: 12px;
}

.hero__popular {
	color: #c4d8e8;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.76rem;
	gap: 13px;
	margin-top: 12px;
	padding-left: 18px;
}

.hero__popular a {
	color: #fff;
	opacity: 0.86;
}

.trust-strip {
	border-bottom: 1px solid var(--border);
	padding-bottom: 23px;
	padding-top: 96px;
}

.trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
	align-items: center;
	border-right: 1px solid var(--border);
	display: flex;
	gap: 13px;
	padding: 5px 24px;
}

.trust-strip__grid > div:first-child {
	padding-left: 0;
}

.trust-strip__grid > div:last-child {
	border: 0;
}

.trust-strip__grid > div > span {
	align-items: center;
	background: var(--blue-50);
	border-radius: 10px;
	color: var(--blue-700);
	display: flex;
	height: 43px;
	justify-content: center;
	width: 43px;
}

.trust-strip__grid p {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
	margin: 0;
}

.trust-strip__grid strong {
	font-size: 0.86rem;
}

.trust-strip__grid small {
	color: var(--muted);
	font-size: 0.68rem;
	margin-top: 3px;
}

/* Country and category cards */
.country-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, 1fr);
}

.country-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 6px 20px rgba(6, 42, 76, 0.04);
	display: flex;
	flex-direction: column;
	min-height: 266px;
	overflow: hidden;
	padding: 21px;
	position: relative;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.country-card:hover {
	border-color: #9bcce9;
	box-shadow: var(--shadow-md);
	transform: translateY(-7px);
}

.country-card__visual {
	align-items: center;
	display: flex;
	height: 62px;
	margin-bottom: 15px;
	position: relative;
}

.country-flag {
	border: 1px solid rgba(4, 27, 49, 0.09);
	border-radius: 5px;
	height: 27px;
	object-fit: cover;
	width: 42px;
}

.country-card__flag {
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(4, 27, 49, 0.15);
	height: 42px;
	position: relative;
	width: 63px;
	z-index: 2;
}

.country-card__orb {
	background: var(--blue-50);
	border-radius: 50%;
	height: 76px;
	left: 28px;
	position: absolute;
	width: 76px;
}

.country-card h3 {
	font-size: 1.18rem;
	margin-bottom: 7px;
}

.country-card p {
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.55;
}

.country-card footer {
	align-items: center;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 14px;
}

.country-card footer strong {
	color: var(--navy-900);
	font-size: 0.76rem;
}

.country-card footer a {
	align-items: center;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 750;
	gap: 5px;
}

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

.category-card {
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 13px;
	color: var(--ink);
	display: grid;
	gap: 13px;
	grid-template-columns: auto 1fr auto;
	padding: 17px;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-card:hover {
	border-color: #abd2e9;
	box-shadow: var(--shadow-sm);
	color: var(--ink);
	transform: translateY(-3px);
}

.category-card__icon {
	align-items: center;
	background: linear-gradient(145deg, var(--blue-50), var(--blue-100));
	border-radius: 11px;
	color: var(--blue-700);
	display: flex;
	height: 51px;
	justify-content: center;
	width: 51px;
}

.category-card > span:nth-child(2) {
	display: flex;
	flex-direction: column;
}

.category-card strong {
	font-size: 0.91rem;
}

.category-card small {
	color: var(--muted);
	font-size: 0.72rem;
}

.category-card > .ijp-icon {
	color: #9aacba;
	transition: transform 180ms ease;
}

.category-card:hover > .ijp-icon {
	color: var(--blue-700);
	transform: translateX(4px);
}

/* Job cards */
.job-grid {
	display: grid;
	gap: 21px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.job-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 7px 24px rgba(6, 42, 76, 0.045);
	display: flex;
	flex-direction: column;
	min-height: 405px;
	padding: 21px;
	position: relative;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.job-card:hover {
	border-color: #a9d2e9;
	box-shadow: var(--shadow-md);
	transform: translateY(-6px);
}

.job-card__top,
.job-card__footer {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.job-card__country {
	align-items: center;
	display: flex;
	gap: 10px;
}

.job-card__country span {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.job-card__country strong {
	font-size: 0.83rem;
}

.job-card__country small {
	color: var(--muted);
	font-size: 0.68rem;
}

.save-job,
.share-button {
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 50%;
	color: var(--muted);
	display: inline-flex;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.save-job:hover,
.save-job.is-saved {
	background: var(--red-100);
	border-color: #f4bcbc;
	color: var(--red-600);
}

.save-job.is-saved svg {
	fill: currentColor;
}

.job-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 16px;
	min-height: 24px;
}

.badge {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.64rem;
	font-weight: 800;
	gap: 4px;
	letter-spacing: 0.04em;
	padding: 4px 9px;
	text-transform: uppercase;
}

.badge--featured {
	background: #fff4d8;
	color: #9b6300;
}

.badge--urgent {
	animation: urgent-glow 2s ease-in-out infinite;
	background: var(--red-100);
	color: #b52b2b;
}

.badge--demo {
	background: #eee9ff;
	color: #6840b7;
}

.badge--active {
	background: var(--green-100);
	color: var(--green-700);
}

.badge--closed {
	background: #e9edf0;
	color: #5c6872;
}

.job-card__title {
	font-size: 1.17rem;
	margin: 9px 0 7px;
}

.job-card__title a {
	color: var(--navy-900);
}

.job-card__title a:hover {
	color: var(--blue-700);
}

.job-card__employer {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 0.76rem;
	gap: 6px;
	margin-bottom: 17px;
}

.job-card__meta {
	border-bottom: 1px solid var(--border);
	border-top: 1px solid var(--border);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding-block: 8px;
}

.job-card__meta > div {
	align-items: center;
	display: flex;
	gap: 8px;
	min-width: 0;
	padding: 7px 4px;
}

.job-card__meta > div > span {
	color: var(--blue-600);
}

.job-card__meta p {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
	margin: 0;
	min-width: 0;
}

.job-card__meta small {
	color: var(--muted);
	font-size: 0.61rem;
}

.job-card__meta strong {
	font-size: 0.75rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.job-card__footer {
	margin-top: auto;
	padding-top: 16px;
}

.job-card__footer > span {
	color: var(--muted);
	font-size: 0.67rem;
}

.job-card__footer > div {
	align-items: center;
	display: flex;
	gap: 13px;
}

.job-card__footer .button-link {
	font-size: 0.78rem;
}

/* Why, process, stats */
.why-section {
	background:
		radial-gradient(circle at 15% 90%, rgba(21, 147, 232, 0.16), transparent 30%),
		var(--navy-950);
}

.why-section__grid {
	align-items: center;
	display: grid;
	gap: 80px;
	grid-template-columns: 0.8fr 1.2fr;
}

.why-section h2 {
	color: #fff;
}

.why-section__content p {
	color: #afc5d7;
	font-size: 1.04rem;
}

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

.why-grid article {
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 14px;
	display: flex;
	gap: 13px;
	padding: 19px;
	transition: background 180ms ease, transform 180ms ease;
}

.why-grid article:hover {
	background: rgba(255, 255, 255, 0.09);
	transform: translateY(-3px);
}

.why-grid article > span {
	align-items: center;
	background: rgba(242, 184, 75, 0.15);
	border-radius: 10px;
	color: var(--gold-400);
	display: flex;
	flex: 0 0 43px;
	height: 43px;
	justify-content: center;
}

.why-grid h3 {
	color: #fff;
	font-size: 0.93rem;
	letter-spacing: -0.015em;
	margin-bottom: 5px;
}

.why-grid p {
	color: #a9bdce;
	font-size: 0.75rem;
	line-height: 1.5;
	margin: 0;
}

.process-timeline {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	list-style: none;
	position: relative;
}

.process-timeline::before {
	background: linear-gradient(90deg, var(--blue-100), var(--blue-600), var(--blue-100));
	content: "";
	height: 2px;
	left: 6%;
	position: absolute;
	right: 6%;
	top: 47px;
}

.process-timeline li {
	align-items: center;
	display: flex;
	flex-direction: column;
	position: relative;
	text-align: center;
}

.process-timeline__number {
	align-items: center;
	background: var(--navy-900);
	border: 4px solid #fff;
	border-radius: 50%;
	box-shadow: 0 0 0 2px var(--blue-100);
	color: #fff;
	display: flex;
	font-size: 0.7rem;
	font-weight: 800;
	height: 32px;
	justify-content: center;
	margin-bottom: 14px;
	width: 32px;
	z-index: 1;
}

.process-timeline__icon {
	align-items: center;
	background: var(--blue-50);
	border-radius: 13px;
	color: var(--blue-700);
	display: flex;
	height: 52px;
	justify-content: center;
	margin-bottom: 13px;
	width: 52px;
}

.process-timeline strong {
	font-size: 0.76rem;
	max-width: 110px;
}

.statistics {
	background: linear-gradient(120deg, var(--blue-700), #07558f);
	color: #fff;
	padding-block: 43px;
}

.statistics__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}

.statistics__grid > div {
	border-right: 1px solid rgba(255, 255, 255, 0.16);
	display: flex;
	flex-direction: column;
	padding: 7px 22px;
	text-align: center;
}

.statistics__grid > div:last-child {
	border: 0;
}

.statistics strong {
	color: #fff;
	font-size: 2rem;
	letter-spacing: -0.04em;
}

.statistics strong::after {
	content: "+";
	font-size: 1rem;
}

.statistics span {
	color: #cae3f5;
	font-size: 0.72rem;
}

.job-tabs {
	background: var(--surface-soft);
	border-radius: 999px;
	display: flex;
	padding: 4px;
}

.job-tabs button {
	background: transparent;
	border: 0;
	border-radius: 999px;
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 700;
	padding: 9px 15px;
}

.job-tabs button.is-active {
	background: #fff;
	box-shadow: 0 4px 13px rgba(4, 27, 49, 0.08);
	color: var(--blue-700);
}

.job-tab-item {
	display: flex;
}

.job-tab-item .job-card {
	width: 100%;
}

.job-tab-item[hidden] {
	display: none;
}

.section-action {
	margin-top: 35px;
	text-align: center;
}

/* Employer, testimonials, offices, blog */
.employer-section {
	background:
		linear-gradient(90deg, var(--blue-50) 0 43%, transparent 43%),
		#fff;
}

.employer-section__inner {
	align-items: center;
	display: grid;
	gap: 90px;
	grid-template-columns: 0.9fr 1.1fr;
}

.employer-section__visual {
	background:
		radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
		linear-gradient(145deg, var(--navy-900), var(--blue-700));
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	min-height: 450px;
	padding: 65px 44px;
	position: relative;
}

.talent-stack {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.talent-stack > div {
	align-items: center;
	background: #fff;
	border-radius: 13px;
	box-shadow: var(--shadow-sm);
	display: flex;
	gap: 12px;
	padding: 13px;
}

.talent-stack > div:nth-child(2) {
	margin-left: 28px;
	margin-right: -28px;
}

.talent-stack > div > span {
	align-items: center;
	background: var(--blue-100);
	border-radius: 10px;
	color: var(--blue-700);
	display: flex;
	font-size: 0.72rem;
	font-weight: 800;
	height: 43px;
	justify-content: center;
	width: 43px;
}

.talent-stack p {
	display: flex;
	flex: 1;
	flex-direction: column;
	line-height: 1.35;
	margin: 0;
}

.talent-stack strong {
	font-size: 0.84rem;
}

.talent-stack small {
	color: var(--muted);
	font-size: 0.7rem;
}

.talent-stack b {
	align-items: center;
	background: var(--green-100);
	border-radius: 50%;
	color: var(--green-700);
	display: flex;
	height: 30px;
	justify-content: center;
	width: 30px;
}

.employer-section__label {
	align-items: center;
	background: var(--gold-400);
	border-radius: 999px;
	bottom: 32px;
	box-shadow: var(--shadow-sm);
	color: var(--navy-900);
	display: flex;
	font-size: 0.75rem;
	font-weight: 800;
	gap: 7px;
	left: 50%;
	padding: 9px 14px;
	position: absolute;
	transform: translateX(-50%);
	white-space: nowrap;
}

.employer-section__content > p {
	color: var(--muted);
	font-size: 1.05rem;
}

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

.check-list li {
	align-items: center;
	display: flex;
	font-weight: 650;
	gap: 9px;
}

.check-list .ijp-icon {
	background: var(--green-100);
	border-radius: 50%;
	color: var(--green-700);
	padding: 2px;
}

.check-list--light li {
	color: #d9e8f4;
}

.employer-section__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
}

.testimonial-slider {
	overflow: hidden;
}

.testimonial-slider__track {
	display: flex;
	gap: 21px;
	transition: transform 350ms ease;
}

.testimonial-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	flex: 0 0 calc((100% - 42px) / 3);
	min-height: 310px;
	padding: 25px;
	position: relative;
}

.testimonial-card__quote {
	color: var(--blue-100);
	font-family: Georgia, serif;
	font-size: 5rem;
	left: 20px;
	line-height: 1;
	position: absolute;
	top: 14px;
}

.testimonial-card__stars {
	color: var(--gold-500);
	font-size: 0.88rem;
	letter-spacing: 0.15em;
	position: relative;
}

.testimonial-card blockquote {
	color: var(--ink);
	font-size: 0.93rem;
	font-style: italic;
	line-height: 1.72;
	margin: 38px 0 28px;
	position: relative;
}

.testimonial-card footer {
	align-items: center;
	display: flex;
	gap: 12px;
}

.testimonial-card footer > span {
	align-items: center;
	background: var(--navy-900);
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 0.8rem;
	font-weight: 800;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.testimonial-card footer p {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
	margin: 0;
}

.testimonial-card footer strong {
	font-size: 0.83rem;
}

.testimonial-card footer small {
	color: var(--muted);
	font-size: 0.7rem;
}

.testimonial-slider__controls {
	align-items: center;
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-top: 27px;
}

.testimonial-slider__controls button {
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 50%;
	color: var(--navy-900);
	display: flex;
	height: 39px;
	justify-content: center;
	width: 39px;
}

.testimonial-slider__controls [data-slider-dots] {
	display: flex;
	gap: 6px;
}

.testimonial-slider__controls [data-slider-dots] button {
	background: #bdcbd5;
	border: 0;
	height: 7px;
	width: 7px;
}

.testimonial-slider__controls [data-slider-dots] button.is-active {
	background: var(--blue-600);
	border-radius: 999px;
	width: 24px;
}

.office-grid,
.blog-grid {
	display: grid;
	gap: 21px;
	grid-template-columns: repeat(3, 1fr);
}

.office-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 25px;
}

.office-card__icon {
	align-items: center;
	background: var(--blue-50);
	border-radius: 11px;
	color: var(--blue-700);
	display: flex;
	height: 48px;
	justify-content: center;
	margin-bottom: 18px;
	width: 48px;
}

.office-card h3 {
	font-size: 1.08rem;
}

.office-card p {
	color: var(--muted);
	font-size: 0.82rem;
	min-height: 50px;
}

.office-card ul {
	border-bottom: 1px solid var(--border);
	border-top: 1px solid var(--border);
	display: grid;
	gap: 6px;
	list-style: none;
	margin-block: 16px;
	padding-block: 12px;
}

.office-card li {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 0.76rem;
	gap: 7px;
}

.office-card > a {
	align-items: center;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 750;
	gap: 6px;
}

.blog-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.blog-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-5px);
}

.blog-card__image {
	align-items: center;
	background:
		radial-gradient(circle at 70% 20%, rgba(242, 184, 75, 0.5), transparent 24%),
		linear-gradient(135deg, var(--navy-900), var(--blue-600));
	color: #fff;
	display: flex;
	height: 190px;
	justify-content: center;
	overflow: hidden;
}

.blog-card__image img {
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
	width: 100%;
}

.blog-card:hover .blog-card__image img {
	transform: scale(1.04);
}

.blog-card > div {
	padding: 21px;
}

.blog-card__meta {
	color: var(--blue-700);
	font-size: 0.68rem;
	font-weight: 750;
	text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
	font-size: 1.1rem;
	margin: 9px 0;
}

.blog-card h2 a,
.blog-card h3 a {
	color: var(--navy-900);
}

.blog-card p {
	color: var(--muted);
	font-size: 0.79rem;
}

.blog-card .button-link {
	font-size: 0.76rem;
}

.faq-preview__grid {
	align-items: start;
	display: grid;
	gap: 75px;
	grid-template-columns: 0.7fr 1.3fr;
}

.faq-preview__grid > div:first-child > p {
	color: var(--muted);
}

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

.faq-item {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
}

.faq-item summary {
	align-items: center;
	color: var(--navy-900);
	cursor: pointer;
	display: flex;
	font-size: 0.9rem;
	font-weight: 750;
	justify-content: space-between;
	list-style: none;
	padding: 17px 19px;
}

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

.faq-item summary span {
	color: var(--blue-700);
	font-size: 1.3rem;
	transition: transform 180ms ease;
}

.faq-item[open] summary span {
	transform: rotate(45deg);
}

.faq-item > div {
	border-top: 1px solid var(--border);
	color: var(--muted);
	font-size: 0.84rem;
	padding: 17px 19px;
}

.faq-item > div p:last-child {
	margin: 0;
}

.career-cta {
	background: linear-gradient(125deg, var(--navy-950), var(--blue-700));
	color: #fff;
	overflow: hidden;
	padding-block: 75px;
	position: relative;
}

.career-cta__pattern {
	mask-image: radial-gradient(circle at 80%, #000, transparent 65%);
}

.career-cta__inner {
	align-items: center;
	display: grid;
	gap: 60px;
	grid-template-columns: 1.2fr 0.8fr;
	position: relative;
}

.career-cta h2 {
	color: #fff;
}

.career-cta p {
	color: #c2d8e8;
	max-width: 730px;
}

.career-cta__inner > div:last-child {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

/* Page hero and archive */
.page-hero {
	background:
		radial-gradient(circle at 80% 30%, rgba(21, 147, 232, 0.22), transparent 25%),
		linear-gradient(120deg, var(--navy-950), var(--navy-800));
	color: #fff;
	padding-block: 64px 74px;
	position: relative;
}

.page-hero h1 {
	color: #fff;
	font-size: clamp(2.7rem, 5vw, 4.2rem);
}

.page-hero p {
	color: #c1d5e5;
	font-size: 1.05rem;
	max-width: 760px;
}

.page-hero--compact {
	padding-block: 56px 65px;
}

.page-hero--compact h1 {
	font-size: clamp(2.4rem, 4vw, 3.5rem);
}

.page-hero--jobs {
	padding-bottom: 87px;
}

.breadcrumbs {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 0.73rem;
	gap: 9px;
	margin-bottom: 23px;
	overflow: hidden;
	white-space: nowrap;
}

.breadcrumbs a {
	color: inherit;
}

.breadcrumbs--light,
.page-hero .breadcrumbs {
	color: #a9c0d3;
}

.page-hero__content {
	align-items: end;
	display: flex;
	gap: 50px;
	justify-content: space-between;
}

.page-hero__stats {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 13px;
	display: flex;
	flex: 0 0 225px;
	flex-direction: column;
	padding: 17px;
}

.page-hero__stats strong {
	color: #fff;
	font-size: 2rem;
	line-height: 1;
}

.page-hero__stats span {
	color: #b9cfe0;
	font-size: 0.72rem;
	margin-top: 7px;
}

.archive-search {
	align-items: end;
	background: #fff;
	border-radius: 14px;
	box-shadow: var(--shadow-md);
	display: grid;
	gap: 9px;
	grid-template-columns: 1.35fr 0.75fr auto;
	margin-bottom: -126px;
	margin-top: 29px;
	padding: 12px;
	position: relative;
	z-index: 2;
}

.archive-search > div {
	padding: 4px 14px 4px 43px;
	position: relative;
}

.archive-search label {
	color: var(--navy-900);
	display: block;
	font-size: 0.66rem;
	font-weight: 800;
	text-transform: uppercase;
}

.archive-search > div > span {
	color: var(--blue-600);
	left: 13px;
	position: absolute;
	top: 28px;
}

.archive-search input,
.archive-search select {
	background: transparent;
	border: 0;
	color: var(--ink);
	height: 34px;
	outline: 0;
	width: 100%;
}

.jobs-layout {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: 260px minmax(0, 1fr);
	padding-bottom: 90px;
	padding-top: 81px;
}

.job-filters {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 19px;
	position: sticky;
	top: 95px;
}

.job-filters__header {
	align-items: center;
	border-bottom: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	padding-bottom: 13px;
}

.job-filters__header > div {
	align-items: center;
	display: flex;
	gap: 8px;
}

.job-filters__header h2 {
	font-size: 0.95rem;
	margin: 0;
}

.job-filters__header span {
	color: var(--blue-700);
}

.job-filters__header button {
	background: transparent;
	border: 0;
	color: var(--blue-700);
	font-size: 0.68rem;
	font-weight: 750;
	padding: 0;
}

.job-filters__mobile-close {
	display: none;
}

.filter-group {
	margin-bottom: 13px;
}

.filter-group label {
	color: var(--navy-900);
	display: block;
	font-size: 0.68rem;
	font-weight: 750;
	margin-bottom: 5px;
}

.filter-group select {
	background-color: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--ink);
	font-size: 0.75rem;
	height: 42px;
	padding-inline: 10px;
	width: 100%;
}

.job-alert-card {
	background: linear-gradient(145deg, var(--navy-900), var(--blue-700));
	border-radius: 12px;
	color: #fff;
	margin-top: 19px;
	padding: 18px;
}

.job-alert-card > span {
	color: var(--gold-400);
}

.job-alert-card h3 {
	color: #fff;
	font-size: 0.94rem;
	margin: 10px 0 6px;
}

.job-alert-card p {
	color: #bed3e3;
	font-size: 0.7rem;
	line-height: 1.5;
}

.job-alert-card .button-link {
	color: var(--gold-400);
	font-size: 0.72rem;
}

.job-results__toolbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 17px;
}

.job-results__toolbar h2 {
	font-size: 1rem;
	margin: 0;
}

.results-view {
	align-items: center;
	display: flex;
	gap: 10px;
}

.results-view > select {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--ink);
	font-size: 0.73rem;
	height: 39px;
	padding-inline: 10px;
}

.view-toggle {
	background: var(--surface-soft);
	border-radius: 8px;
	display: flex;
	padding: 3px;
}

.view-toggle button {
	background: transparent;
	border: 0;
	border-radius: 6px;
	color: var(--muted);
	height: 32px;
	width: 34px;
}

.view-toggle button.is-active {
	background: #fff;
	box-shadow: 0 3px 8px rgba(4, 27, 49, 0.08);
	color: var(--blue-700);
}

.filter-mobile-toggle {
	display: none;
}

.active-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 15px;
}

.active-filter {
	align-items: center;
	background: var(--blue-50);
	border: 1px solid #cce7f7;
	border-radius: 999px;
	color: var(--blue-700);
	display: inline-flex;
	font-size: 0.68rem;
	font-weight: 700;
	gap: 6px;
	padding: 5px 9px;
}

.active-filter button {
	background: transparent;
	border: 0;
	color: inherit;
	line-height: 1;
	padding: 0;
}

.job-results__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.job-results__grid.is-list {
	grid-template-columns: 1fr;
}

.job-results__grid.is-list .job-card {
	min-height: auto;
}

.job-results__load {
	margin-top: 28px;
	text-align: center;
}

.empty-state {
	align-items: center;
	background: var(--surface-soft);
	border: 1px dashed #b9cbd8;
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	grid-column: 1 / -1;
	padding: 55px 25px;
	text-align: center;
}

.empty-state > span {
	align-items: center;
	background: var(--blue-100);
	border-radius: 50%;
	color: var(--blue-700);
	display: flex;
	height: 68px;
	justify-content: center;
	width: 68px;
}

.empty-state h3,
.empty-state h2 {
	font-size: 1.25rem;
	margin: 17px 0 7px;
}

.empty-state p {
	color: var(--muted);
	font-size: 0.82rem;
	max-width: 490px;
}

.skeleton-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	height: 405px;
	overflow: hidden;
	position: relative;
}

.skeleton-card::before {
	animation: skeleton-shimmer 1.25s linear infinite;
	background: linear-gradient(90deg, #eef3f6 20%, #f8fafb 40%, #eef3f6 60%);
	background-size: 300% 100%;
	content: "";
	inset: 20px;
	mask:
		linear-gradient(#000 0 0) 0 0 / 100% 48px,
		linear-gradient(#000 0 0) 0 76px / 74% 24px,
		linear-gradient(#000 0 0) 0 116px / 100% 145px,
		linear-gradient(#000 0 0) 0 290px / 100% 50px;
	mask-repeat: no-repeat;
	position: absolute;
}

.portal-dialog {
	border: 0;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	max-width: 480px;
	padding: 32px;
	width: calc(100% - 32px);
}

.portal-dialog::backdrop {
	background: rgba(4, 27, 49, 0.65);
	backdrop-filter: blur(4px);
}

.portal-dialog__close {
	align-items: center;
	background: var(--surface-soft);
	border: 0;
	border-radius: 50%;
	display: flex;
	height: 36px;
	justify-content: center;
	position: absolute;
	right: 16px;
	top: 16px;
	width: 36px;
}

.portal-dialog__icon {
	align-items: center;
	background: var(--blue-100);
	border-radius: 12px;
	color: var(--blue-700);
	display: flex;
	height: 50px;
	justify-content: center;
	width: 50px;
}

.portal-dialog h2 {
	font-size: 1.45rem;
	margin: 17px 0 8px;
}

.portal-dialog > p {
	color: var(--muted);
	font-size: 0.84rem;
}

.stacked-alert-form {
	display: grid;
	gap: 12px;
	margin-top: 20px;
}

.stacked-alert-form label {
	color: var(--navy-900);
	font-size: 0.75rem;
	font-weight: 700;
}

.stacked-alert-form input,
.stacked-alert-form select {
	border: 1px solid var(--border);
	border-radius: 9px;
	display: block;
	height: 46px;
	margin-top: 5px;
	padding-inline: 12px;
	width: 100%;
}

/* Single job */
.job-hero {
	background:
		radial-gradient(circle at 82% 25%, rgba(21, 147, 232, 0.2), transparent 25%),
		linear-gradient(125deg, var(--navy-950), var(--navy-800));
	color: #fff;
	padding: 38px 0 0;
}

.job-hero__grid {
	align-items: start;
	display: flex;
	gap: 30px;
	justify-content: space-between;
	padding-bottom: 35px;
}

.job-hero__main {
	display: flex;
	gap: 19px;
}

.job-hero__brand {
	align-items: center;
	background: #fff;
	border-radius: 14px;
	color: var(--blue-700);
	display: flex;
	flex: 0 0 76px;
	height: 76px;
	justify-content: center;
	overflow: hidden;
	width: 76px;
}

.job-hero__brand img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.job-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 10px;
}

.job-hero h1 {
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.2rem);
	margin-bottom: 11px;
}

.job-hero__sub {
	align-items: center;
	color: #bfd3e3;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.79rem;
	gap: 16px;
}

.job-hero__sub > span {
	align-items: center;
	display: inline-flex;
	gap: 7px;
}

.job-hero__sub .country-flag {
	height: 20px;
	width: 30px;
}

.job-hero__actions {
	display: flex;
	gap: 9px;
}

.save-job--text,
.share-button {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	color: #fff;
	font-size: 0.76rem;
	gap: 7px;
	height: 42px;
	padding-inline: 15px;
	width: auto;
}

.share-button:hover,
.save-job--text:hover {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.job-hero__facts {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 0;
	border-radius: 15px 15px 0 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

.job-hero__facts > div {
	align-items: center;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	gap: 11px;
	padding: 17px 21px;
}

.job-hero__facts > div:last-child {
	border: 0;
}

.job-hero__facts > div > span {
	color: var(--gold-400);
}

.job-hero__facts p {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
	margin: 0;
}

.job-hero__facts small {
	color: #a9c3d7;
	font-size: 0.63rem;
}

.job-hero__facts strong {
	color: #fff;
	font-size: 0.78rem;
}

.job-detail-layout {
	align-items: start;
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(0, 1fr) 390px;
	padding-block: 55px 90px;
}

.job-detail {
	display: grid;
	gap: 20px;
}

.job-content-section,
.recruitment-mini-process {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 27px;
}

.job-content-section__heading {
	align-items: center;
	border-bottom: 1px solid var(--border);
	display: flex;
	gap: 11px;
	margin-bottom: 20px;
	padding-bottom: 15px;
}

.job-content-section__heading > span {
	align-items: center;
	background: var(--blue-50);
	border-radius: 9px;
	color: var(--blue-700);
	display: flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.job-content-section h2 {
	font-size: 1.2rem;
	margin: 0;
}

.entry-content {
	color: #40556a;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content h2 {
	font-size: 1.7rem;
	margin-top: 1.5em;
}

.entry-content h3 {
	font-size: 1.25rem;
	margin-top: 1.4em;
}

.entry-content ul,
.entry-content ol {
	margin: 1em 0 1em 1.3em;
}

.entry-content li {
	margin-bottom: 0.45em;
}

.entry-content img {
	border-radius: var(--radius);
}

.demo-notice,
.safety-notice {
	align-items: flex-start;
	background: #f5f0ff;
	border: 1px solid #d9c9f5;
	border-radius: var(--radius);
	color: #56378e;
	display: flex;
	gap: 13px;
	padding: 18px;
}

.demo-notice p,
.safety-notice p {
	font-size: 0.79rem;
	margin: 2px 0 0;
}

.detail-table {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.detail-table > div {
	border-bottom: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	padding: 12px 5px;
}

.detail-table > div:nth-last-child(-n+2) {
	border-bottom: 0;
}

.detail-table span {
	color: var(--muted);
	font-size: 0.68rem;
}

.detail-table strong {
	font-size: 0.84rem;
}

.skill-tags {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 15px;
}

.skill-tags strong {
	font-size: 0.75rem;
}

.skill-tags span {
	background: var(--blue-50);
	border-radius: 999px;
	color: var(--blue-700);
	font-size: 0.68rem;
	font-weight: 650;
	padding: 5px 9px;
}

.recruitment-mini-process h2 {
	font-size: 1.16rem;
	text-align: center;
}

.recruitment-mini-process > div {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: 25px;
}

.recruitment-mini-process span {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-size: 0.68rem;
	font-weight: 700;
	gap: 8px;
	text-align: center;
}

.recruitment-mini-process b {
	align-items: center;
	background: var(--navy-900);
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 33px;
	justify-content: center;
	width: 33px;
}

.recruitment-mini-process i {
	background: var(--blue-100);
	height: 2px;
	width: 11%;
}

.safety-notice {
	background: #fff8e8;
	border-color: #f1dca4;
	color: #72510c;
}

.safety-notice h2 {
	color: #66470b;
	font-size: 0.95rem;
	margin: 0;
}

.application-sidebar {
	display: grid;
	gap: 16px;
	position: sticky;
	top: 95px;
}

.application-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	padding: 23px;
}

.application-card__heading {
	align-items: flex-start;
	display: flex;
	gap: 11px;
	margin-bottom: 19px;
}

.application-card__heading > span {
	align-items: center;
	background: #fff4da;
	border-radius: 9px;
	color: #a36a00;
	display: flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.application-card h2 {
	font-size: 1.1rem;
	margin: 0 0 3px;
}

.application-card__heading p {
	color: var(--muted);
	font-size: 0.72rem;
	margin: 0;
}

.application-form {
	display: grid;
	gap: 11px;
}

.form-row {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, 1fr);
}

.application-form label {
	color: var(--navy-900);
	font-size: 0.68rem;
	font-weight: 700;
}

.application-form label > span,
.form-field > b {
	color: var(--red-600);
}

.application-form input,
.application-form select,
.application-form textarea {
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 8px;
	display: block;
	font-size: 0.76rem;
	margin-top: 4px;
	min-height: 41px;
	padding: 9px 10px;
	resize: vertical;
	width: 100%;
}

.application-form__more {
	border: 1px solid var(--border);
	border-radius: 9px;
}

.application-form__more summary {
	align-items: center;
	color: var(--blue-700);
	cursor: pointer;
	display: flex;
	font-size: 0.73rem;
	font-weight: 700;
	justify-content: space-between;
	list-style: none;
	padding: 10px;
}

.application-form__more > div {
	border-top: 1px solid var(--border);
	display: grid;
	gap: 10px;
	padding: 10px;
}

.file-drop {
	align-items: center;
	background: var(--blue-50);
	border: 1px dashed #97c7e2;
	border-radius: 10px;
	cursor: pointer;
	display: flex !important;
	flex-direction: column;
	padding: 15px;
	text-align: center;
}

.file-drop > span {
	color: var(--blue-700) !important;
}

.file-drop strong {
	font-size: 0.75rem;
}

.file-drop small {
	color: var(--muted);
	font-size: 0.62rem;
}

.file-drop input {
	height: 1px !important;
	margin: 0 !important;
	min-height: 1px !important;
	opacity: 0;
	padding: 0 !important;
	position: absolute;
	width: 1px !important;
}

.file-drop em {
	color: var(--blue-700);
	font-size: 0.65rem;
	font-style: normal;
	font-weight: 750;
	margin-top: 3px;
}

.consent-field {
	align-items: flex-start;
	display: flex !important;
	gap: 8px;
	line-height: 1.45;
}

.consent-field input {
	flex: 0 0 auto;
	height: 15px;
	margin: 2px 0 0;
	min-height: auto;
	width: 15px;
}

.application-card__divider {
	border-top: 1px solid var(--border);
	margin: 19px 0;
	position: relative;
	text-align: center;
}

.application-card__divider span {
	background: #fff;
	color: var(--muted);
	font-size: 0.65rem;
	padding-inline: 8px;
	position: relative;
	top: -13px;
}

.application-card__privacy {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 0.62rem;
	gap: 6px;
	justify-content: center;
	margin: 15px 0 0;
	text-align: center;
}

.recruiter-help {
	align-items: center;
	background: var(--blue-50);
	border: 1px solid #cae4f4;
	border-radius: 13px;
	display: flex;
	gap: 11px;
	padding: 15px;
}

.recruiter-help > span {
	align-items: center;
	background: var(--navy-900);
	border-radius: 50%;
	color: #fff;
	display: flex;
	flex: 0 0 43px;
	font-size: 0.72rem;
	font-weight: 800;
	height: 43px;
	justify-content: center;
}

.recruiter-help div {
	display: flex;
	flex-direction: column;
}

.recruiter-help strong {
	font-size: 0.76rem;
}

.recruiter-help p,
.recruiter-help a {
	font-size: 0.66rem;
	margin: 2px 0 0;
}

.mobile-apply-bar {
	display: none;
}

/* Forms and account pages */
.page-hero__split {
	align-items: center;
	display: grid;
	gap: 65px;
	grid-template-columns: 1.2fr 0.8fr;
}

.page-hero__assurance,
.employer-benefit-grid {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--radius);
	display: grid;
	gap: 0;
}

.page-hero__assurance > div {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	gap: 12px;
	padding: 15px;
}

.page-hero__assurance > div:last-child {
	border: 0;
}

.page-hero__assurance > div > span {
	color: var(--gold-400);
}

.page-hero__assurance p {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
	margin: 0;
}

.page-hero__assurance strong {
	color: #fff;
	font-size: 0.81rem;
}

.page-hero__assurance small {
	color: #abc4d7;
	font-size: 0.68rem;
}

.registration-form-section {
	background: var(--surface-soft);
}

.form-shell {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 34px;
}

.form-progress {
	margin-bottom: 38px;
}

.form-progress__bar {
	background: var(--border);
	border-radius: 999px;
	height: 5px;
	margin-bottom: 20px;
	overflow: hidden;
}

.form-progress__bar span {
	background: linear-gradient(90deg, var(--blue-600), var(--gold-500));
	display: block;
	height: 100%;
	transition: width 350ms ease;
	width: 25%;
}

.form-progress ol {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	list-style: none;
}

.form-progress li {
	align-items: center;
	color: var(--muted);
	display: flex;
	gap: 9px;
}

.form-progress li > span {
	align-items: center;
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 50%;
	display: flex;
	font-size: 0.72rem;
	font-weight: 750;
	height: 32px;
	justify-content: center;
	width: 32px;
}

.form-progress li > div {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.form-progress li strong {
	font-size: 0.75rem;
}

.form-progress li small {
	font-size: 0.62rem;
}

.form-progress li.is-active,
.form-progress li.is-complete {
	color: var(--blue-700);
}

.form-progress li.is-active > span,
.form-progress li.is-complete > span {
	background: var(--blue-700);
	border-color: var(--blue-700);
	color: #fff;
}

.form-step {
	animation: form-step-in 280ms ease;
}

.form-step__heading,
.form-section__heading {
	align-items: flex-start;
	border-bottom: 1px solid var(--border);
	display: flex;
	gap: 13px;
	margin-bottom: 24px;
	padding-bottom: 17px;
}

.form-step__heading > span,
.form-section__heading > span {
	align-items: center;
	background: var(--blue-50);
	border-radius: 10px;
	color: var(--blue-700);
	display: flex;
	height: 43px;
	justify-content: center;
	width: 43px;
}

.form-step__heading h2,
.form-section__heading h2 {
	font-size: 1.25rem;
	margin: 0 0 4px;
}

.form-step__heading p,
.form-section__heading p {
	color: var(--muted);
	font-size: 0.75rem;
	margin: 0;
}

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

.form-field {
	color: var(--navy-900);
	font-size: 0.75rem;
	font-weight: 700;
}

.form-field--wide {
	grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 9px;
	color: var(--ink);
	display: block;
	font-size: 0.83rem;
	font-weight: 400;
	margin-top: 6px;
	min-height: 47px;
	padding: 11px 12px;
	resize: vertical;
	width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
	background: #fff;
	border-color: var(--blue-600);
	box-shadow: 0 0 0 3px rgba(21, 147, 232, 0.1);
	outline: 0;
}

.form-field input[readonly] {
	background: #eef2f5;
	color: var(--muted);
}

.form-step__actions {
	align-items: center;
	border-top: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	padding-top: 22px;
}

.upload-security-note,
.registration-summary {
	align-items: center;
	background: var(--green-100);
	border: 1px solid #bce8d4;
	border-radius: 11px;
	color: var(--green-700);
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
	padding: 14px;
}

.upload-security-note p,
.registration-summary > div {
	display: flex;
	flex-direction: column;
	margin: 0;
}

.upload-security-note strong,
.registration-summary strong {
	font-size: 0.78rem;
}

.upload-security-note span,
.registration-summary p {
	font-size: 0.69rem;
	margin: 0;
}

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

.document-upload {
	align-items: center;
	background: var(--surface-soft);
	border: 1px dashed #b8cad7;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	gap: 12px;
	min-height: 78px;
	padding: 13px;
	position: relative;
	transition: background 180ms ease, border-color 180ms ease;
}

.document-upload:hover {
	background: var(--blue-50);
	border-color: var(--blue-600);
}

.document-upload > span {
	color: var(--blue-700);
}

.document-upload > div {
	display: flex;
	flex-direction: column;
	line-height: 1.35;
	min-width: 0;
}

.document-upload strong {
	font-size: 0.76rem;
}

.document-upload small {
	color: var(--muted);
	font-size: 0.65rem;
}

.document-upload em {
	color: var(--blue-700);
	font-size: 0.65rem;
	font-style: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.document-upload input {
	inset: 0;
	opacity: 0;
	position: absolute;
	width: 100%;
}

.consent-panel {
	display: grid;
	gap: 12px;
}

.consent-panel label {
	align-items: flex-start;
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 10px;
	display: flex;
	font-size: 0.77rem;
	gap: 10px;
	line-height: 1.55;
	padding: 14px;
}

.consent-panel input {
	flex: 0 0 auto;
	height: 17px;
	margin-top: 2px;
	width: 17px;
}

.consent-panel b {
	color: var(--red-600);
}

.registration-summary {
	background: var(--blue-50);
	border-color: #c7e4f5;
	color: var(--blue-700);
	margin: 22px 0 0;
}

.form-help-strip {
	align-items: center;
	background: var(--navy-900);
	border-radius: var(--radius);
	color: #fff;
	display: flex;
	justify-content: space-between;
	margin-top: 18px;
	padding: 18px 23px;
}

.form-help-strip > div {
	align-items: center;
	display: flex;
	gap: 12px;
}

.form-help-strip p {
	display: flex;
	flex-direction: column;
	margin: 0;
}

.form-help-strip strong {
	font-size: 0.83rem;
}

.form-help-strip span {
	color: #a9c0d3;
	font-size: 0.7rem;
}

.form-status {
	border-radius: 8px;
	display: none;
	font-size: 0.73rem;
	line-height: 1.5;
	padding: 10px;
}

.form-status.is-visible {
	display: block;
}

.form-status.is-success {
	background: var(--green-100);
	color: var(--green-700);
}

.form-status.is-error {
	background: var(--red-100);
	color: #a82929;
}

.form-status--global {
	margin-top: 15px;
}

.js-ajax-form.is-submitting {
	opacity: 0.7;
	pointer-events: none;
}

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

.employer-benefit-grid > div {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 22px;
	text-align: center;
}

.employer-benefit-grid > div:nth-child(even) {
	border-right: 0;
}

.employer-benefit-grid > div:nth-last-child(-n+2) {
	border-bottom: 0;
}

.employer-benefit-grid span {
	color: var(--gold-400);
}

.employer-benefit-grid strong {
	color: #fff;
	font-size: 0.78rem;
}

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

.employer-form {
	display: grid;
	gap: 35px;
}

.employer-form-aside {
	display: grid;
	gap: 17px;
	position: sticky;
	top: 95px;
}

.employer-form-aside > div {
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 23px;
}

.employer-form-aside > div > span {
	color: var(--blue-700);
}

.employer-form-aside h2 {
	font-size: 1.08rem;
	margin: 12px 0 20px;
}

.employer-form-aside ol {
	display: grid;
	gap: 18px;
	list-style: none;
}

.employer-form-aside li {
	display: flex;
	gap: 10px;
}

.employer-form-aside li b {
	align-items: center;
	background: var(--navy-900);
	border-radius: 50%;
	color: #fff;
	display: flex;
	flex: 0 0 28px;
	font-size: 0.65rem;
	height: 28px;
	justify-content: center;
}

.employer-form-aside li span {
	display: flex;
	flex-direction: column;
}

.employer-form-aside li strong {
	font-size: 0.77rem;
}

.employer-form-aside li small {
	color: var(--muted);
	font-size: 0.67rem;
}

.aside-contact h3 {
	font-size: 0.92rem;
	margin: 10px 0 5px;
}

.aside-contact a {
	display: block;
	font-size: 0.75rem;
	margin-top: 4px;
}

.login-page {
	background: linear-gradient(110deg, var(--navy-950) 0 50%, var(--surface-soft) 50%);
	min-height: 720px;
}

.login-layout {
	align-items: center;
	display: grid;
	gap: 120px;
	grid-template-columns: 1fr 0.8fr;
	min-height: 720px;
	padding-block: 60px;
}

.login-story {
	color: #fff;
}

.login-story h1 {
	color: #fff;
	font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.login-story > p {
	color: #b7cede;
	font-size: 1.05rem;
	max-width: 590px;
}

.login-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 34px;
}

.login-card__icon {
	align-items: center;
	background: var(--blue-100);
	border-radius: 12px;
	color: var(--blue-700);
	display: flex;
	height: 52px;
	justify-content: center;
	width: 52px;
}

.login-card h2 {
	font-size: 1.6rem;
	margin: 18px 0 7px;
}

.login-card > p {
	color: var(--muted);
	font-size: 0.8rem;
}

.login-card form p {
	margin-bottom: 14px;
}

.login-card form label {
	color: var(--navy-900);
	display: block;
	font-size: 0.73rem;
	font-weight: 700;
}

.login-card .input {
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 9px;
	display: block;
	height: 48px;
	margin-top: 5px;
	padding-inline: 12px;
	width: 100%;
}

.login-card .login-remember label {
	align-items: center;
	display: flex;
	gap: 7px;
}

.login-card .button-primary {
	background: var(--blue-700);
	border: 0;
	border-radius: 999px;
	color: #fff;
	font-weight: 750;
	height: 50px;
	width: 100%;
}

.login-card__links {
	display: flex;
	font-size: 0.72rem;
	justify-content: space-between;
	margin-top: 17px;
}

.login-card__secure {
	align-items: center;
	border-top: 1px solid var(--border);
	display: flex;
	gap: 6px;
	justify-content: center;
	margin: 20px 0 0 !important;
	padding-top: 16px;
}

/* Candidate dashboard */
.dashboard-page {
	background: var(--surface-soft);
	min-height: 700px;
}

.dashboard-page__header {
	background: #fff;
	border-bottom: 1px solid var(--border);
	padding-top: 22px;
}

.dashboard-page__header .breadcrumbs {
	margin-bottom: 18px;
}

.dashboard-page__body {
	padding-block: 30px 75px;
}

.candidate-dashboard {
	align-items: start;
	display: grid;
	gap: 24px;
	grid-template-columns: 225px minmax(0, 1fr);
}

.dashboard-sidebar {
	background: var(--navy-950);
	border-radius: var(--radius);
	color: #fff;
	overflow: hidden;
	padding: 20px 13px 13px;
	position: sticky;
	top: 95px;
}

.dashboard-profile {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	gap: 10px;
	margin: 0 7px 14px;
	padding-bottom: 17px;
}

.dashboard-profile__avatar {
	align-items: center;
	background: linear-gradient(145deg, var(--gold-400), var(--gold-600));
	border-radius: 11px;
	color: var(--navy-950);
	display: flex;
	font-weight: 800;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.dashboard-profile > div {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.dashboard-profile strong {
	font-size: 0.79rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dashboard-profile small {
	color: #92adc2;
	font-size: 0.61rem;
}

.dashboard-sidebar nav {
	display: grid;
	gap: 4px;
}

.dashboard-sidebar nav button {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 8px;
	color: #b8ccdc;
	display: flex;
	font-size: 0.72rem;
	font-weight: 650;
	gap: 9px;
	padding: 10px;
	text-align: left;
}

.dashboard-sidebar nav button > span {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	font-size: 0.6rem;
	margin-left: auto;
	padding: 2px 6px;
}

.dashboard-sidebar nav button:hover,
.dashboard-sidebar nav button.is-active {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.dashboard-logout {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #e4b5b5;
	display: flex;
	font-size: 0.7rem;
	gap: 8px;
	margin: 14px 7px 0;
	padding: 15px 3px 4px;
}

.dashboard-content {
	min-width: 0;
}

.dashboard-panel {
	animation: form-step-in 220ms ease;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
}

.dashboard-welcome,
.dashboard-section-heading {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: 22px;
}

.dashboard-welcome h2,
.dashboard-section-heading h2 {
	font-size: 1.55rem;
	margin: 0 0 5px;
}

.dashboard-welcome p,
.dashboard-section-heading p {
	color: var(--muted);
	font-size: 0.77rem;
	margin: 0;
}

.dashboard-stat-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, 1fr);
}

.dashboard-stat-grid article {
	align-items: center;
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 11px;
	display: grid;
	gap: 4px 11px;
	grid-template-columns: auto 1fr;
	padding: 15px;
}

.dashboard-stat-grid article > span {
	align-items: center;
	background: var(--blue-100);
	border-radius: 9px;
	color: var(--blue-700);
	display: flex;
	grid-row: 1 / 3;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.dashboard-stat-grid strong {
	font-size: 1.2rem;
	line-height: 1;
}

.dashboard-stat-grid small {
	color: var(--muted);
	font-size: 0.66rem;
}

.profile-completion {
	align-items: center;
	background: linear-gradient(120deg, var(--blue-50), #fff9e9);
	border: 1px solid #cfe4f1;
	border-radius: 13px;
	display: flex;
	gap: 20px;
	margin: 18px 0 27px;
	padding: 18px;
}

.profile-ring {
	align-items: center;
	background: conic-gradient(var(--blue-600) calc(var(--progress) * 1%), #dce8ef 0);
	border-radius: 50%;
	display: flex;
	flex: 0 0 78px;
	height: 78px;
	justify-content: center;
	position: relative;
	width: 78px;
}

.profile-ring::before {
	background: #fff;
	border-radius: 50%;
	content: "";
	inset: 7px;
	position: absolute;
}

.profile-ring span {
	color: var(--navy-900);
	font-size: 0.86rem;
	font-weight: 800;
	position: relative;
}

.profile-completion h3 {
	font-size: 0.94rem;
	margin: 0 0 4px;
}

.profile-completion p {
	color: var(--muted);
	font-size: 0.7rem;
	margin: 0 0 5px;
}

.dashboard-section-heading h3 {
	font-size: 1rem;
	margin: 0;
}

.application-list {
	display: grid;
	gap: 9px;
}

.application-list article {
	align-items: center;
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 10px;
	display: flex;
	gap: 12px;
	padding: 13px;
}

.application-list article > span:first-child {
	align-items: center;
	background: var(--blue-100);
	border-radius: 8px;
	color: var(--blue-700);
	display: flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.application-list .country-flag {
	height: 31px !important;
	object-fit: cover;
	width: 45px !important;
}

.application-list article > div {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
}

.application-list strong {
	font-size: 0.77rem;
}

.application-list strong a {
	color: var(--navy-900);
}

.application-list small {
	color: var(--muted);
	font-size: 0.63rem;
}

.status-pill {
	background: var(--blue-100);
	border-radius: 999px;
	color: var(--blue-700);
	font-size: 0.59rem;
	padding: 5px 8px;
}

.status-pill--selected,
.status-pill--placed,
.status-pill--shortlisted {
	background: var(--green-100);
	color: var(--green-700);
}

.status-pill--rejected {
	background: var(--red-100);
	color: var(--red-600);
}

.dashboard-empty {
	align-items: center;
	background: var(--surface-soft);
	border-radius: 11px;
	display: flex;
	flex-direction: column;
	padding: 32px;
	text-align: center;
}

.dashboard-empty > span {
	color: var(--blue-700);
}

.dashboard-empty p {
	color: var(--muted);
	font-size: 0.76rem;
	margin: 10px 0 3px;
}

.dashboard-empty a {
	font-size: 0.73rem;
	font-weight: 700;
}

.dashboard-panel .job-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-documents {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, 1fr);
}

.dashboard-documents article {
	align-items: center;
	background: var(--surface-soft);
	border: 1px solid var(--border);
	border-radius: 10px;
	display: flex;
	gap: 11px;
	padding: 14px;
}

.dashboard-documents article > span {
	color: var(--muted);
}

.dashboard-documents article.is-uploaded > span {
	color: var(--green-700);
}

.dashboard-documents article > div {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.dashboard-documents strong {
	font-size: 0.73rem;
}

.dashboard-documents small,
.dashboard-documents a {
	color: var(--muted);
	font-size: 0.62rem;
}

.dashboard-documents a {
	color: var(--blue-700);
	font-weight: 700;
}

.dashboard-profile-form .button {
	margin-top: 22px;
}

.dashboard-password-link {
	font-size: 0.74rem;
	margin-left: 15px;
}

.dashboard-locked {
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	padding: 70px 25px;
	text-align: center;
}

.dashboard-locked > span {
	align-items: center;
	background: var(--blue-100);
	border-radius: 50%;
	color: var(--blue-700);
	display: flex;
	height: 74px;
	justify-content: center;
	width: 74px;
}

.dashboard-locked h2 {
	font-size: 1.5rem;
	margin: 20px 0 8px;
}

.dashboard-locked p {
	color: var(--muted);
	max-width: 560px;
}

.dashboard-locked > div {
	display: flex;
	gap: 10px;
}

/* Standard content, directories, contact, article */
.content-shell {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	max-width: 940px;
	padding: clamp(25px, 5vw, 55px);
}

.directory-toolbar {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 27px;
}

.directory-toolbar h2 {
	font-size: 1.2rem;
	margin: 0;
}

.directory-toolbar label {
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 999px;
	display: flex;
	gap: 7px;
	padding-inline: 13px;
}

.directory-toolbar label > span {
	color: var(--blue-700);
}

.directory-toolbar input {
	border: 0;
	height: 42px;
	outline: 0;
	width: 220px;
}

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

.contact-grid {
	align-items: stretch;
	display: grid;
	gap: 25px;
	grid-template-columns: 1.4fr 0.6fr;
}

.contact-methods {
	display: grid;
	gap: 13px;
	grid-template-columns: repeat(3, 1fr);
}

.contact-methods > a {
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--ink);
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 23px;
}

.contact-methods > a > span {
	align-items: center;
	background: var(--blue-50);
	border-radius: 10px;
	color: var(--blue-700);
	display: flex;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.contact-methods > a > div {
	display: flex;
	flex-direction: column;
}

.contact-methods strong {
	font-size: 0.82rem;
}

.contact-methods small {
	color: var(--muted);
	font-size: 0.7rem;
}

.contact-safety {
	background: #fff8e8;
	border: 1px solid #eed797;
	border-radius: var(--radius);
	color: #72510c;
	padding: 24px;
}

.contact-safety > span {
	color: #9a6b09;
}

.contact-safety h2 {
	color: #654706;
	font-size: 1.05rem;
	margin: 12px 0 7px;
}

.contact-safety p,
.contact-safety a {
	font-size: 0.73rem;
}

.article-hero {
	background:
		radial-gradient(circle at 70% 25%, rgba(21, 147, 232, 0.25), transparent 26%),
		var(--navy-950);
	color: #fff;
	padding-block: 65px 90px;
}

.article-hero h1 {
	color: #fff;
	font-size: clamp(2.5rem, 5vw, 4rem);
}

.article-meta {
	color: #abc2d4;
	font-size: 0.75rem;
}

.article-featured {
	margin-top: -45px;
	position: relative;
}

.article-featured img {
	border: 5px solid #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	width: 100%;
}

.article-body {
	padding-block: 55px 90px;
}

.article-safety-cta {
	align-items: flex-start;
	background: #fff8e8;
	border: 1px solid #efd998;
	border-radius: 12px;
	color: #73520d;
	display: flex;
	gap: 12px;
	margin-top: 38px;
	padding: 18px;
}

.article-safety-cta p {
	font-size: 0.76rem;
	margin: 2px 0 0;
}

.pagination {
	display: flex;
	gap: 7px;
	justify-content: center;
	margin-top: 35px;
}

.pagination .page-numbers {
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 7px;
	color: var(--ink);
	display: flex;
	font-size: 0.75rem;
	height: 39px;
	justify-content: center;
	min-width: 39px;
	padding-inline: 10px;
}

.pagination .current {
	background: var(--blue-700);
	border-color: var(--blue-700);
	color: #fff;
}

.not-found-page {
	align-items: center;
	background: var(--surface-soft);
	display: flex;
	min-height: 650px;
	text-align: center;
}

.not-found-page .container {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.not-found-page__code {
	color: #dfeaf1;
	font-size: 9rem;
	font-weight: 850;
	line-height: 0.8;
}

.not-found-page__icon {
	align-items: center;
	background: var(--blue-700);
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 78px;
	justify-content: center;
	margin-top: -25px;
	width: 78px;
}

.not-found-page h1 {
	font-size: 2rem;
	margin: 25px 0 7px;
}

.not-found-page p {
	color: var(--muted);
	max-width: 560px;
}

.not-found-page > div > div {
	display: flex;
	gap: 10px;
	margin-top: 14px;
}

/* Footer */
.site-footer {
	background: var(--navy-950);
	color: #a9c0d3;
}

.site-footer__newsletter {
	background: var(--navy-900);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-block: 37px;
}

.newsletter-band {
	align-items: center;
	display: grid;
	gap: 50px;
	grid-template-columns: 1fr 0.9fr;
}

.newsletter-band h2 {
	color: #fff;
	font-size: 1.55rem;
	margin: 0 0 5px;
}

.newsletter-band p {
	color: #9db6c9;
	font-size: 0.78rem;
	margin: 0;
}

.inline-alert-form {
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	display: flex;
	padding: 5px;
	position: relative;
}

.inline-alert-form input {
	background: transparent;
	border: 0;
	color: #fff;
	flex: 1;
	height: 43px;
	outline: 0;
	padding-inline: 17px;
}

.inline-alert-form input::placeholder {
	color: #829eb4;
}

.inline-alert-form .form-status {
	left: 0;
	position: absolute;
	right: 0;
	top: calc(100% + 8px);
}

.site-footer__grid {
	display: grid;
	gap: 35px;
	grid-template-columns: 1.35fr 0.85fr 1fr 1fr 1.05fr;
	padding-bottom: 55px;
	padding-top: 58px;
}

.site-footer .site-brand__text strong {
	color: #fff;
}

.footer-logo {
	display: inline-flex;
	max-width: 250px;
}

.footer-logo img {
	height: auto;
	max-width: 100%;
	width: 250px;
}

.footer-about > p {
	font-size: 0.75rem;
	line-height: 1.7;
	margin-top: 19px;
}

.footer-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 16px;
}

.footer-trust span {
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 999px;
	color: #c7d7e3;
	display: flex;
	font-size: 0.64rem;
	gap: 5px;
	padding: 6px 9px;
}

.footer-trust .ijp-icon {
	color: var(--gold-400);
}

.site-footer h2 {
	color: #fff;
	font-size: 0.84rem;
	letter-spacing: 0;
	margin: 5px 0 18px;
}

.site-footer ul {
	display: grid;
	gap: 9px;
	list-style: none;
}

.site-footer li,
.site-footer li a {
	color: #9db4c6;
	font-size: 0.7rem;
}

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

.footer-country-links {
	grid-template-columns: repeat(2, 1fr);
}

.footer-country-links a {
	align-items: center;
	display: flex;
	gap: 6px;
}

.footer-country-links .country-flag {
	border-radius: 2px;
	height: 13px;
	width: 20px;
}

.footer-contact {
	display: flex;
	flex-direction: column;
}

.footer-contact > a:not(.button) {
	align-items: flex-start;
	color: #9db4c6;
	display: flex;
	font-size: 0.7rem;
	gap: 7px;
	margin-bottom: 10px;
	word-break: break-word;
}

.footer-contact .button {
	margin-top: 6px;
}

.site-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	display: flex;
	font-size: 0.65rem;
	justify-content: space-between;
	min-height: 66px;
}

.site-footer__bottom p {
	margin: 0;
}

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

.site-footer__bottom nav a {
	color: #9db4c6;
}

.legal-menu {
	display: flex !important;
	gap: 14px !important;
}

.floating-whatsapp {
	align-items: center;
	background: #0b9f63;
	border-radius: 999px;
	bottom: 24px;
	box-shadow: 0 12px 30px rgba(11, 159, 99, 0.35);
	color: #fff;
	display: flex;
	font-size: 0.72rem;
	font-weight: 800;
	gap: 8px;
	padding: 10px 16px 10px 10px;
	position: fixed;
	right: 23px;
	z-index: 999;
}

.floating-whatsapp:hover {
	background: #088452;
	color: #fff;
	transform: translateY(-2px);
}

.floating-whatsapp > span:first-child {
	align-items: center;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	height: 37px;
	justify-content: center;
	width: 37px;
}

.mobile-bottom-nav {
	display: none;
}

.hp-field {
	height: 0 !important;
	left: -99999px !important;
	opacity: 0 !important;
	position: absolute !important;
	width: 0 !important;
}

/* Motion */
[data-aos] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 500ms ease, transform 500ms ease;
}

[data-aos].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes pin-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(242, 184, 75, 0.4); transform: scale(1); }
	50% { box-shadow: 0 0 0 13px rgba(242, 184, 75, 0); transform: scale(1.06); }
}

@keyframes float-card {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@keyframes urgent-glow {
	0%, 100% { box-shadow: 0 0 0 0 rgba(214, 67, 67, 0); }
	50% { box-shadow: 0 0 0 4px rgba(214, 67, 67, 0.1); }
}

@keyframes skeleton-shimmer {
	to { background-position: -300% 0; }
}

@keyframes form-step-in {
	from { opacity: 0; transform: translateX(12px); }
	to { opacity: 1; transform: translateX(0); }
}

/* Tablet */
@media (max-width: 1180px) {
	.desktop-nav {
		display: none;
	}

	.mobile-menu-toggle {
		display: inline-flex;
	}

	.header-login {
		display: none;
	}

	.mobile-drawer-backdrop {
		background: rgba(4, 27, 49, 0.6);
		inset: 0;
		opacity: 0;
		position: fixed;
		pointer-events: none;
		transition: opacity 200ms ease;
		z-index: 1090;
	}

	.mobile-drawer {
		background: #fff;
		bottom: 0;
		display: flex;
		flex-direction: column;
		max-width: 390px;
		overflow-y: auto;
		padding: 20px;
		position: fixed;
		right: 0;
		top: 0;
		transform: translateX(100%);
		transition: transform 240ms ease;
		width: 90vw;
		z-index: 1100;
	}

	.drawer-open .mobile-drawer {
		transform: translateX(0);
	}

	.drawer-open .mobile-drawer-backdrop {
		opacity: 1;
		pointer-events: auto;
	}

	.mobile-drawer__header {
		align-items: center;
		border-bottom: 1px solid var(--border);
		display: flex;
		justify-content: space-between;
		padding-bottom: 15px;
	}

	.mobile-drawer__header > button {
		align-items: center;
		background: var(--surface-soft);
		border: 0;
		border-radius: 50%;
		display: flex;
		height: 38px;
		justify-content: center;
		width: 38px;
	}

	.mobile-menu {
		display: grid;
		list-style: none;
		margin-top: 15px;
	}

	.mobile-menu a {
		border-bottom: 1px solid var(--border);
		color: var(--ink);
		display: block;
		font-size: 0.86rem;
		font-weight: 650;
		padding: 12px 5px;
	}

	.mobile-menu .sub-menu {
		list-style: none;
		padding-left: 15px;
	}

	.mobile-country-list {
		margin-top: 22px;
	}

	.mobile-country-list > strong {
		font-size: 0.78rem;
	}

	.mobile-country-list > div {
		display: grid;
		gap: 8px;
		grid-template-columns: repeat(2, 1fr);
		margin-top: 11px;
	}

	.mobile-country-list a {
		align-items: center;
		background: var(--surface-soft);
		border-radius: 8px;
		color: var(--ink);
		display: flex;
		font-size: 0.7rem;
		gap: 7px;
		padding: 8px;
	}

	.mobile-country-list .country-flag {
		height: 18px;
		width: 27px;
	}

	.mobile-drawer__actions {
		display: grid;
		gap: 9px;
		margin-top: auto;
		padding-top: 25px;
	}

	.hero__inner {
		grid-template-columns: 1fr 0.85fr;
	}

	.world-globe {
		width: 330px;
	}

	.world-orbit--outer {
		height: 380px;
		width: 380px;
	}

	.world-orbit--inner {
		height: 280px;
		width: 280px;
	}

	.floating-job--one {
		left: -20px;
	}

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

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

	.process-timeline {
		gap: 23px 10px;
		grid-template-columns: repeat(4, 1fr);
	}

	.process-timeline::before {
		display: none;
	}

	.statistics__grid {
		gap: 20px 0;
		grid-template-columns: repeat(3, 1fr);
	}

	.statistics__grid > div:nth-child(3) {
		border-right: 0;
	}

	.employer-section__inner {
		gap: 55px;
	}

	.site-footer__grid {
		grid-template-columns: 1.3fr repeat(2, 1fr);
	}

	.footer-about {
		grid-row: span 2;
	}
}

@media (max-width: 900px) {
	.section {
		padding-block: 72px;
	}

	.hero {
		min-height: auto;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		padding-bottom: 25px;
	}

	.hero__content {
		max-width: 720px;
	}

	.hero__visual {
		display: none;
	}

	.hero__search-wrap {
		margin-bottom: -45px;
	}

	.hero-search {
		grid-template-columns: 1fr 1fr;
	}

	.hero-search__field--keyword {
		grid-column: 1 / -1;
	}

	.hero-search__field:nth-child(3) {
		border-right: 0;
	}

	.hero-search__submit {
		grid-column: 1 / -1;
		margin: 3px 0 0;
	}

	.trust-strip {
		padding-top: 72px;
	}

	.trust-strip__grid {
		gap: 15px 0;
		grid-template-columns: repeat(2, 1fr);
	}

	.trust-strip__grid > div:nth-child(2) {
		border-right: 0;
	}

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

	.why-section__grid,
	.employer-section__inner,
	.faq-preview__grid,
	.career-cta__inner,
	.page-hero__split,
	.newsletter-band {
		grid-template-columns: 1fr;
	}

	.why-section__content {
		max-width: 720px;
	}

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

	.employer-section__visual {
		max-width: 600px;
	}

	.career-cta__inner > div:last-child {
		justify-content: flex-start;
	}

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

	.job-hero__facts > div:nth-child(3) {
		border-right: 0;
	}

	.job-detail-layout {
		grid-template-columns: 1fr;
	}

	.application-sidebar {
		position: static;
	}

	.application-card {
		max-width: 650px;
	}

	.jobs-layout {
		grid-template-columns: 1fr;
	}

	.job-filters {
		border-radius: 0;
		bottom: 0;
		left: 0;
		max-width: 360px;
		overflow-y: auto;
		position: fixed;
		top: 0;
		transform: translateX(-100%);
		transition: transform 220ms ease;
		width: 88vw;
		z-index: 1100;
	}

	.job-filters.is-open {
		transform: translateX(0);
	}

	.job-filters__mobile-close {
		align-items: center;
		background: var(--surface-soft);
		border: 0;
		border-radius: 50%;
		display: flex;
		height: 35px;
		justify-content: center;
		position: absolute;
		right: 14px;
		top: 12px;
		width: 35px;
	}

	.filter-mobile-toggle {
		align-items: center;
		background: var(--blue-50);
		border: 1px solid #cce5f4;
		border-radius: 8px;
		color: var(--blue-700);
		display: inline-flex;
		font-size: 0.72rem;
		font-weight: 700;
		gap: 6px;
		margin-bottom: 8px;
		padding: 7px 10px;
	}

	.employer-form-layout {
		grid-template-columns: 1fr;
	}

	.employer-form-aside {
		position: static;
	}

	.login-page {
		background: linear-gradient(var(--navy-950) 0 47%, var(--surface-soft) 47%);
	}

	.login-layout {
		gap: 55px;
		grid-template-columns: 1fr;
	}

	.login-story {
		padding-top: 35px;
	}

	.login-card {
		margin-inline: auto;
		max-width: 520px;
		width: 100%;
	}

	.candidate-dashboard {
		grid-template-columns: 1fr;
	}

	.dashboard-sidebar {
		position: static;
	}

	.dashboard-sidebar nav {
		grid-template-columns: repeat(5, 1fr);
	}

	.dashboard-sidebar nav button {
		justify-content: center;
	}

	.dashboard-sidebar nav button .ijp-icon {
		display: none;
	}

	.dashboard-logout {
		justify-content: center;
	}

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

/* Mobile */
@media (max-width: 640px) {
	body {
		font-size: 15px;
		padding-bottom: 66px;
	}

	.container {
		padding-inline: 17px;
	}

	.site-topbar__contacts a:nth-child(2),
	.site-topbar__contacts > span,
	.site-topbar__extras > span,
	.site-topbar__contacts a span {
		display: none;
	}

	.site-topbar__inner {
		justify-content: space-between;
	}

	.site-topbar__contacts a:first-child span {
		display: inline;
	}

	.site-header,
	.site-header.is-scrolled {
		height: 66px;
	}

	.site-brand__mark {
		border-radius: 10px;
		height: 38px;
		width: 38px;
	}

	.site-brand__text strong {
		font-size: 1rem;
	}

	.site-brand__text small {
		font-size: 0.58rem;
	}

	.site-header__actions .button {
		display: none;
	}

	.section {
		padding-block: 58px;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 27px;
	}

	.section-heading h2 {
		font-size: 2rem;
	}

	.hero__inner {
		min-height: auto;
		padding-bottom: 22px;
		padding-top: 45px;
	}

	.hero h1 {
		font-size: 3rem;
	}

	.hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero__actions .button {
		width: 100%;
	}

	.hero__proof {
		margin-bottom: 5px;
	}

	.hero-search {
		display: grid;
		grid-template-columns: 1fr;
		padding: 9px;
	}

	.hero-search__field,
	.hero-search__field--keyword {
		border-bottom: 1px solid var(--border);
		border-right: 0;
		grid-column: auto;
		padding-block: 9px 10px;
	}

	.hero-search__submit {
		grid-column: auto;
	}

	.hero__popular {
		display: none;
	}

	.trust-strip {
		padding-bottom: 16px;
		padding-top: 67px;
	}

	.trust-strip__grid {
		grid-template-columns: 1fr;
	}

	.trust-strip__grid > div {
		border-bottom: 1px solid var(--border);
		border-right: 0;
		padding: 10px 0;
	}

	.trust-strip__grid > div:last-child {
		border-bottom: 0;
	}

	.country-grid,
	.category-grid,
	.job-grid,
	.job-results__grid,
	.office-grid,
	.blog-grid,
	.contact-methods,
	.category-grid--directory {
		grid-template-columns: 1fr;
	}

	.country-card {
		min-height: 245px;
	}

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

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

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

	.statistics__grid > div:nth-child(3) {
		border-right: 1px solid rgba(255, 255, 255, 0.16);
	}

	.statistics__grid > div:nth-child(even) {
		border-right: 0;
	}

	.statistics strong {
		font-size: 1.7rem;
	}

	.job-tabs {
		width: 100%;
	}

	.job-tabs button {
		flex: 1;
	}

	.employer-section__visual {
		min-height: 390px;
		padding: 48px 19px;
	}

	.talent-stack > div:nth-child(2) {
		margin-left: 13px;
		margin-right: -8px;
	}

	.testimonial-card {
		flex-basis: 100%;
	}

	.faq-preview__grid,
	.employer-section__inner {
		gap: 40px;
	}

	.career-cta {
		padding-block: 57px;
	}

	.career-cta__inner {
		gap: 28px;
	}

	.career-cta__inner > div:last-child {
		align-items: stretch;
		flex-direction: column;
	}

	.page-hero {
		padding-block: 45px 55px;
	}

	.page-hero h1,
	.page-hero--compact h1 {
		font-size: 2.45rem;
	}

	.page-hero__content {
		align-items: flex-start;
		flex-direction: column;
	}

	.page-hero__stats {
		flex-basis: auto;
		width: 100%;
	}

	.archive-search {
		grid-template-columns: 1fr;
		margin-bottom: -170px;
	}

	.jobs-layout {
		padding-top: 128px;
	}

	.job-results__toolbar {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.results-view {
		justify-content: space-between;
		width: 100%;
	}

	.job-hero {
		padding-top: 25px;
	}

	.job-hero__grid,
	.job-hero__main {
		align-items: flex-start;
		flex-direction: column;
	}

	.job-hero__brand {
		height: 63px;
		width: 63px;
	}

	.job-hero__actions {
		width: 100%;
	}

	.job-hero__actions > * {
		flex: 1;
	}

	.job-hero__facts {
		grid-template-columns: 1fr 1fr;
	}

	.job-hero__facts > div,
	.job-hero__facts > div:nth-child(3) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		border-right: 1px solid rgba(255, 255, 255, 0.12);
		padding: 13px;
	}

	.job-hero__facts > div:nth-child(even) {
		border-right: 0;
	}

	.job-hero__facts > div:last-child {
		border-bottom: 0;
		grid-column: 1 / -1;
	}

	.job-detail-layout {
		padding-top: 35px;
	}

	.job-content-section,
	.recruitment-mini-process {
		padding: 20px;
	}

	.detail-table {
		grid-template-columns: 1fr;
	}

	.detail-table > div:nth-last-child(-n+2) {
		border-bottom: 1px solid var(--border);
	}

	.detail-table > div:last-child {
		border-bottom: 0;
	}

	.recruitment-mini-process > div {
		align-items: stretch;
		display: grid;
		gap: 11px;
		grid-template-columns: 1fr 1fr;
	}

	.recruitment-mini-process i {
		display: none;
	}

	.form-row,
	.form-grid,
	.document-grid,
	.dashboard-documents,
	.dashboard-stat-grid,
	.dashboard-panel .job-grid {
		grid-template-columns: 1fr;
	}

	.form-shell,
	.login-card,
	.dashboard-panel {
		border-radius: 14px;
		padding: 20px;
	}

	.form-progress ol {
		gap: 5px;
	}

	.form-progress li {
		flex-direction: column;
		text-align: center;
	}

	.form-progress li div {
		display: none;
	}

	.form-step__actions {
		gap: 8px;
	}

	.form-step__actions .button {
		padding-inline: 14px;
	}

	.form-help-strip {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.employer-benefit-grid {
		grid-template-columns: 1fr 1fr;
	}

	.login-layout {
		gap: 35px;
		padding-block: 45px;
	}

	.login-story h1 {
		font-size: 2.6rem;
	}

	.dashboard-sidebar nav {
		grid-template-columns: repeat(2, 1fr);
	}

	.dashboard-welcome,
	.dashboard-section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.profile-completion {
		align-items: flex-start;
		flex-direction: column;
	}

	.application-list article {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.status-pill {
		margin-left: 52px;
	}

	.directory-toolbar {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.directory-toolbar label,
	.directory-toolbar input {
		width: 100%;
	}

	.site-footer__newsletter {
		padding-bottom: 55px;
	}

	.inline-alert-form {
		align-items: stretch;
		background: transparent;
		border: 0;
		border-radius: 0;
		flex-direction: column;
		gap: 9px;
	}

	.inline-alert-form input {
		background: rgba(255, 255, 255, 0.08);
		border: 1px solid rgba(255, 255, 255, 0.14);
		border-radius: 9px;
		flex: auto;
	}

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

	.footer-about,
	.footer-contact {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		padding-block: 16px;
	}

	.floating-whatsapp {
		bottom: 77px;
		padding: 8px;
		right: 13px;
	}

	.floating-whatsapp > span:last-child {
		display: none;
	}

	.mobile-bottom-nav {
		align-items: center;
		background: #fff;
		border-top: 1px solid var(--border);
		bottom: 0;
		box-shadow: 0 -7px 23px rgba(4, 27, 49, 0.08);
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		left: 0;
		min-height: 65px;
		position: fixed;
		right: 0;
		z-index: 1000;
	}

	.mobile-bottom-nav a {
		align-items: center;
		color: var(--muted);
		display: flex;
		flex-direction: column;
		font-size: 0.54rem;
		gap: 3px;
		justify-content: center;
	}

	.mobile-bottom-nav a:hover {
		color: var(--blue-700);
	}

	.mobile-bottom-nav__whatsapp {
		color: var(--green-700) !important;
	}

	.mobile-apply-bar {
		align-items: center;
		background: #fff;
		border-top: 1px solid var(--border);
		bottom: 65px;
		box-shadow: 0 -7px 23px rgba(4, 27, 49, 0.1);
		display: flex;
		justify-content: space-between;
		left: 0;
		padding: 9px 14px;
		position: fixed;
		right: 0;
		z-index: 999;
	}

	.mobile-apply-bar > div {
		display: flex;
		flex-direction: column;
	}

	.mobile-apply-bar small {
		color: var(--muted);
		font-size: 0.59rem;
	}

	.mobile-apply-bar strong {
		font-size: 0.78rem;
	}

	.has-mobile-apply-bar {
		padding-bottom: 126px;
	}
}

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

	[data-aos] {
		opacity: 1;
		transform: none;
	}
}
