/* ==========================================================================
   RANS Group — main.css
   Premium design system: deep navy + gold, Fraunces/Manrope.
   Mobile-first, responsive.
   ========================================================================== */

:root {
	--navy-950: #060f1f;
	--navy-900: #0a1a33;
	--navy-800: #0f2447;
	--navy-700: #14305c;
	--navy-600: #1d3f77;
	--gold: #c9a227;
	--gold-strong: #d8b23a;
	--gold-soft: #f0cf70;
	--cream: #f6f4ee;
	--cream-2: #efece2;
	--ink: #182338;
	--muted: #5d6b80;
	--line: #e4e0d4;
	--white: #ffffff;
	--shadow-sm: 0 4px 16px rgba(10, 26, 51, 0.08);
	--shadow-md: 0 14px 44px rgba(10, 26, 51, 0.14);
	--shadow-lg: 0 30px 70px rgba(6, 15, 31, 0.32);
	--radius: 16px;
	--radius-sm: 10px;
	--font-head: 'Fraunces', Georgia, serif;
	--font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--container: 1240px;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16.5px;
	line-height: 1.7;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--navy-800);
	text-decoration: none;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	font-weight: 600;
	line-height: 1.18;
	margin: 0 0 0.6em;
	color: var(--navy-900);
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 1em;
}

ul, ol {
	margin: 0 0 1em;
	padding-left: 1.25em;
}

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

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

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	background: var(--gold);
	color: var(--navy-950);
	padding: 10px 18px;
}

.skip-link:focus {
	left: 0;
}

::selection {
	background: var(--gold-soft);
	color: var(--navy-900);
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	padding: 14px 26px;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.28s ease;
	line-height: 1.2;
	text-align: center;
}

.btn svg {
	width: 18px;
	height: 18px;
}

.btn-gold {
	background: linear-gradient(135deg, var(--gold-strong), var(--gold));
	color: var(--navy-950);
	box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(201, 162, 39, 0.45);
	color: var(--navy-950);
}

.btn-ghost {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
	border-color: var(--gold-strong);
	color: var(--gold-strong);
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	color: var(--navy-800);
	border-color: var(--navy-800);
}

.btn-outline:hover {
	background: var(--navy-800);
	color: var(--white);
	transform: translateY(-2px);
}

.btn-outline-light {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
	background: var(--white);
	color: var(--navy-900);
	transform: translateY(-2px);
}

.btn-sm {
	padding: 10px 18px;
	font-size: 0.85rem;
}

.btn-lg {
	padding: 17px 34px;
	font-size: 1.02rem;
}

/* ---------- Section chrome ---------- */
.section {
	padding: 96px 0;
}

.section--dark {
	background: var(--navy-900);
	color: rgba(255, 255, 255, 0.86);
}

.section--dark .section-title {
	color: var(--white);
}

.section--dark .section-subtitle {
	color: rgba(255, 255, 255, 0.68);
}

.section--md {
	background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
	color: var(--white);
}

.section-head {
	max-width: 720px;
	margin: 0 auto 56px;
	text-align: center;
}

.section-head--left {
	margin-left: 0;
	text-align: left;
}

.eyebrow {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 14px;
}

.section-title {
	font-size: clamp(1.9rem, 3.6vw, 3rem);
	margin-bottom: 16px;
}

.section-subtitle {
	font-size: 1.06rem;
	color: var(--muted);
}

.center-cta {
	text-align: center;
	margin-top: 40px;
}

.block-note {
	text-align: center;
	color: var(--muted);
	background: var(--cream);
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	padding: 28px;
}

/* ---------- Top bar ---------- */
.topbar {
	background: var(--navy-950);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.8rem;
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 40px;
	gap: 16px;
}

.topbar-left,
.topbar-right {
	display: flex;
	align-items: center;
	gap: 18px;
}

.topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.topbar-item svg {
	width: 14px;
	height: 14px;
	color: var(--gold);
}

.topbar-item a {
	color: rgba(255, 255, 255, 0.85);
}

.topbar-item a:hover {
	color: var(--gold-soft);
}

.topbar-badge {
	color: var(--gold-soft);
	font-weight: 600;
	letter-spacing: 0.05em;
}

.topbar-social {
	color: rgba(255, 255, 255, 0.7);
	display: inline-flex;
}

.topbar-social svg {
	width: 15px;
	height: 15px;
}

.topbar-social:hover {
	color: var(--gold-soft);
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(10, 26, 51, 0.92);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
	background: rgba(8, 20, 40, 0.97);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 78px;
}

.brand {
	display: inline-flex;
	flex-direction: column;
	line-height: 1.05;
}

.brand .site-logo {
	max-height: 54px;
	width: auto;
}

.brand-text .brand-name {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.7rem;
	color: var(--white);
	letter-spacing: 0.04em;
}

.brand-text .brand-name em {
	font-style: normal;
	color: var(--gold-strong);
}

.brand-text .brand-tag {
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 4px;
}

/* Navigation */
.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 4px;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	padding: 12px 15px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	border-radius: 8px;
}

.main-navigation a:hover {
	color: var(--gold-soft);
	background: rgba(255, 255, 255, 0.06);
}

/* Dropdown */
.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: var(--navy-950);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 10px;
	flex-direction: column;
	gap: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all 0.28s ease;
	box-shadow: var(--shadow-lg);
	z-index: 50;
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(4px);
}

.main-navigation .sub-menu a {
	padding: 10px 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.82);
	white-space: nowrap;
}

.main-navigation .sub-menu a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: var(--gold-soft);
}

.main-navigation .menu-item-has-children > a::after {
	content: '▾';
	margin-left: 7px;
	font-size: 0.7rem;
	color: var(--gold);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	cursor: pointer;
	padding: 10px;
}

.nav-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--white);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--navy-950);
	color: var(--white);
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(52% 60% at 78% 20%, rgba(29, 63, 119, 0.85), transparent 60%),
		radial-gradient(46% 55% at 12% 82%, rgba(20, 48, 92, 0.9), transparent 62%),
		linear-gradient(160deg, var(--navy-900) 0%, var(--navy-950) 78%);
}

.hero-grid-overlay {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 74%);
	opacity: 0;
}

.hero-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 120px 24px 140px;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 34px;
}

.hero-line {
	width: 46px;
	height: 1px;
	background: var(--gold);
}

.hero-eyebrow-text {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-soft);
}

.hero-title {
	margin: 0 0 26px;
	perspective: 1000px;
}

.js .hero-title {
	opacity: 0;
}

.hero-title.is-settled {
	opacity: 1;
}

.hero-name-line {
	display: block;
	line-height: 1.02;
}

.hero-name-line--2 {
	margin-top: 2px;
}

.letter-wrap {
	display: inline-block;
	perspective: 900px;
}

.letter {
	display: inline-block;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(4.2rem, 14vw, 11.5rem);
	line-height: 1;
	color: var(--white);
	text-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	will-change: transform, opacity;
}

.hero-name-line:first-child .letter {
	background: linear-gradient(180deg, var(--gold-soft), var(--gold));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-tagline {
	margin: 0 0 20px;
	font-family: var(--font-head);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(1.3rem, 2.6vw, 2rem);
	color: var(--gold-soft);
}

.js .hero-tagline {
	opacity: 0;
}

.hero-sub {
	max-width: 620px;
	margin: 0 auto 40px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.04rem;
}

.hero-actions {
	display: flex;
	gap: 18px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 34px;
	transform: translateX(-50%);
	width: 24px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 14px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}

.js .hero-scroll {
	opacity: 0;
}

.hero-scroll-dot {
	width: 4px;
	height: 8px;
	border-radius: 4px;
	background: var(--gold);
	animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
	0% { transform: translateY(0); opacity: 1; }
	70% { transform: translateY(12px); opacity: 0; }
	100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Stats bar ---------- */
.stats-section {
	background: var(--navy-900);
	padding: 0;
	margin-top: -56px;
	position: relative;
	z-index: 5;
}

.stats-section .container {
	padding: 0;
}

.stats-bar {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 8px;
}

.stats-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	overflow: hidden;
	border-radius: var(--radius);
}

.stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 34px 20px;
	text-align: center;
	position: relative;
}

.stat + .stat::before {
	content: '';
	position: absolute;
	left: 0;
	top: 24%;
	height: 52%;
	width: 1px;
	background: var(--line);
}

.stat-value {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	color: var(--navy-900);
}

.stat-label {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--muted);
	letter-spacing: 0.04em;
}

/* ---------- About teaser ---------- */
.about-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.about-card {
	display: block;
	border-radius: 22px;
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	height: 100%;
}

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

.about-card-media {
	position: relative;
	padding: 44px 38px;
	min-height: 220px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.about-card--group .about-card-media {
	background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
}

.about-card--roa .about-card-media {
	background: linear-gradient(135deg, var(--navy-600), var(--navy-900));
}

.about-card-media::after {
	content: '';
	position: absolute;
	right: -40px;
	top: -40px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 26px solid rgba(255, 255, 255, 0.05);
}

.about-card-index {
	position: absolute;
	top: 26px;
	right: 30px;
	font-family: var(--font-head);
	font-size: 2.6rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.16);
}

.about-card-title {
	color: var(--white);
	font-size: 1.7rem;
	margin: 0;
}

.about-card-title span {
	color: var(--gold-soft);
	display: block;
	font-size: 1.05rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 700;
	margin-top: 6px;
}

.about-card-body {
	padding: 30px 34px 34px;
}

.about-card-body p {
	color: var(--muted);
	margin-bottom: 18px;
}

.about-card-link {
	font-weight: 800;
	color: var(--navy-800);
}

.about-card:hover .about-card-link {
	color: var(--gold-strong);
}

/* ---------- Country cards ---------- */
.country-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.country-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: var(--navy-800);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	padding: 30px;
	overflow: hidden;
	transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
	min-height: 150px;
}

.country-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 120% at 100% 0%, rgba(216, 178, 58, 0.18), transparent 55%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.country-card:hover {
	transform: translateY(-6px);
	border-color: var(--gold);
}

.country-card:hover::before {
	opacity: 1;
}

.country-flag {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 2.1rem;
	line-height: 1;
	color: rgba(255, 255, 255, 0.14);
	margin-bottom: 6px;
	will-change: transform;
}

.country-name {
	color: var(--white);
	font-family: var(--font-head);
	font-size: 1.3rem;
	font-weight: 600;
}

.country-jobs {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
}

.country-link {
	margin-top: auto;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--gold-soft);
}

.country-card--lg {
	flex-direction: row;
	align-items: center;
	gap: 22px;
	min-height: 130px;
	background: var(--cream);
	border-color: var(--line);
}

.country-card--lg .country-flag {
	color: var(--navy-700);
	font-size: 2.6rem;
}

.country-card--lg .country-name {
	color: var(--navy-900);
}

.country-card--lg .country-jobs {
	color: var(--muted);
}

.country-card--lg .country-link {
	color: var(--navy-800);
}

.countries-all {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 44px;
}

/* ---------- Logo marquee ---------- */
.logo-marquee {
	overflow: hidden;
	position: relative;
	padding: 10px 0;
	mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.logo-marquee.paused .logo-track {
	animation-play-state: paused;
}

.logo-track {
	display: flex;
	gap: 48px;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
	width: max-content;
	animation: marquee 30s linear infinite;
}

.logo-item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	padding: 6px 18px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--white);
}

.client-logo {
	max-height: 52px;
	width: auto;
	filter: grayscale(1);
	opacity: 0.72;
	transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-item:hover .client-logo {
	filter: grayscale(0);
	opacity: 1;
}

.client-name-fallback {
	font-family: var(--font-head);
	font-weight: 600;
	color: var(--navy-800);
	font-size: 1.05rem;
	white-space: nowrap;
}

@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ---------- Industries grid ---------- */
.industries-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.industry-card {
	background: var(--navy-800);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	padding: 28px 24px;
	transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.industry-card:hover {
	transform: translateY(-6px);
	border-color: var(--gold);
	background: var(--navy-700);
}

.industry-icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(216, 178, 58, 0.14);
	color: var(--gold-strong);
	margin-bottom: 18px;
}

.industry-icon svg {
	width: 26px;
	height: 26px;
}

.industry-name {
	color: var(--white);
	font-size: 1.12rem;
	margin-bottom: 8px;
}

.industry-card p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.88rem;
	margin: 0;
}

/* On light page, industries grid inherits dark cards — fine. */
/* ---------- Demand gallery ---------- */
.demand-marquee {
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.demand-marquee.paused .demand-track {
	animation-play-state: paused;
}

.demand-track {
	display: flex;
	gap: 20px;
	width: max-content;
	animation: marquee 34s linear infinite;
}

.demand-item {
	margin: 0;
	flex-shrink: 0;
	width: 320px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.demand-item img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.demand-item:hover img {
	transform: scale(1.06);
}

.demand-item figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px 16px 12px;
	background: linear-gradient(transparent, rgba(6, 15, 31, 0.85));
	color: var(--white);
	font-size: 0.85rem;
	font-weight: 600;
}

.demand-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 48px;
}

.demand-grid-item {
	border-radius: var(--radius-sm);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.demand-grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.demand-grid-item:hover img {
	transform: scale(1.07);
}

/* Placeholder thumbs */
.gallery-thumb--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	aspect-ratio: 4 / 3;
	border: 1px dashed rgba(255, 255, 255, 0.3);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
	padding: 18px;
}

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

.gallery-thumb {
	border-radius: var(--radius-sm);
	overflow: hidden;
	display: block;
	aspect-ratio: 4 / 3;
}

.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-thumb:hover img {
	transform: scale(1.06);
}

/* ---------- MD teaser ---------- */
.md-teaser-inner {
	max-width: 820px;
	text-align: center;
}

.md-quote {
	position: relative;
}

.md-quote-mark {
	font-family: var(--font-head);
	font-size: 5rem;
	color: var(--gold);
	opacity: 0.9;
	line-height: 0.6;
	display: block;
	margin-bottom: 20px;
}

.md-quote blockquote {
	margin: 0 0 28px;
	font-family: var(--font-head);
	font-size: clamp(1.4rem, 2.6vw, 2rem);
	line-height: 1.45;
	color: var(--white);
}

.md-signature {
	font-size: 1.05rem;
	color: var(--gold-soft);
	margin-bottom: 30px;
}

.md-signature span {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

/* ---------- Dual CTA ---------- */
.dual-cta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
	max-width: 980px;
	margin: 0 auto;
}

.cta-card {
	border-radius: 22px;
	padding: 46px 42px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.cta-candidate {
	background: linear-gradient(135deg, var(--gold-strong), var(--gold));
	color: var(--navy-950);
}

.cta-candidate .cta-title {
	color: var(--navy-950);
}

.cta-candidate p {
	color: rgba(6, 15, 31, 0.75);
}

.cta-employer {
	background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
	color: var(--white);
}

.cta-employer .cta-title {
	color: var(--white);
}

.cta-employer p {
	color: rgba(255, 255, 255, 0.72);
}

.cta-title {
	font-size: 1.5rem;
	margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--navy-950);
	color: rgba(255, 255, 255, 0.68);
	border-top: 3px solid var(--gold);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 44px;
	padding: 72px 0 56px;
}

.footer-col p {
	font-size: 0.92rem;
}

.footer-title {
	color: var(--white);
	font-size: 1.05rem;
	margin-bottom: 22px;
	position: relative;
	padding-bottom: 12px;
}

.footer-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 34px;
	height: 2px;
	background: var(--gold);
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col a {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.92rem;
}

.footer-col a:hover {
	color: var(--gold-soft);
}

.footer-cert {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 12px 18px;
	margin-top: 8px;
}

.cert-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--gold-strong), var(--gold));
	color: var(--navy-950);
	font-weight: 800;
	font-size: 0.8rem;
	padding: 7px 13px;
	border-radius: 8px;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.cert-badge--lg {
	font-size: 0.95rem;
	padding: 10px 18px;
}

.cert-sub {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.6);
}

.footer-contact li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.footer-contact svg {
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	margin-top: 4px;
	color: var(--gold);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 22px 0;
	font-size: 0.85rem;
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-bottom p {
	margin: 0;
}

.footer-credit a {
	color: var(--gold-soft);
}

.credit-name {
	color: var(--gold-soft);
	font-weight: 700;
}

.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 800;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
	animation: floatY 3s ease-in-out infinite;
}

.whatsapp-float svg {
	width: 30px;
	height: 30px;
}

.whatsapp-float:hover {
	transform: scale(1.08);
	color: var(--white);
}

@keyframes floatY {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
	position: relative;
	background:
		radial-gradient(50% 90% at 85% 0%, rgba(29, 63, 119, 0.8), transparent 60%),
		linear-gradient(150deg, var(--navy-900), var(--navy-950));
	padding: 84px 0 96px;
	color: var(--white);
	text-align: center;
	overflow: hidden;
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 56px 56px;
}

.page-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 820px;
}

.page-hero-title {
	color: var(--white);
	font-size: clamp(2.1rem, 4.4vw, 3.4rem);
	margin-bottom: 14px;
}

.page-hero-sub {
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.1rem;
	margin: 0;
}

.page-hero--md {
	background:
		radial-gradient(46% 90% at 15% 10%, rgba(216, 178, 58, 0.16), transparent 60%),
		linear-gradient(150deg, var(--navy-800), var(--navy-950));
}

.page-hero--roa {
	background:
		radial-gradient(50% 90% at 85% 0%, rgba(216, 178, 58, 0.14), transparent 60%),
		linear-gradient(150deg, var(--navy-700), var(--navy-950));
}

.page-body {
	padding: 72px 0 96px;
}

.section-title-inline {
	font-size: 1.7rem;
	margin: 0 0 22px;
	padding-bottom: 14px;
	position: relative;
}

.section-title-inline::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 44px;
	height: 3px;
	background: var(--gold);
}

.entry-content > * {
	max-width: 820px;
}

.entry-content > .alignwide,
.entry-content > .alignfull {
	max-width: none;
}

/* ---------- About pages ---------- */
.about-layout {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 56px;
}

.about-aside {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.about-aside-box {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 26px;
}

.about-aside-box .stat-value {
	font-size: 2rem;
}

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

.vertical-card {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px 24px;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.vertical-card:hover {
	transform: translateY(-4px);
	border-color: var(--gold);
}

.vertical-card h3 {
	font-size: 1.12rem;
	margin-bottom: 8px;
}

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

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

.award-item {
	background: var(--navy-800);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	padding: 30px 28px;
}

.award-icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(216, 178, 58, 0.14);
	color: var(--gold-strong);
	margin-bottom: 16px;
}

.award-icon svg {
	width: 28px;
	height: 28px;
}

.award-item h3 {
	color: var(--white);
	font-size: 1.15rem;
}

.award-item p {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.92rem;
	margin: 0;
}

.roa-badge-row {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 44px;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px 28px;
}

.branch-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
}

.branch-list li {
	background: var(--navy-800);
	color: var(--white);
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 600;
}

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

.muted-note {
	color: var(--muted);
	font-size: 0.92rem;
}

/* ---------- Services ---------- */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 44px;
}

.service-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px 28px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
	display: inline-flex;
	width: 54px;
	height: 54px;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(201, 162, 39, 0.14);
	color: var(--navy-800);
	margin-bottom: 18px;
}

.service-icon svg {
	width: 27px;
	height: 27px;
}

.service-card h3 {
	font-size: 1.18rem;
	margin-bottom: 10px;
}

.service-card p {
	color: var(--muted);
	font-size: 0.94rem;
	margin: 0;
}

/* ---------- Selection process ---------- */
.selection-steps {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 44px;
}

.selection-step {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px 26px;
}

.selection-num {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--navy-900);
	color: var(--gold-soft);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.2rem;
}

.selection-step h3 {
	font-size: 1.12rem;
	margin-bottom: 6px;
}

.selection-step p {
	color: var(--muted);
	font-size: 0.93rem;
	margin: 0;
}

/* Process steps (ROA page) */
.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.process-step {
	background: var(--navy-800);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	padding: 30px 26px;
}

.process-num {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 2rem;
	color: var(--gold);
	display: block;
	margin-bottom: 14px;
}

.process-step h3 {
	color: var(--white);
	font-size: 1.1rem;
}

.process-step p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	margin: 0;
}

/* ---------- Credentials ---------- */
.credentials-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin: 44px 0;
}

.credential-item {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px 20px;
	text-align: center;
	transition: transform 0.3s ease, border-color 0.3s ease;
}

.credential-item:hover {
	transform: translateY(-4px);
	border-color: var(--gold);
}

.credential-item h3 {
	font-size: 1.05rem;
	margin-bottom: 6px;
}

.credential-item p {
	font-size: 0.82rem;
	color: var(--muted);
	margin: 0;
}

.credential-note {
	background: var(--navy-900);
	border-radius: var(--radius);
	padding: 30px 34px;
	color: rgba(255, 255, 255, 0.78);
}

.credential-note p {
	margin: 0;
	font-size: 1rem;
}

/* ---------- MD message ---------- */
.md-layout {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 40px;
	align-items: start;
}

.md-message-card {
	position: relative;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 48px 46px;
}

.md-message-card .md-quote-mark {
	position: absolute;
	top: 6px;
	left: 26px;
	opacity: 0.18;
}

.md-message-content p {
	font-size: 1.06rem;
	line-height: 1.85;
}

.md-message-card .md-signature {
	color: var(--navy-900);
	margin-top: 26px;
}

.md-aside-card {
	background: var(--navy-900);
	border-radius: 22px;
	padding: 34px 30px;
	color: var(--white);
	position: sticky;
	top: 100px;
}

.md-aside-card h3 {
	color: var(--white);
	font-size: 1.25rem;
}

.md-aside-card p {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 16px;
}

/* ---------- Job openings ---------- */
.jobs-layout {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 36px;
	align-items: start;
}

.filter-panel {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px 24px;
	position: sticky;
	top: 100px;
}

.filter-title {
	font-size: 1.2rem;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
}

.filter-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-bottom: 18px;
}

.filter-field span {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.filter-field select,
.rans-form select,
.rans-form input[type="text"],
.rans-form input[type="tel"],
.rans-form input[type="email"],
.rans-form textarea {
	width: 100%;
	background: var(--white);
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 12px 14px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--ink);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.filter-field select:focus,
.rans-form select:focus,
.rans-form input:focus,
.rans-form textarea:focus {
	outline: none;
	border-color: var(--gold);
	box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.filter-cta {
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	text-align: center;
}

.filter-cta p {
	font-size: 0.9rem;
	color: var(--muted);
}

.jobs-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	position: relative;
}

.jobs-list.is-loading::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.6);
	z-index: 2;
	border-radius: var(--radius);
}

.job-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px 28px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.job-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 12px;
}

.job-title {
	font-size: 1.22rem;
	margin: 0;
}

.job-country {
	background: rgba(201, 162, 39, 0.14);
	color: var(--navy-800);
	font-weight: 700;
	font-size: 0.8rem;
	padding: 6px 12px;
	border-radius: 999px;
	white-space: nowrap;
}

.job-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	list-style: none;
	padding: 0;
	margin: 0 0 10px;
	font-size: 0.9rem;
	color: var(--muted);
}

.job-excerpt {
	font-size: 0.94rem;
	color: var(--muted);
	margin-bottom: 18px;
}

.job-actions {
	margin-top: 14px;
}

.no-results {
	background: var(--cream);
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	padding: 40px;
	text-align: center;
	color: var(--muted);
}

/* Single job */
.job-single {
	max-width: 860px;
	margin: 0 auto;
}

.job-meta-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}

.job-meta-pill {
	background: var(--cream);
	border: 1px solid var(--line);
	color: var(--navy-800);
	font-size: 0.85rem;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 999px;
}

.job-apply-box {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px;
	margin-top: 34px;
}

.job-closed-note {
	display: block;
	margin-top: 14px;
	font-size: 0.9rem;
	color: #a33;
	font-weight: 700;
}

.job-back {
	margin-top: 40px;
	text-align: center;
}

/* ---------- Submit CV ---------- */
.cv-layout {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 44px;
	align-items: start;
}

.cv-info h2 {
	font-size: 1.6rem;
}

.cv-perks {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 28px;
}

.cv-perks li {
	position: relative;
	padding-left: 32px;
}

.cv-perks li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 1px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--navy-900);
	color: var(--gold-soft);
	font-size: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cv-contact {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px 26px;
}

.cv-contact p {
	margin-bottom: 6px;
}

.cv-form-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 40px 38px;
	box-shadow: var(--shadow-md);
}

.rans-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

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

.upload-hint {
	font-size: 0.8rem !important;
	font-weight: 500 !important;
	color: var(--muted) !important;
}

.form-upload input[type="file"] {
	font-size: 0.88rem;
}

.form-success,
.form-error {
	border-radius: var(--radius);
	padding: 28px 30px;
	text-align: center;
}

.form-success {
	background: #eef7ef;
	border: 1px solid #bfe3c3;
}

.form-success .success-icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #2f9e44;
	color: var(--white);
	font-size: 1.5rem;
	margin-bottom: 14px;
}

.form-success h3 {
	color: #1d6e2d;
}

.form-error {
	background: #fdeeee;
	border: 1px solid #f1b9b9;
	color: #a33;
	font-weight: 600;
}

/* ---------- Contact tabs ---------- */
.contact-tabs {
	max-width: 1100px;
	margin: 0 auto;
}

.tab-nav {
	display: flex;
	gap: 8px;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 8px;
	margin-bottom: 40px;
}

.tab-btn {
	flex: 1;
	border: none;
	background: transparent;
	padding: 14px 20px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.98rem;
	color: var(--muted);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.28s ease;
}

.tab-btn.is-active {
	background: var(--navy-900);
	color: var(--gold-soft);
	box-shadow: var(--shadow-sm);
}

.tab-panel {
	display: none;
}

.tab-panel.is-active {
	display: block;
	animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
}

.contact-info h3 {
	font-size: 1.4rem;
	margin-bottom: 24px;
}

.contact-list {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 30px;
}

.contact-list li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	font-size: 1rem;
}

.contact-ico {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(201, 162, 39, 0.14);
	color: var(--navy-800);
}

.contact-ico svg {
	width: 19px;
	height: 19px;
}

.contact-map {
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--cream);
	border: 1px solid var(--line);
	min-height: 240px;
}

.contact-map iframe {
	width: 100%;
	height: 280px;
	border: 0;
	display: block;
}

.map-placeholder {
	height: 240px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--muted);
	font-size: 0.9rem;
	padding: 20px;
}

.branches {
	margin-bottom: 30px;
}

.branches h4 {
	font-size: 1.05rem;
	margin-bottom: 14px;
}

.contact-form-wrap {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 36px 34px;
	box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
	font-size: 1.3rem;
	margin-bottom: 22px;
}

/* ---------- Country sections ---------- */
.country-section {
	margin-bottom: 56px;
	max-width: 860px;
}

.country-section.section--card {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 34px;
}

.country-section.section--accent {
	background: var(--navy-900);
	border-color: transparent;
	color: rgba(255, 255, 255, 0.8);
}

.country-section.section--accent .section-title-inline {
	color: var(--white);
}

.country-overview p {
	font-size: 1.05rem;
}

.tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag-pill {
	background: var(--cream);
	border: 1px solid var(--line);
	color: var(--navy-800);
	font-weight: 700;
	font-size: 0.85rem;
	padding: 9px 16px;
	border-radius: 999px;
}

/* FAQ */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	overflow: hidden;
}

.faq-item summary {
	cursor: pointer;
	padding: 18px 22px;
	font-weight: 700;
	font-size: 1rem;
	color: var(--navy-900);
	list-style: none;
	position: relative;
	padding-right: 46px;
}

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

.faq-item summary::after {
	content: '+';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--gold);
	transition: transform 0.3s ease;
}

.faq-item[open] summary::after,
.faq-item.is-open summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
	padding: 0 22px 18px;
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
}

/* ---------- Misc ---------- */
.pagination {
	margin: 48px 0;
	text-align: center;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: 10px;
	color: var(--navy-800);
	font-weight: 700;
	background: var(--white);
}

.pagination .page-numbers.current {
	background: var(--navy-900);
	color: var(--gold-soft);
	border-color: var(--navy-900);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 40px 0;
}

.post-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.post-thumb img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.post-body {
	padding: 24px;
}

.post-title {
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.read-more {
	font-weight: 700;
	color: var(--navy-800);
}

.single-container {
	max-width: 860px;
}

.single-thumb img {
	border-radius: var(--radius);
	margin-bottom: 30px;
	width: 100%;
}

.single-meta {
	color: var(--muted);
	font-size: 0.9rem;
	display: flex;
	gap: 18px;
	margin-bottom: 26px;
}

.error-404 {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 24px;
}

.error-code {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 6rem;
	line-height: 1;
	background: linear-gradient(135deg, var(--gold-strong), var(--gold));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.error-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-top: 24px;
}

/* ---------- Lightbox ---------- */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 1200;
	background: rgba(6, 15, 31, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	padding: 40px;
}

.lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.lightbox-content img {
	max-width: min(1100px, 92vw);
	max-height: 80vh;
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
}

.lightbox-content figcaption {
	color: var(--white);
	text-align: center;
	margin-top: 14px;
	font-size: 0.95rem;
}

.lightbox-close {
	position: absolute;
	top: 24px;
	right: 28px;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.5);
	color: var(--white);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 1.6rem;
	cursor: pointer;
	transition: all 0.25s ease;
}

.lightbox-close:hover {
	background: var(--white);
	color: var(--navy-950);
}

/* ---------- Reveal helpers ---------- */
.js .reveal {
	opacity: 0;
	will-change: transform, opacity;
}

.reveal.is-visible {
	opacity: 1;
}

.no-js .reveal {
	opacity: 1;
}

/* ---------- Editor placeholder ---------- */
.rans-block-editor-placeholder {
	padding: 20px;
	background: #faf9f5;
	border: 1px dashed #c9a227;
	border-radius: 10px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
	.industries-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}

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

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

@media (max-width: 992px) {
	/* Mobile nav */
	.nav-toggle {
		display: flex;
	}

	.main-navigation {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(340px, 86vw);
		background: var(--navy-950);
		box-shadow: var(--shadow-lg);
		padding: 96px 26px 40px;
		transform: translateX(100%);
		transition: transform 0.35s ease;
		overflow-y: auto;
		z-index: 950;
	}

	.main-navigation.is-open {
		transform: translateX(0);
	}

	.main-navigation ul {
		flex-direction: column;
		gap: 6px;
	}

	.main-navigation a {
		font-size: 1rem;
		padding: 14px 12px;
	}

	.main-navigation .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		border-left: 2px solid var(--gold);
		border-radius: 0;
		margin: 4px 0 8px 14px;
		padding: 4px 0;
		background: transparent;
	}

	body.nav-open {
		overflow: hidden;
	}

	body.nav-open::after {
		content: '';
		position: fixed;
		inset: 0;
		background: rgba(6, 15, 31, 0.55);
		z-index: 890;
	}

	.header-cv-btn span {
		display: none;
	}

	.header-cv-btn svg {
		width: 20px;
		height: 20px;
	}

	/* Layout */
	.about-layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.about-aside {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.about-aside-box {
		flex: 1;
		min-width: 160px;
	}

	.about-cards,
	.services-grid,
	.dual-cta,
	.countries-all,
	.cv-layout,
	.contact-layout,
	.jobs-layout,
	.md-layout,
	.vertical-grid {
		grid-template-columns: 1fr;
	}

	.jobs-layout {
		gap: 28px;
	}

	.filter-panel {
		position: static;
	}

	.selection-steps,
	.process-steps {
		grid-template-columns: 1fr 1fr;
	}

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

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

	.md-aside-card {
		position: static;
	}

	.tab-btn {
		font-size: 0.88rem;
		padding: 12px 10px;
	}
}

@media (max-width: 640px) {
	.section {
		padding: 64px 0;
	}

	.topbar-inner {
		flex-direction: column;
		gap: 6px;
		padding: 8px 16px;
	}

	.topbar-badge {
		display: none;
	}

	.hero-inner {
		padding: 110px 20px 120px;
	}

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

	.stats-inner {
		grid-template-columns: 1fr 1fr;
	}

	.stat + .stat::before {
		display: none;
	}

	.stat:nth-child(even)::before {
		content: '';
		position: absolute;
		left: 0;
		top: 24%;
		height: 52%;
		width: 1px;
		background: var(--line);
	}

	.country-grid,
	.industries-grid,
	.services-grid,
	.credentials-list,
	.demand-grid,
	.country-gallery,
	.process-steps,
	.selection-steps,
	.vertical-grid,
	.awards-grid,
	.countries-all,
	.post-grid {
		grid-template-columns: 1fr;
	}

	.country-card--lg {
		flex-direction: column;
		text-align: center;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		padding: 48px 0 36px;
	}

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.cv-form-card {
		padding: 28px 22px;
	}

	.md-message-card {
		padding: 36px 26px;
	}

	.demand-item {
		width: 260px;
	}

	.contact-map iframe {
		height: 220px;
	}
}
