/* ── TOKENS ─────────────────────────────────────────── */
:root {
	--bg: #03080f;
	--bg2: #060d18;
	--neon: #00b4ff;
	--neon2: #38d4ff;
	--neon-dim: rgba(0, 180, 255, 0.18);
	--neon-glow: 0 0 38px rgba(0, 180, 255, 0.45);
	--glass: rgba(255, 255, 255, 0.042);
	--glass2: rgba(255, 255, 255, 0.07);
	--gborder: rgba(0, 180, 255, 0.2);
	--gborder2: rgba(0, 180, 255, 0.38);
	--text: #c4d8e8;
	--text2: rgba(196, 216, 232, 0.6);
	--white: #eaf4ff;
	--radius: 12px;
	--maxw: 1240px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--font-head: 'Barlow Condensed', sans-serif;
	--font-body: 'Barlow', system-ui, sans-serif;
}

/* ── RESET ───────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: var(--font-body);
	background: var(--bg);
	color: var(--text);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
}
p {
	margin: 0 0 1em;
	color: var(--text);
}
h1,
h2,
h3,
h4,
h5 {
	margin: 0 0 0.45em;
	font-family: var(--font-head);
	font-weight: 700;
	line-height: 1.06;
	text-transform: uppercase;
	color: var(--white);
}
h1 {
	font-size: clamp(44px, 6vw, 84px);
}
h2 {
	font-size: clamp(32px, 4vw, 56px);
}
h3 {
	font-size: clamp(24px, 2.6vw, 34px);
}
h4 {
	font-size: 21px;
}
h5 {
	font-size: 15px;
	letter-spacing: 0.06em;
}

/* ── LAYOUT ──────────────────────────────────────────── */
.container {
	width: min(100% - 56px, var(--maxw));
	margin: 0 auto;
}
.section {
	padding: 112px 0;
}
.section-header {
	max-width: 790px;
	margin-bottom: 52px;
}
.section-header.centered {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

/* ── AMBIENT BACKGROUND ──────────────────────────────── */
.ambient {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}
.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.28;
}
.orb-a {
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(0, 180, 255, 0.5), transparent 70%);
	top: -20%;
	left: -10%;
}
.orb-b {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(0, 90, 200, 0.45), transparent 70%);
	bottom: -15%;
	right: -8%;
}
.orb-c {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(0, 180, 255, 0.3), transparent 70%);
	top: 40%;
	right: 20%;
}

/* grid texture */
.grid-tex {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image:
		linear-gradient(rgba(0, 180, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 180, 255, 0.04) 1px, transparent 1px);
	background-size: 64px 64px;
}

/* ── SECTION LABEL ───────────────────────────────────── */
.section-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	color: var(--neon);
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}
.section-label::before {
	content: '';
	display: block;
	width: 28px;
	height: 2px;
	background: var(--neon);
	box-shadow: var(--neon-glow);
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 13px 28px;
	border: 1.5px solid transparent;
	border-radius: 999px;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.45s var(--ease);
}
.btn-primary {
	color: #fff;
	background: linear-gradient(135deg, #0070cc, var(--neon));
	border-color: var(--neon);
	box-shadow:
		0 0 28px rgba(0, 180, 255, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
	box-shadow:
		0 0 50px rgba(0, 180, 255, 0.65),
		inset 0 1px 0 rgba(255, 255, 255, 0.22);
	transform: translateY(-2px);
}
.btn-ghost {
	color: var(--white);
	border-color: rgba(196, 216, 232, 0.3);
}
.btn-ghost:hover {
	color: var(--neon);
	border-color: var(--neon);
	box-shadow: 0 0 22px var(--neon-dim);
	transform: translateY(-2px);
}
.btn-outline {
	color: var(--white);
	border-color: var(--gborder);
}
.btn-outline:hover {
	color: var(--neon);
	border-color: var(--neon);
	box-shadow: 0 0 22px var(--neon-dim);
	transform: translateY(-2px);
}

/* ── NAV ─────────────────────────────────────────────── */
nav#nav {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 1000;
	padding: 18px 0;
	color: var(--white);
	border-bottom: 1px solid transparent;
	transition: all 0.45s var(--ease);
}
nav#nav.scrolled {
	padding: 10px 0;
	background: rgba(3, 8, 15, 0.88);
	border-color: var(--gborder);
	backdrop-filter: blur(24px);
}
.nav-row {
	display: flex;
	align-items: center;
	gap: 22px;
}
.nav-logo {
	flex: 0 0 auto;
}
.logo-img {
	display: block;
	width: 132px;
	max-width: 150px;
	height: auto;
	filter: drop-shadow(0 0 14px rgba(0,180,255,.28));
}
.logo-text {
	font-family: var(--font-head);
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--white);
	text-shadow: 0 0 24px rgba(0, 180, 255, 0.5);
}
.logo-text span {
	color: var(--neon);
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: auto;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.nav-links > a,
.nav-item > a {
	color: rgba(196, 216, 232, 0.75);
	transition: color 0.25s ease;
}
.nav-links > a:hover,
.nav-item > a:hover {
	color: var(--neon);
}
.nav-right {
	display: flex;
	align-items: center;
	gap: 14px;
}
.nav-toggle {
	display: none;
	padding: 9px 14px;
	color: var(--white);
	background: var(--glass);
	border: 1px solid var(--gborder);
	border-radius: 8px;
	font-family: var(--font-head);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}
.nav-item {
	position: relative;
}
.nav-chevron {
	font-size: 10px;
	opacity: 0.6;
}
.nav-dropdown {
	position: absolute;
	top: calc(100% + 16px);
	left: 50%;
	min-width: 260px;
	padding: 8px;
	background: rgba(6, 13, 24, 0.96);
	border: 1px solid var(--gborder);
	border-radius: 10px;
	box-shadow:
		0 24px 55px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(0, 180, 255, 0.06);
	backdrop-filter: blur(24px);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition: all 0.35s var(--ease);
}
.nav-dropdown-wide {
	min-width: 320px;
}
.nav-item:hover .nav-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}
.nav-dropdown a {
	display: block;
	padding: 10px 14px;
	border-radius: 7px;
	color: rgba(196, 216, 232, 0.72);
	font-size: 13px;
	transition: all 0.2s;
}
.nav-dropdown a:hover {
	color: var(--neon);
	background: rgba(0, 180, 255, 0.08);
}
.lang-dropdown {
	position: relative;
}
.lang-current {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 8px 14px;
	color: var(--white);
	background: var(--glass);
	border: 1px solid var(--gborder);
	border-radius: 999px;
	font-family: var(--font-head);
	font-weight: 700;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: all 0.3s;
}
.lang-current:hover {
	border-color: var(--neon);
	box-shadow: 0 0 16px var(--neon-dim);
}
.lang-flag {
	width: 22px;
	height: 15px;
	border-radius: 2px;
	overflow: hidden;
}
.chevron {
	font-size: 10px;
	opacity: 0.6;
}
.lang-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 175px;
	padding: 8px;
	background: rgba(6, 13, 24, 0.96);
	border: 1px solid var(--gborder);
	border-radius: 10px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(24px);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.35s var(--ease);
}
.lang-dropdown.open .lang-menu,
.lang-dropdown:hover .lang-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.lang-menu button {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 9px 11px;
	color: rgba(196, 216, 232, 0.75);
	background: transparent;
	border: 0;
	border-radius: 7px;
	font-family: var(--font-head);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.2s;
}
.lang-menu button:hover,
.lang-menu button.active {
	color: var(--neon);
	background: rgba(0, 180, 255, 0.08);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	color: var(--white);
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, rgba(3, 8, 15, 0.95) 0%, rgba(3, 8, 15, 0.78) 50%, rgba(3, 8, 15, 0.92) 100%);
}
/* blue tint overlay */
.hero-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 80, 160, 0.18) 0%, transparent 60%);
	mix-blend-mode: screen;
}
.hero .container {
	position: relative;
	z-index: 2;
}
.hero-kicker {
	margin-bottom: 20px;
	color: var(--neon);
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}
.hero h1 {
	max-width: 980px;
	text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}
.hero h1 em {
	color: var(--neon);
	font-style: normal;
	text-shadow:
		0 0 40px rgba(0, 180, 255, 0.6),
		0 0 80px rgba(0, 180, 255, 0.3);
}
.hero-lead {
	max-width: 720px;
	color: rgba(196, 216, 232, 0.82);
	font-size: 19px;
}
.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 30px;
}
.hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	max-width: 820px;
	margin-top: 56px;
}
.hero-stat {
	padding: 20px 22px;
	background: rgba(0, 20, 45, 0.55);
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
	backdrop-filter: blur(20px);
	transition:
		border-color 0.4s,
		box-shadow 0.4s;
}
.hero-stat:hover {
	border-color: var(--gborder2);
	box-shadow:
		0 0 28px var(--neon-dim),
		inset 0 0 20px rgba(0, 180, 255, 0.04);
}
.hero-stat .num {
	color: var(--neon);
	font-family: var(--font-head);
	font-size: 36px;
	font-weight: 800;
	line-height: 1;
	text-shadow: 0 0 24px rgba(0, 180, 255, 0.7);
}
.hero-stat .lbl {
	margin-top: 6px;
	color: rgba(196, 216, 232, 0.6);
	font-size: 13px;
}

/* ── GLASS CARD ──────────────────────────────────────── */
.glass-card {
	background: var(--glass);
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
	backdrop-filter: blur(16px);
	transition: all 0.55s var(--ease);
}
.glass-card:hover {
	background: var(--glass2);
	border-color: var(--gborder2);
	box-shadow:
		0 0 32px rgba(0, 180, 255, 0.14),
		0 20px 50px rgba(0, 0, 0, 0.35);
	transform: translateY(-4px);
}

/* ── ABOUT ───────────────────────────────────────────── */
#about {
	position: relative;
	overflow: hidden;
}
#about .ambient .orb-a {
	opacity: 0.2;
}
.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}
.about-photo {
	min-height: 460px;
	overflow: hidden;
	border-radius: var(--radius);
	border: 1px solid var(--gborder);
	box-shadow: 0 0 40px rgba(0, 180, 255, 0.1);
}
.about-photo img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	display: block;
	filter: saturate(0.85) brightness(0.9);
}

/* ── FIRMS GRID ──────────────────────────────────────── */
.section-bg {
	background: linear-gradient(180deg, rgba(0, 20, 45, 0.5), rgba(6, 13, 24, 0.8));
}
.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
.feature-card {
	display: flex;
	flex-direction: column;
	padding: 28px;
	background: rgba(0, 15, 35, 0.55);
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
	backdrop-filter: blur(16px);
	transition: all 0.55s var(--ease);
}
.feature-card:hover {
	background: rgba(0, 20, 50, 0.75);
	border-color: var(--gborder2);
	box-shadow:
		0 0 32px rgba(0, 180, 255, 0.15),
		0 20px 50px rgba(0, 0, 0, 0.3);
	transform: translateY(-4px);
}
.feature-card p {
	color: var(--text2);
}
.tile-icon {
	width: 50px;
	height: 50px;
	margin-bottom: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 50px;
	color: var(--neon);
	background: rgba(0, 180, 255, 0.1);
	border: 1px solid rgba(0, 180, 255, 0.3);
	border-radius: 14px;
	box-shadow: 0 0 16px rgba(0, 180, 255, 0.2);
}
.tile-icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ── WORKERS ─────────────────────────────────────────── */
.workers-photo {
	min-height: 460px;
	overflow: hidden;
	border-radius: var(--radius);
	border: 1px solid var(--gborder);
	box-shadow: 0 0 40px rgba(0, 180, 255, 0.1);
}
.workers-photo img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	display: block;
	object-fit: cover;
	filter: saturate(0.85) brightness(0.9);
}
.worker-benefits {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 28px 0 32px;
}
.worker-benefits > div {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 74px;
	padding: 14px;
	background: rgba(0, 20, 50, 0.6);
	border: 1px solid var(--gborder);
	border-radius: 12px;
	font-weight: 600;
	color: var(--white);
	backdrop-filter: blur(12px);
	transition: all 0.4s var(--ease);
}
.worker-benefits > div:hover {
	border-color: var(--gborder2);
	box-shadow: 0 0 20px var(--neon-dim);
}

/* ── SPECIALISTS ─────────────────────────────────────── */
.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.spec-card {
	display: flex;
	flex-direction: column;
	min-height: 200px;
	padding: 26px;
	background: rgba(0, 15, 35, 0.6);
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
	backdrop-filter: blur(14px);
	transition: all 0.55s var(--ease);
}
.spec-card:hover {
	background: rgba(0, 25, 55, 0.8);
	border-color: var(--gborder2);
	box-shadow: 0 0 30px rgba(0, 180, 255, 0.15);
	transform: translateY(-4px);
}
.spec-card p {
	flex: 1;
	color: var(--text2);
	font-size: 15px;
}
.read-more {
	margin-top: auto;
	padding-top: 12px;
	color: var(--neon);
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: text-shadow 0.3s;
}
.read-more:hover {
	text-shadow: 0 0 14px rgba(0, 180, 255, 0.7);
}

/* ── SERVICES ────────────────────────────────────────── */
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.service-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: rgba(0, 12, 30, 0.7);
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
	transition: all 0.55s var(--ease);
}
.service-card:hover {
	border-color: var(--gborder2);
	box-shadow:
		0 0 36px rgba(0, 180, 255, 0.18),
		0 20px 50px rgba(0, 0, 0, 0.35);
	transform: translateY(-4px);
}
.card-img {
	height: 200px;
	overflow: hidden;
	background: rgba(0, 20, 45, 0.5);
}
.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.7) brightness(0.75);
	transition:
		transform 1.3s var(--ease),
		filter 0.55s;
}
.service-card:hover .card-img img {
	transform: scale(1.06);
	filter: saturate(0.9) brightness(0.85);
}
.card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 24px;
}
.card-body p {
	flex: 1;
	color: var(--text2);
	font-size: 15px;
}

/* ── CASES ───────────────────────────────────────────── */
.case-tile {
	position: relative;
	overflow: hidden;
	padding: 28px;
	background: rgba(0, 15, 35, 0.6);
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
	backdrop-filter: blur(16px);
	transition: all 0.55s var(--ease);
}
.case-tile::before {
	content: '';
	position: absolute;
	inset: 0 0 auto;
	height: 2px;
	background: linear-gradient(90deg, var(--neon), transparent);
	box-shadow: 0 0 12px rgba(0, 180, 255, 0.6);
}
.case-tile:hover {
	border-color: var(--gborder2);
	box-shadow: 0 0 32px rgba(0, 180, 255, 0.18);
	transform: translateY(-4px);
}
.case-tile h4 {
	color: var(--white);
}
.case-tile p {
	color: var(--text2);
	margin: 0;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 20px;
}
.faq-item {
	overflow: hidden;
	background: rgba(0, 15, 35, 0.55);
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
	backdrop-filter: blur(14px);
	transition: all 0.4s var(--ease);
}
.faq-item.active {
	border-color: var(--gborder2);
	box-shadow: 0 0 24px var(--neon-dim);
}
.faq-question {
	width: 100%;
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 22px;
	color: var(--white);
	background: transparent;
	border: 0;
	font: 700 17px/1.2 var(--font-head);
	letter-spacing: 0.03em;
	text-align: left;
	text-transform: uppercase;
	cursor: pointer;
}
.faq-plus {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--neon);
	background: rgba(0, 180, 255, 0.12);
	border: 1px solid rgba(0, 180, 255, 0.35);
	border-radius: 50%;
	transition: all 0.35s var(--ease);
	font-size: 18px;
	line-height: 1;
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.55s var(--ease);
}
.faq-answer p {
	margin: 0;
	padding: 0 22px 20px;
	color: var(--text2);
}
.faq-item.active .faq-answer {
	max-height: 220px;
}
.faq-item.active .faq-plus {
	transform: rotate(45deg);
	background: rgba(0, 180, 255, 0.22);
	box-shadow: 0 0 14px rgba(0, 180, 255, 0.4);
}

/* ── BLOG ────────────────────────────────────────────── */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.blog-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: rgba(0, 12, 30, 0.7);
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
	transition: all 0.55s var(--ease);
}
.blog-card:hover {
	border-color: var(--gborder2);
	box-shadow: 0 0 32px rgba(0, 180, 255, 0.15);
	transform: translateY(-4px);
}
.blog-card .card-img img {
	filter: saturate(0.7) brightness(0.75);
}
.blog-card:hover .card-img img {
	filter: saturate(0.9) brightness(0.85);
}

/* ── GEO ─────────────────────────────────────────────── */
.geo-grid {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 64px;
	align-items: center;
}
.geo-copy p {
	max-width: 580px;
	color: var(--text);
	font-size: 18px;
}
.geo-list {
	display: grid;
	gap: 14px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}
.geo-list li {
	position: relative;
	padding-left: 24px;
	color: var(--text2);
	line-height: 1.65;
}
.geo-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--neon);
	box-shadow:
		0 0 0 5px rgba(0, 180, 255, 0.12),
		0 0 10px rgba(0, 180, 255, 0.5);
}
.geo-list strong {
	color: var(--white);
	margin-right: 8px;
}
.map-card {
	padding: 24px;
	background: rgba(0, 15, 35, 0.6);
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
	backdrop-filter: blur(16px);
	box-shadow: 0 0 40px rgba(0, 180, 255, 0.08);
}
.europe-map {
	width: 100%;
	height: auto;
}
.map-land {
	fill: #0d1e30;
	stroke: #1e3a52;
	stroke-width: 1.5;
}
.map-active {
	fill: rgba(0, 150, 220, 0.7);
	stroke: var(--neon);
	stroke-width: 1.8;
}
.map-active:hover {
	fill: rgba(0, 180, 255, 0.85);
	filter: drop-shadow(0 0 8px rgba(0, 180, 255, 0.5));
}
.map-label {
	fill: #fff;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

/* ── CONTACT ─────────────────────────────────────────── */
.section-contact {
	padding: 112px 0;
	position: relative;
	overflow: hidden;
}
.contact-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 55px;
	align-items: start;
}
.contact-info {
	padding: 32px;
	background: rgba(0, 15, 35, 0.55);
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
	backdrop-filter: blur(16px);
}
.contact-detail {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 16px;
	padding: 14px 16px;
	background: rgba(0, 20, 50, 0.6);
	border: 1px solid var(--gborder);
	border-radius: 10px;
	transition: border-color 0.3s;
}
.contact-detail:hover {
	border-color: var(--gborder2);
}
.contact-detail strong {
	font-family: var(--font-head);
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--white);
}
.contact-detail a {
	color: var(--text);
	transition: color 0.2s;
}
.contact-detail a:hover {
	color: var(--neon);
}
.contact-icon {
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--neon);
	background: rgba(0, 180, 255, 0.12);
	border: 1px solid rgba(0, 180, 255, 0.3);
	border-radius: 12px;
	box-shadow: 0 0 16px rgba(0, 180, 255, 0.2);
}
.contact-icon svg,
.tile-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.inquiry-form {
	padding: 34px;
	background: rgba(0, 15, 35, 0.6);
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
	backdrop-filter: blur(20px);
}
.inquiry-form h3 {
	margin-bottom: 24px;
	color: var(--white);
}
.form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.form-group {
	margin-bottom: 16px;
}
.hp-field {
	position: absolute;
	left: -9999px;
}
label {
	display: block;
	margin-bottom: 7px;
	color: var(--neon);
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
input,
select,
textarea {
	width: 100%;
	padding: 13px 16px;
	background: rgba(0, 10, 25, 0.7);
	border: 1px solid rgba(0, 180, 255, 0.2);
	border-radius: 8px;
	color: var(--white);
	font: inherit;
	font-size: 15px;
	transition:
		border-color 0.3s,
		box-shadow 0.3s;
	-webkit-appearance: none;
}
input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--neon);
	box-shadow: 0 0 0 3px rgba(0, 180, 255, 0.12);
}
input::placeholder,
textarea::placeholder {
	color: rgba(196, 216, 232, 0.35);
}
select option {
	background: #060d18;
	color: var(--white);
}
textarea {
	min-height: 130px;
	resize: vertical;
}
.form-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 18px 0 22px;
	color: var(--text2);
	font-size: 14px;
	line-height: 1.55;
}
.form-consent input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	flex: 0 0 auto;
	accent-color: var(--neon);
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
	padding: 70px 0 28px;
	color: var(--text);
	background: rgba(2, 6, 12, 1);
	border-top: 1px solid var(--gborder);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1.2fr 1fr 0.9fr;
	gap: 28px;
}
.footer-brand p {
	color: var(--text2);
}
footer h5 {
	color: var(--white);
	margin-bottom: 18px;
}
footer ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}
footer a {
	color: var(--text2);
	transition: color 0.2s;
}
footer a:hover {
	color: var(--neon);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 44px;
	padding-top: 22px;
	color: rgba(196, 216, 232, 0.38);
	border-top: 1px solid rgba(0, 180, 255, 0.1);
}

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes softReveal {
	from {
		opacity: 0;
		transform: translateY(20px);
		filter: blur(4px);
	}
	to {
		opacity: 1;
		transform: none;
		filter: none;
	}
}
@keyframes pulse-glow {
	0%,
	100% {
		box-shadow: 0 0 24px rgba(0, 180, 255, 0.25);
	}
	50% {
		box-shadow: 0 0 44px rgba(0, 180, 255, 0.55);
	}
}
.reveal {
	opacity: 1;
}
.reveal.visible {
	animation: softReveal 0.9s var(--ease) both;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
	.nav-links {
		position: absolute;
		top: 100%;
		left: 28px;
		right: 28px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 14px;
		background: rgba(4, 10, 22, 0.97);
		border: 1px solid var(--gborder);
		border-radius: 10px;
		backdrop-filter: blur(24px);
	}
	.nav-links.open {
		display: flex;
	}
	.nav-toggle {
		display: block;
		margin-left: auto;
	}
	.nav-right .btn {
		display: none;
	}
	.nav-dropdown {
		position: static;
		display: none;
		min-width: 0;
		margin-top: 8px;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
	}
	.nav-item:hover .nav-dropdown {
		display: block;
		transform: none;
	}
	.service-grid,
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 900px) {
	.grid-2,
	.geo-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.grid-3,
	.blog-grid {
		grid-template-columns: 1fr;
	}
	.grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.service-grid {
		grid-template-columns: 1fr;
	}
	.hero {
		min-height: 860px;
		align-items: flex-start;
	}
	.hero .container {
		padding-top: 136px;
	}
	.hero-stats {
		max-width: none;
		grid-template-columns: repeat(2, 1fr);
	}
	.faq-grid {
		grid-template-columns: 1fr;
	}
	.worker-benefits {
		grid-template-columns: 1fr;
	}
	.about-photo,
	.workers-photo {
		min-height: 340px;
	}
}
@media (max-width: 560px) {
	.container {
		width: min(100% - 40px, var(--maxw));
	}
	.section,
	.section-contact {
		padding: 80px 0;
	}
	.hero h1 {
		font-size: 44px;
	}
	.hero-lead {
		font-size: 17px;
	}
	.hero-actions .btn {
		width: 100%;
	}
	.grid-4,
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.inquiry-form,
	.contact-info {
		padding: 22px;
	}
	.footer-bottom {
		flex-direction: column;
	}
}

/* Subpages */
.page-hero {
	position: relative;
	min-height: 460px;
	display: flex;
	align-items: flex-end;
	padding: 140px 0 82px;
	overflow: hidden;
	color: var(--white);
	background: linear-gradient(180deg, rgba(3, 8, 15, 0.78), rgba(3, 8, 15, 0.96));
}
.page-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.page-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.75) brightness(0.62);
}
.page-hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(3, 8, 15, 0.96), rgba(3, 8, 15, 0.68) 52%, rgba(3, 8, 15, 0.9));
}
.page-hero .container {
	position: relative;
	z-index: 1;
}
.page-hero h1 {
	max-width: 980px;
	font-size: clamp(40px, 5.2vw, 72px);
	text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
}
.page-hero-lead {
	max-width: 720px;
	color: rgba(196, 216, 232, 0.82);
	font-size: 18px;
}
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 22px;
	color: rgba(196, 216, 232, 0.58);
	font-family: var(--font-head);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.breadcrumb a {
	color: rgba(196, 216, 232, 0.7);
}
.breadcrumb a:hover {
	color: var(--neon);
}
.inner-section {
	position: relative;
	padding: 100px 0;
}
.bg-paper,
.section-paper {
	background: linear-gradient(180deg, rgba(0, 20, 45, 0.42), rgba(6, 13, 24, 0.78));
}
.bg-dark,
.section-dark {
	background: linear-gradient(180deg, rgba(3, 8, 15, 0.92), rgba(0, 15, 35, 0.78));
}
.profession-intro-grid,
.service-intro,
.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
	gap: 36px;
	align-items: start;
}
.glass-panel,
.info-box,
.sidebar-card,
.legal-content,
.article-sidebar > div {
	background: rgba(0, 15, 35, 0.6);
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
	backdrop-filter: blur(16px);
	box-shadow: 0 0 34px rgba(0, 180, 255, 0.08);
}
.glass-panel,
.info-box,
.sidebar-card {
	padding: 30px;
}
.prose p,
.article-layout p,
.legal-content p,
.legal-content li {
	color: var(--text);
	line-height: 1.78;
}
.prose h2,
.article-layout h2,
.legal-content h2 {
	margin-top: 1.2em;
}
.info-box h4,
.sidebar-card h5 {
	color: var(--white);
}
.req-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.req-list li {
	position: relative;
	padding-left: 22px;
	color: var(--text);
}
.req-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--neon);
}
.cert-feature {
	gap: 12px;
	min-height: 190px;
}
.cert-icon {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--neon);
	background: rgba(0, 180, 255, 0.1);
	border: 1px solid rgba(0, 180, 255, 0.28);
	border-radius: 12px;
}
.cert-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.steps-list {
	display: grid;
	gap: 14px;
}
.step-item {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 16px;
	align-items: start;
	padding: 20px;
	background: rgba(0, 15, 35, 0.6);
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
}
.step-n {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: linear-gradient(135deg, #0070cc, var(--neon));
	border-radius: 50%;
	font-family: var(--font-head);
	font-weight: 800;
}
.cta-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: center;
	padding: 34px;
	background: rgba(0, 15, 35, 0.7);
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
}
.article-img {
	overflow: hidden;
	margin: 24px 0;
	border: 1px solid var(--gborder);
	border-radius: var(--radius);
}
.article-img img {
	width: 100%;
	height: auto;
	filter: saturate(0.8) brightness(0.82);
}
.article-meta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	color: var(--text2);
	font-size: 13px;
}
.article-tag {
	color: var(--neon);
	font-family: var(--font-head);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.article-sidebar {
	display: grid;
	gap: 18px;
	align-self: start;
	position: sticky;
	top: 110px;
}
.article-sidebar ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.legal-content {
	max-width: 930px;
	margin: 0 auto;
	padding: 46px;
}
.legal-content ul {
	padding-left: 20px;
}

@media (max-width: 900px) {
	.page-hero {
		min-height: 420px;
		padding: 128px 0 64px;
	}
	.profession-intro-grid,
	.service-intro,
	.article-layout {
		grid-template-columns: 1fr;
	}
	.article-sidebar {
		position: static;
	}
	.cta-row {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 560px) {
	.page-hero h1 {
		font-size: 40px;
	}
	.inner-section {
		padding: 78px 0;
	}
	.glass-panel,
	.info-box,
	.sidebar-card,
	.legal-content {
		padding: 24px;
	}
}
