/* Gallery Modal Styles */
.gallery-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}
.gallery-modal-img {
	max-width: 90vw;
	max-height: 80vh;
	border-radius: 16px;
	box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.gallery-modal-close {
	position: absolute;
	top: 30px;
	right: 50px;
	font-size: 3rem;
	color: #fff;
	cursor: pointer;
	font-weight: bold;
	z-index: 10000;
	transition: color 0.2s;
}
.gallery-modal-close:hover {
	color: var(--accent);
}
/* Gallery Section Styles */
.gallery {
	padding: var(--section-spacing) 0;
	background: #f8f9fa;
}
.gallery h2 {
	text-align: center;
	margin-bottom: 40px;
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}
.gallery-item {
	background: white;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.08);
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
	transform: scale(1.03);
	box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.gallery-item img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}
/* Poprawka widoczności emoji flag */
.country-flag {
	font-size: 2rem;
	font-family: 'Segoe UI Emoji', 'Noto Color Emoji', 'Apple Color Emoji', sans-serif;
	line-height: 1;
}

:root {
	--primary: #0056b3;
	--primary-dark: #003a7a;
	--secondary: #e63946;
	--accent: #2a9d8f;
	--accent-light: #4cc9b8;
	--dark: #1d3557;
	--darker: #0d1a2d;
	--light: #f8f9fa;
	--lighter: #ffffff;
	--gray: #6c757d;
	--transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	--shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
	--shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.25);
	--radius: 16px;
            --section-spacing: 160px;
}
/* Screen-reader only helper */
.sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}
body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.8;
	color: #333;
	background-color: #fff;
	overflow-x: hidden;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
}
body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(0, 86, 179, 0.03)" stroke-width="1"/></svg>');
	z-index: -1;
	opacity: 0.8;
}
h1, h2, h3, h4, h5, h6 {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: var(--dark);
	line-height: 1.2;
}
h1 {
	font-size: clamp(2.8rem, 6vw, 4.5rem);
	letter-spacing: -0.03em;
}
h2 {
	position: relative;
	padding-bottom: 25px;
	text-align: center;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	margin-bottom: 3rem;
}
h3 {
    letter-spacing: -0.03em;
    color: #ffffff;
}
h2:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 6px;
	background: var(--secondary);
	border-radius: 3px;
}
p {
	font-size: clamp(1rem, 1.8vw, 1.15rem);
	margin-bottom: 1.8rem;
	color: #444;
	line-height: 1.8;
}
.container {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 40px;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 42px;
	background: var(--primary);
	color: white;
	text-decoration: none;
	border-radius: 60px;
	font-weight: 700;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	text-align: center;
	box-shadow: var(--shadow);
	font-size: clamp(1rem, 1.2vw, 1.1rem);
	letter-spacing: 0.8px;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--secondary);
	transform: translateX(-100%);
	transition: var(--transition);
	z-index: -1;
}
.btn:hover::before {
	transform: translateX(0);
}
.btn:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}
.btn i {
	margin-left: 12px;
	transition: transform 0.4s ease;
}
.btn:hover i {
	transform: translateX(5px);
}
.btn-secondary {
	background: #c62835; /* darker red for better contrast */
	color: #ffffff;
}
.btn-secondary::before {
	background: var(--primary);
}
.btn-outline {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
	box-shadow: none;
}
.btn-outline::before {
	background: var(--primary);
}
.btn-outline:hover {
	color: white;
}
/* Header Styles */
header {
	background: rgba(255, 255, 255, 0.96);
	color: var(--dark);
	padding: 5px 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(12px);
	transition: background-color 0.25s ease, box-shadow 0.25s ease;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
header.scrolled {
	padding: 5px 0;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	background: rgba(255, 255, 255, 0.98);
}
.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}
.logo-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: white;
	font-size: 1.8rem;
	font-weight: 700;
}
.logo-text {
	display: flex;
	flex-direction: column;
}
.logo-primary {
	font-size: clamp(1.4rem, 2vw, 1.8rem);
	font-weight: 900;
	color: var(--primary);
	line-height: 1.1;
}
.logo-secondary {
	font-size: clamp(0.9rem, 1.2vw, 1rem);
	font-weight: 600;
	color: var(--dark);
	letter-spacing: 1.5px;
}
nav ul {
	display: flex;
	list-style: none;
	gap: 35px;
}
nav li {
	position: relative;
}
nav a {
	color: var(--dark);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	padding: 8px 0;
	position: relative;
	font-size: clamp(0.95rem, 1.2vw, 1.1rem);
	display: block;
}
nav a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--secondary);
	transition: var(--transition);
}
nav a:hover:after {
	width: 100%;
}
nav a:hover {
	color: var(--secondary);
}
.nav-cta {
	margin-left: 40px;
}
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--dark);
	font-size: 1.8rem;
	cursor: pointer;
	z-index: 1001;
}
/* Hero Section — compact, readable, visually balanced */
.hero {
	min-height: clamp(680px, 86vh, 860px);
	display: flex;
	align-items: center;
	padding: 132px 0 64px;
	position: relative;
	overflow: hidden;
	background: #16263a;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.hero-bg .hero-lcp {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(12, 24, 38, 0.94) 0%,
			rgba(12, 24, 38, 0.88) 38%,
			rgba(12, 24, 38, 0.62) 68%,
			rgba(12, 24, 38, 0.48) 100%
		);
}

.hero > .container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.hero-content {
	max-width: 720px;
	color: #fff;
	position: relative;
	z-index: 2;
	padding: 34px 38px 32px;
	border-radius: 22px;
	background: rgba(9, 18, 29, 0.46);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(6px);
}

.hero h1 {
	max-width: 13ch;
	font-size: clamp(2.45rem, 4.7vw, 4rem);
	line-height: 1.08;
	margin: 0 0 1.15rem;
	color: #fff;
	letter-spacing: -0.035em;
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.hero p {
	max-width: 60ch;
	font-size: clamp(1.03rem, 1.35vw, 1.2rem);
	line-height: 1.58;
	margin: 0 0 1.8rem;
	color: rgba(255, 255, 255, 0.92);
}

.hero-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 0;
}

.hero-btns .btn {
	padding: 15px 30px;
	font-size: 0.98rem;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 26px;
	max-width: 1080px;
}

.stat-card {
	background: rgba(255, 255, 255, 0.11);
	backdrop-filter: blur(10px);
	border-radius: 14px;
	padding: 20px 18px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.16);
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(230, 57, 70, 0.14) 0%, rgba(42, 157, 143, 0.14) 100%);
	z-index: 0;
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}

.stat-card > * {
	position: relative;
	z-index: 1;
}

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

.stat-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
	background: rgba(255, 255, 255, 0.14);
}

.stat-value {
	font-size: clamp(1.9rem, 2.6vw, 2.55rem);
	font-weight: 900;
	color: #fff;
	margin-bottom: 4px;
	position: relative;
	display: inline-block;
	line-height: 1.05;
}

.stat-value::after {
	content: '+';
	position: absolute;
	top: 0;
	right: -11px;
	font-size: 1rem;
}

.stat-label {
	font-size: 0.92rem;
	line-height: 1.35;
	opacity: 0.92;
	color: #eef3f7;
	letter-spacing: 0.2px;
}

/* About Section */
.about {
	padding: var(--section-spacing) 0;
	background: var(--light);
	position: relative;
	overflow: hidden;
}
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 2;
}
.about-image {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	height: 600px;
	background: url(../img/logo/about.webp) center/cover;
	position: relative;
}
.about-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
	mix-blend-mode: multiply;
	opacity: 0.1;
}
.about-text h2 {
	text-align: left;
}
.about-text h2:after {
	left: 0;
	transform: none;
}
.about-text p {
	margin-bottom: 25px;
}
/* Ensure about section paragraphs are dark for readability */
.about .about-text p {
	color: var(--dark);
}
.highlight {
	background: linear-gradient(120deg, rgba(42, 157, 143, 0.1) 0%, rgba(42, 157, 143, 0) 100%);
	border-left: 4px solid var(--accent);
	padding: 35px;
	border-radius: 0 var(--radius) var(--radius) 0;
	margin: 40px 0;
	position: relative;
	overflow: hidden;
}
.highlight::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(42, 157, 143, 0.08)" stroke-width="1"/></svg>');
	opacity: 0.5;
}
.highlight p {
	font-style: italic;
	font-weight: 500;
	font-size: 1.3rem;
	margin-bottom: 0;
	color: var(--dark);
	position: relative;
	z-index: 1;
}
/* Services Section */
.services {
	padding: var(--section-spacing) 0;
	background: white;
	position: relative;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 50px;
	margin-top: 60px;
}
.service-card {
	background: var(--lighter);
	border-radius: var(--radius);
	padding: 60px 45px;
	text-align: center;
	transition: var(--transition);
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.03);
}
.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	opacity: 0;
	transition: var(--transition);
	z-index: -1;
}
.service-card:hover::before {
	opacity: 0.05;
}
.service-card:hover {
	transform: translateY(-20px);
	box-shadow: var(--shadow-hover);
}
.service-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 35px;
	color: white;
	font-size: 2.8rem;
	transition: var(--transition);
}
.service-card:hover .service-icon {
	transform: scale(1.1) rotate(5deg);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.service-card h3 {
	margin-bottom: 25px;
	color: var(--dark);
	font-size: clamp(1.6rem, 2vw, 1.8rem);
}
.service-card p {
	color: var(--gray);
	line-height: 1.8;
}
/* Products Section */
.products {
	padding: var(--section-spacing) 0;
	background-attachment: fixed;
	position: relative;
}
.products::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, rgba(29, 53, 87, 0.03) 0%, rgba(42, 157, 143, 0.03) 100%);
	z-index: 0;
}
.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 60px;
	position: relative;
	z-index: 1;
}
.category-card {
	background: white;
	border-radius: var(--radius);
	padding: 45px 35px;
	text-align: center;
	transition: var(--transition);
	box-shadow: var(--shadow);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}
.category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: var(--transition);
}
.category-card:hover::before {
	transform: scaleX(1);
}
.category-card:hover {
	transform: translateY(-15px);
	box-shadow: var(--shadow-hover);
}
.category-icon {
	font-size: 3.5rem;
	color: var(--primary);
	margin-bottom: 30px;
	transition: var(--transition);
	display: inline-block;
}
.category-card:hover .category-icon {
	color: var(--secondary);
	transform: scale(1.1);
}
.category-card h3 {
	margin-bottom: 20px;
	font-size: clamp(1.5rem, 1.8vw, 1.7rem);
}
.category-card ul {
	list-style: none;
	text-align: left;
	margin-top: 25px;
}
.category-card li {
	padding: 12px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}
.category-card li:before {
	content: '✓';
	color: var(--accent);
	font-weight: bold;
	margin-right: 12px;
	font-size: 1.2rem;
}
/* Global Section */
.global {
	padding: var(--section-spacing) 0;
	background: linear-gradient(135deg, var(--dark) 0%, #0d1a2d 100%);
	color: white;
	position: relative;
	overflow: hidden;
}
.global h2 {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}
.global p{
    margin-bottom: 25px;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.8;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.85);
}
.global-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 2;
}
.map-container {
	height: 600px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	position: relative;
}

/* Google Maps — click-to-load: no third-party JS before user action */
.map-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 36px;
	text-align: center;
	background:
		linear-gradient(135deg, rgba(13, 26, 45, 0.96), rgba(29, 53, 87, 0.92));
	color: #fff;
}

.map-placeholder-inner {
	max-width: 460px;
}

.map-placeholder-inner > i {
	font-size: 3rem;
	color: var(--accent-light);
	margin-bottom: 18px;
}

.map-placeholder h3 {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.map-placeholder p {
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
}

.map-load-btn {
	box-shadow: none;
}

.map-external-link {
	display: block;
	margin-top: 18px;
	color: #fff;
	font-weight: 700;
	text-underline-offset: 3px;
}

.map-external-link:hover,
.map-external-link:focus-visible {
	color: var(--accent-light);
}

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

.global-text h2 {
	color: white;
	text-align: left;
}
.global-text h2:after {
	left: 0;
	transform: none;
	background: var(--accent-light);
}
.global-text p {
	margin-bottom: 25px;
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	line-height: 1.8;
	opacity: 0.9;
	color: rgba(255, 255, 255, 0.85);
}
.countries-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 40px;
}
.country-item {
	display: flex;
	align-items: center;
	padding: 15px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	transition: var(--transition);
}
.country-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
}
.country-flag {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.15);
	font-size: 1.5rem;
	flex-shrink: 0;
}
.country-name {
	font-weight: 500;
	font-size: clamp(1rem, 1.2vw, 1.1rem);
}
/* Contact Section */
.contact {
	padding: var(--section-spacing) 0;
	background: white;
}
.contact-container {
	display: block;
	max-width: 900px;
	margin: 60px auto 0;
}
.contact-info {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	border-radius: var(--radius);
	padding: 60px;
	color: white;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}
.contact-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255, 255, 255, 0.08)" stroke-width="1"/></svg>');
}
.contact-info h2 {
	color: white;
	text-align: left;
}
.contact-info h2:after {
	left: 0;
	transform: none;
	background: var(--accent-light);
}
.contact-details {
	margin-top: 50px;
}
.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 35px;
}
.contact-icon {
	background: var(--secondary);
	width: 70px;
	height: 70px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 25px;
	flex-shrink: 0;
	font-size: 1.8rem;
	transition: var(--transition);
}
.contact-item:hover .contact-icon {
	transform: rotate(10deg) scale(1.1);
	border-radius: 50% 20% 50% 20%;
}
.contact-text h4 {
	color: var(--accent-light);
	margin-bottom: 5px;
	font-size: clamp(1.2rem, 1.4vw, 1.3rem);
}
.contact-text p {
	font-size: clamp(1rem, 1.2vw, 1.1rem);
	opacity: 0.9;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
}
/* Footer */
footer {
	background: var(--darker);
	color: rgba(255, 255, 255, 0.8);
	padding: 120px 0 50px;
	position: relative;
}

/* Ensure h3 inside footer is white (overrides global h1-h6 color) */
footer h3 {
	color: #ffffff;
}
footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 60px;
	margin-bottom: 80px;
}
.footer-logo {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}
.footer-logo-icon {
	font-size: 3rem;
	font-weight: 900;
	color: var(--accent-light);
	line-height: 1;
	margin-bottom: 15px;
}
.footer-logo-text {
	font-size: clamp(1.6rem, 2vw, 1.8rem);
	font-weight: 900;
	color: white;
}
.footer-about p {
	margin-bottom: 30px;
	font-size: clamp(1rem, 1.1vw, 1.05rem);
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.7);
}
.social-links {
	display: flex;
	gap: 18px;
}
.social-link {
	width: 55px;
	height: 55px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	transition: var(--transition);
}
.social-link:hover {
	background: var(--primary);
	transform: translateY(-8px);
}
.footer-links h4 {
	color: white;
	margin-bottom: 30px;
	padding-bottom: 12px;
	border-bottom: 3px solid var(--accent);
	display: inline-block;
	font-size: clamp(1.3rem, 1.5vw, 1.4rem);
}
.footer-links ul {
	list-style: none;
}
.footer-links li {
	margin-bottom: 18px;
}
.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--transition);
	font-size: clamp(1rem, 1.1vw, 1.05rem);
	display: flex;
	align-items: center;
}
.footer-links a i {
	margin-right: 15px;
	width: 25px;
	color: var(--accent-light);
	transition: var(--transition);
}
.footer-links a:hover {
	color: var(--accent-light);
	padding-left: 8px;
}
.footer-links a:hover i {
	transform: rotate(15deg);
	color: var(--accent-light);
}


/* Continuous hero floating animation removed for lower rendering cost. */
/* 3D Canvas */
#machine-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.15;
}
/* Responsive Styles */
@media (max-width: 1400px) {
.hero-stats {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}
}
@media (max-width: 1200px) {
:root {
	--section-spacing: 120px;
}
.about-content, .global-content, .contact-container {
	grid-template-columns: 1fr;
	gap: 60px;
}
.about-text h2, .global-text h2 {
	text-align: center;
}
.about-text h2:after, .global-text h2:after {
	left: 50%;
	transform: translateX(-50%);
}
.map-container {
	height: 500px;
	order: -1;
}
}
@media (max-width: 992px) {
nav ul {
	position: fixed;
	top: 0;
	right: -100%;
	width: 320px;
	height: 100vh;
	background: white;
	flex-direction: column;
	padding: 100px 40px 40px;
	box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
	transition: var(--transition);
	z-index: 1000;
	gap: 25px;
	/* center items horizontally in the mobile menu */
	align-items: center;
}
nav ul.active {
	right: 0;
}
nav li {
	margin: 0;
}
.nav-cta {
	margin: 30px auto 0;
	width: 100%;
	display: flex;
	justify-content: center;
}
.mobile-menu-btn {
	display: block;
}
.hero {
	min-height: auto;
	padding: 122px 0 58px;
}
.hero-content {
	max-width: 100%;
	padding: 30px 28px;
}
.hero h1 {
	max-width: 100%;
}
.hero-btns {
	flex-wrap: wrap;
	gap: 12px;
}
.hero-stats {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 22px;
	gap: 12px;
}
.services-grid, .categories-grid {
	grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
:root {
	--section-spacing: 100px;
}
.container {
	padding: 0 30px;
}
.hero {
	min-height: auto;
	padding: 112px 0 50px;
}
.hero-content {
	padding: 24px 20px;
	border-radius: 18px;
}
.hero h1 {
	font-size: clamp(2rem, 9vw, 3rem);
	line-height: 1.1;
	margin-bottom: 1rem;
}
.hero p {
	font-size: 1rem;
	line-height: 1.55;
	margin-bottom: 1.4rem;
}
.hero-btns {
	flex-direction: column;
	align-items: stretch;
}
.hero-btns .btn {
	width: 100%;
}
.hero-stats {
	grid-template-columns: 1fr 1fr;
	margin-top: 20px;
}
.about-image {
	height: 450px;
}
.service-card, .contact-info {
	padding: 40px 30px;
}
.countries-grid {
	grid-template-columns: 1fr;
}
}
@media (max-width: 576px) {
.hero-stats {
	grid-template-columns: 1fr;
}
.stat-card {
	padding: 18px 16px;
}
}

/* =====================================================
   LANGUAGE SWITCHER — STABILNY UKŁAD FLAG
===================================================== */

.lang-switcher {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 2200;
	font-family: inherit;
}

.lang-toggle {
	width: 52px;
	height: 52px;
	min-width: 52px;
	min-height: 52px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #3d3d3d;
	box-shadow: 0 6px 18px rgba(10, 20, 40, 0.14);

	display: flex;
	align-items: center;
	justify-content: center;

	cursor: pointer;
	overflow: hidden;
}

/* aktualna flaga */
.lang-toggle img,
#currentLangFlag {
	display: block;
	width: 28px !important;
	height: 20px !important;
	min-width: 28px;
	max-width: 28px;
	min-height: 20px;
	max-height: 20px;

	object-fit: cover;
	object-position: center;
	border-radius: 3px;
	flex: 0 0 28px;
}


/* lista */
.lang-list {
	position: absolute;
	right: 0;
	bottom: 64px;

	width: 220px;
	max-height: 360px;

	overflow-x: hidden;
	overflow-y: auto;

	padding: 6px;

	background: #fff;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(10, 20, 40, 0.16);

	display: none;
}

.lang-list.open {
	display: block;
}

.lang-list ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lang-list li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

.lang-list a {
	display: flex;
	align-items: center;

	width: 100%;
	min-height: 38px;

	gap: 10px;
	padding: 7px 10px;

	box-sizing: border-box;
	border-radius: 6px;

	color: #111;
	text-decoration: none;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
}

/* KAŻDA flaga w menu ma identyczny obszar */
.lang-list a img {
	display: block !important;

	width: 22px !important;
	height: 16px !important;

	min-width: 22px !important;
	max-width: 22px !important;
	min-height: 16px !important;
	max-height: 16px !important;

	flex: 0 0 22px;

	object-fit: cover;
	object-position: center;

	border-radius: 2px;
	margin: 0;
	padding: 0;
}

.lang-list a span {
	display: block;
	flex: 1 1 auto;
	line-height: 16px;
}

.lang-list a:hover,
.lang-list a:focus-visible {
	background: #f3f6f9;
}

.lang-list a.current,
.lang-list a[aria-current="page"] {
	background: #eaf2fa;
	color: #003a7a;
}

.lang-toggle:focus-visible,
.lang-list a:focus-visible {
	outline: 3px solid rgba(0, 86, 179, 0.25);
	outline-offset: 2px;
}


/* MOBILE */
@media (max-width: 480px) {

	.lang-switcher {
		right: 12px;
		bottom: 12px;
	}

	.lang-list {
		width: 190px;
		bottom: 62px;
	}
}


/* =====================================================
   FOOTER — CZYTELNY DISCLAIMER / BOTTOM
===================================================== */

.footer-disclaimer {
	max-width: 1100px;
	margin: 35px auto 0;
	padding: 26px 30px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	text-align: center;
}

.footer-disclaimer p {
	margin: 0 0 9px;
	padding: 0;
	color: #f4f6f8 !important;
	font-size: 0.95rem;
	line-height: 1.5;
	letter-spacing: 0;
	opacity: 1 !important;
}

.footer-disclaimer p:last-child {
	margin-bottom: 0;
}

.footer-disclaimer strong {
	color: #ffffff;
	font-weight: 700;
}

.footer-disclaimer a {
	color: #ffffff;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.footer-disclaimer a:hover,
.footer-disclaimer a:focus-visible {
	color: var(--accent-light);
}

.footer-bottom {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	text-align: center;
	color: #ffffff;
}

.footer-bottom p {
	margin: 0 0 6px;
	padding: 0;
	color: #ffffff !important;
	font-size: 0.92rem;
	line-height: 1.45;
	letter-spacing: 0;
	opacity: 1 !important;
}

.footer-bottom p:last-child {
	margin-bottom: 0;
}

.footer-credit {
	margin: 0;
	padding: 0;
	color: #ffffff !important;
	font-size: 0.85rem;
	line-height: 1.45;
	opacity: 1 !important;
}

.footer-credit a {
	color: #ffffff !important;
	font-weight: 700;
	text-decoration: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
	color: var(--accent-light) !important;
	text-decoration: underline;
}

/* Accessibility / motion stability */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
