/**
 * Geo-Namiar – style główne (BEM).
 * Branding: Czerwony, Żółty, Biały.
 */

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

body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--color-text, #1a1a1a);
	background: var(--color-white, #fff);
}

a {
	color: var(--color-primary, #c41e3a);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

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

/* ========== Layout ========== */
.site-main {
	min-height: 50vh;
}

/* ========== Header dwupoziomowy: Top Bar + Main Header ========== */
.header-wrapper {
	position: relative;
	top: auto;
	z-index: 1000;
	background: #ffffff;
}

/* ----- Top Bar: żółty, duży, kontrastowy ----- */
.top-bar {
	position: relative;
	z-index: 1001;
	background: var(--color-secondary, #FFFF01);
	color: var(--color-topbar, #0f1629);
	font-size: 13px;
	line-height: 1.35;
	width: 100%;
	border-bottom: 1px solid rgba(15, 22, 41, 0.18);
}

.top-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0.5rem 1.5rem;
	min-height: 38px;
}

.top-bar__brand {
	flex-shrink: 0;
}

.top-bar__company {
	font-weight: 700;
	letter-spacing: 0.02em;
}

.top-bar__company--highlight {
	color: var(--color-primary, #FB0000);
}

.top-bar__right {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
}

.top-bar__contact {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 1.25rem;
}

.top-bar__contact .top-bar__link {
	font-size: 16px;
	font-weight: 700;
}

.top-bar__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--color-topbar, #0f1629);
	text-decoration: none;
	white-space: nowrap;
}

.top-bar__link:hover {
	color: var(--color-topbar, #0f1629);
	text-decoration: none;
}

.top-bar__link:hover .top-bar__icon {
	color: var(--color-primary, #FB0000);
}

.top-bar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--color-topbar, #0f1629);
	transition: color 0.2s;
}

.top-bar__link--with-icon .top-bar__icon {
	color: var(--color-topbar, #0f1629);
}

.top-bar__social {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.top-bar__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(15, 22, 41, 0.32);
	border-radius: 4px;
	color: var(--color-topbar, #0f1629);
	transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.top-bar__social-link:hover {
	color: var(--color-topbar, #0f1629);
	border-color: rgba(15, 22, 41, 0.6);
	background: rgba(15, 22, 41, 0.08);
	text-decoration: none;
}

@media (max-width: 600px) {
	.top-bar__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 0.5rem 1rem;
		font-size: 12px;
		gap: 0.5rem;
	}
	.top-bar__brand {
		order: 1;
	}
	.top-bar__right {
		order: 2;
		justify-content: center;
	}
	.top-bar__company {
		display: block;
	}
	.top-bar__contact .top-bar__link {
		font-size: 15px;
	}
}

/* ----- Main Header: białe tło, logo | menu | CTA ----- */
.site-header {
	position: relative;
	z-index: 1002;
	background: #ffffff;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease-in-out;
}

.site-header.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 9999;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0.85rem 1.5rem;
}

.site-header__logo {
	display: flex;
	align-items: center;
}

.site-header__logo img {
	max-height: 52px;
	width: auto;
}

.site-header__logo-text {
	font-weight: 700;
	color: var(--color-primary);
	font-size: 1.3rem;
	letter-spacing: 0.02em;
}

.site-header__nav {
	margin-left: auto;
	margin-right: 1rem;
}

.site-header__nav .site-header__menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-header__nav a {
	color: var(--color-text, #1a1a1a);
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.site-header__nav a:hover {
	color: var(--color-primary);
	text-decoration: none;
}

.site-header__cta-wrap {
	flex-shrink: 0;
}

.site-header__cta {
	white-space: nowrap;
}

/* Przycisk CTA w nagłówku: żółty (wizytówka), hover czerwony + biały tekst */
.button--header-cta {
	background: var(--color-secondary, #FFFF01);
	color: var(--color-text, #1a1a1a);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.85rem;
	padding: 0.65rem 1.25rem;
	border-radius: 3px;
}

.button--header-cta:hover {
	background: #FB0000;
	color: var(--color-white);
	text-decoration: none;
}

/* Hamburger – widoczny tylko na tablet/mobile */
.site-header__hamburger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	color: var(--color-text, #1a1a1a);
	transition: color 0.2s, opacity 0.2s;
}

.site-header__hamburger:hover {
	color: var(--color-primary);
	opacity: 0.85;
}

.site-header__hamburger-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 24px;
	height: 18px;
}

.site-header__hamburger-inner span {
	display: block;
	width: 100%;
	height: 3px;
	background: currentColor;
	border-radius: 2px;
	transition: transform 0.25s, opacity 0.25s;
}

.site-header__hamburger[aria-expanded="true"] .site-header__hamburger-inner span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.site-header__hamburger[aria-expanded="true"] .site-header__hamburger-inner span:nth-child(2) {
	opacity: 0;
}

.site-header__hamburger[aria-expanded="true"] .site-header__hamburger-inner span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Menu mobile: overlay + panel z boku (na desktop ukryte) */
.mobile-menu-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 199;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.mobile-menu-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: min(320px, 85vw);
	max-width: 100%;
	height: 100vh;
	z-index: 200;
	background: #ffffff;
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.mobile-menu::-webkit-scrollbar {
	display: none;
}

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

.mobile-menu__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--color-text, #1a1a1a);
	background: #ffffff;
	color: var(--color-text, #1a1a1a);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	z-index: 10;
	border-radius: 4px;
	transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.mobile-menu__close span {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.mobile-menu__close svg {
	display: block;
}

.mobile-menu__close:hover {
	color: #ffffff;
	background: var(--color-primary);
	border-color: var(--color-primary);
}

.mobile-menu__inner {
	padding: 3.5rem 1.5rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.mobile-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.mobile-menu__list a {
	display: block;
	padding: 0.75rem 0;
	font-weight: 700;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--color-text, #1a1a1a);
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	transition: color 0.2s;
}

.mobile-menu__list a:hover {
	color: var(--color-primary);
}

.mobile-menu__cta {
	margin-top: 0.5rem;
}

.mobile-menu__cta-btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: 0.85rem 1.25rem;
}

.mobile-menu__contact {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.mobile-menu__link {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--color-text, #1a1a1a);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: color 0.2s;
}

.mobile-menu__link:hover {
	color: var(--color-primary);
}

.mobile-menu__icon {
	display: inline-flex;
	flex-shrink: 0;
	color: var(--color-primary);
}

.mobile-menu__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.mobile-menu__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 2px solid var(--color-topbar, #0f1629);
	border-radius: 4px;
	color: var(--color-topbar, #0f1629);
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mobile-menu__social-link:hover {
	background: var(--color-topbar, #0f1629);
	color: #fff;
	border-color: var(--color-topbar, #0f1629);
}

/* Tablet + mobile: pokaż hamburger, ukryj menu desktop i CTA (top-bar zostaje widoczny) */
@media (max-width: 1024px) {
	.site-header__hamburger {
		display: flex;
	}
	.site-header__nav,
	.site-header__cta-wrap {
		display: none;
	}
	.site-header__inner {
		justify-content: space-between;
	}
	.mobile-menu-overlay,
	.mobile-menu {
		display: block;
	}
}

body.mobile-menu-open {
	overflow: hidden;
}

/* ========== Buttons ========== */
.button {
	display: inline-block;
	padding: 0.6rem 1.2rem;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: opacity 0.2s, background 0.2s;
}

.button:hover {
	text-decoration: none;
	opacity: 0.9;
}

.button--primary {
	background: var(--color-primary);
	color: var(--color-white);
}

.button--primary:hover {
	background: var(--color-primary-dark);
}

.button--secondary {
	background: var(--color-secondary);
	color: var(--color-text);
}

.button--secondary:hover {
	background: var(--color-secondary-dark);
}

/* ========== Sections ========== */
.section {
	padding: 3rem 1.5rem;
}

.section__inner,
.hero__inner,
.o-nas__inner,
.oferta__inner,
.opinie__inner,
.faq__inner,
.kontakt__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	margin-top: 0;
	margin-bottom: 1.5rem;
	font-size: 1.75rem;
	color: var(--color-text);
}

/* ========== Hero (pełnoekran, zdjęcie z ACF + gradient tylko po lewej, treść lewa) ========== */
.hero--full {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 75vh;
	width: 100%;
	background-color: #0f1629;
	background-image: var(--hero-bg-url, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* Overlay: gradient tylko od lewej (ok. 80% krycia), prawa strona zdjęcia bez przyciemnienia */
.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(15, 22, 41, 0.82) 0%,
		rgba(15, 22, 41, 0.5) 35%,
		rgba(15, 22, 41, 0.15) 60%,
		rgba(15, 22, 41, 0) 75%,
		transparent 100%
	);
	pointer-events: none;
}

.hero--full .hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 1.5rem;
	width: 100%;
	text-align: left;
}

.hero__title {
	margin: 0 0 0.75rem;
	color: #ffffff;
	font-size: clamp(1.75rem, 4.5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	animation: heroFadeIn 0.8s ease-out;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero__title-highlight {
	color: var(--color-secondary, #FFFF01);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
	margin: 0 0 1.75rem;
	color: rgba(255, 255, 255, 0.98);
	font-size: clamp(1rem, 2vw, 1.15rem);
	line-height: 1.5;
	max-width: 520px;
	animation: heroFadeIn 0.8s ease-out 0.15s both;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero__cta {
	animation: heroFadeIn 0.8s ease-out 0.3s both;
}

.button--hero-cta {
	background: var(--color-secondary, #FFFF01);
	color: var(--color-text, #1a1a1a);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.95rem;
	padding: 0.85rem 1.75rem;
	border-radius: 4px;
	transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.button--hero-cta:hover {
	background: var(--color-primary, #FB0000);
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(251, 0, 0, 0.4);
	text-decoration: none;
}

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

/* Hero strona główna – mobile: niższa sekcja, tło przesunięte w prawo (sprzęt na zdjęciu) */
@media (max-width: 900px) {
	.hero--full {
		min-height: 48vh;
		background-position: 82% center;
		background-size: cover;
	}

	.hero--full .hero__inner {
		padding: 1.75rem 1.25rem 1.5rem;
	}

	.hero__title {
		font-size: clamp(1.35rem, 5.5vw, 1.85rem);
	}

	.hero__subtitle {
		font-size: clamp(0.9rem, 3.2vw, 1.05rem);
		margin-bottom: 1.25rem;
	}

	/* Mocniejszy gradient po lewej – tekst czytelny przy przesuniętym tle */
	.hero__overlay {
		background: linear-gradient(
			to right,
			rgba(15, 22, 41, 0.92) 0%,
			rgba(15, 22, 41, 0.65) 42%,
			rgba(15, 22, 41, 0.2) 68%,
			rgba(15, 22, 41, 0) 82%,
			transparent 100%
		);
	}
}

/* ========== Hero O nas (podstrona O nas – split, wzór kropek, zakładki) ========== */
.hero-o-nas {
	background: #ffffff;
	padding: 4rem 1.5rem 5rem;
}

.hero-o-nas__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.hero-o-nas__col--media {
	min-width: 0;
}

.hero-o-nas__media-wrap {
	position: relative;
}

/* Wzór siatki kropek – subtelna szara warstwa w tle (lewy górny), dopasowana do kwadratu */
.hero-o-nas__dot-grid {
	position: absolute;
	top: 0;
	left: 0;
	width: 85%;
	height: 85%;
	max-width: 420px;
	max-height: 420px;
	aspect-ratio: 1 / 1;
	background-image: radial-gradient(circle, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
	background-size: 14px 14px;
	background-color: rgba(245, 245, 245, 0.6);
	border-radius: 6px;
	z-index: 0;
	pointer-events: none;
}

/* Grafika hero O nas – zawsze kwadrat, obraz dopasowuje się (cover) */
.hero-o-nas__image-wrap {
	position: relative;
	z-index: 1;
	aspect-ratio: 1 / 1;
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.hero-o-nas__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	vertical-align: middle;
}

.hero-o-nas__img--placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #e5e5e5 0%, #ccc 100%);
}

/* Wstawka wideo – prawy dolny róg, pomarańczowy play */
.hero-o-nas__video-inset {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 140px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

.hero-o-nas__video-inset:hover {
	transform: scale(1.03);
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
}

.hero-o-nas__video-inset img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-o-nas__video-play {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-o-nas__video-play svg {
	width: 56px;
	height: 56px;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* Prawa kolumna – treść */
.hero-o-nas__col--content {
	min-width: 0;
}

.hero-o-nas__pre {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 0.75rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-topbar, #0f1629);
}

.hero-o-nas__pre::before,
.hero-o-nas__pre::after {
	content: '';
	display: inline-block;
	width: 28px;
	height: 2px;
	background: var(--color-primary, #FB0000);
}

.hero-o-nas__title {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-topbar, #0f1629);
}

.hero-o-nas__intro {
	margin-bottom: 1.25rem;
	color: #555;
	font-size: 1rem;
	line-height: 1.65;
}

.hero-o-nas__intro p {
	margin: 0 0 0.5rem;
}

.hero-o-nas__intro p:last-child {
	margin-bottom: 0;
}

/* Zakładki */
.hero-o-nas__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin-bottom: 1rem;
	border-bottom: 1px solid #e5e5e5;
}

.hero-o-nas__tab {
	padding: 0.65rem 1.1rem;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: none;
	background: #f0f0f0;
	color: #333;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	border-radius: 4px 4px 0 0;
	margin-bottom: -1px;
}

.hero-o-nas__tab:hover {
	background: #e5e5e5;
	color: #1a1a1a;
}

.hero-o-nas__tab.is-active {
	background: var(--color-primary, #FB0000);
	color: #ffffff;
}

.hero-o-nas__panels {
	margin-bottom: 1.5rem;
}

.hero-o-nas__panel {
	display: none;
	color: #444;
	font-size: 1rem;
	line-height: 1.7;
}

.hero-o-nas__panel.is-active {
	display: block;
}

.hero-o-nas__panel p {
	margin: 0 0 0.5rem;
}

.hero-o-nas__panel p:last-child {
	margin-bottom: 0;
}

.hero-o-nas__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.5rem;
	background: var(--color-topbar, #0f1629);
	color: #ffffff;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.25s, color 0.25s;
}

.hero-o-nas__cta:hover {
	background: var(--color-primary, #FB0000);
	color: #fff;
	text-decoration: none;
}

.hero-o-nas__cta-arrow {
	flex-shrink: 0;
}

@media (max-width: 900px) {
	.hero-o-nas {
		padding: 3rem 1rem 4rem;
	}

	.hero-o-nas__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.hero-o-nas__col--content {
		order: -1;
	}

	.hero-o-nas__col--media {
		order: 0;
	}

	.hero-o-nas__dot-grid {
		max-width: 100%;
		max-height: min(85vw, 320px);
	}

	.hero-o-nas__video-inset {
		width: 100px;
		height: 100px;
		bottom: 0.75rem;
		right: 0.75rem;
	}

	.hero-o-nas__video-play svg {
		width: 40px;
		height: 40px;
	}
}

/* ========== Ciemna sekcja O nas ze statystykami (split, parallax, outline CTA) ========== */
.o-nas-dark {
	position: relative;
	background: #0a0e18;
	color: #ffffff;
	padding: 5rem 1.5rem 5.5rem;
	overflow: hidden;
}

.o-nas-dark__bg-image {
	position: absolute;
	inset: 0;
	background-image: var(--o-nas-dark-bg-url, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.15;
	pointer-events: none;
	z-index: 0;
}

.o-nas-dark[data-parallax-bg="1"] .o-nas-dark__bg-image {
	background-attachment: fixed;
}

/* Nakładka przyciemiająca tło – mocniejsze przyciemnienie */
.o-nas-dark__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	pointer-events: none;
	z-index: 0.5;
}

.o-nas-dark__glow {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 55%;
	background: radial-gradient(
		ellipse 120% 80% at 50% -20%,
		rgba(255, 120, 60, 0.12) 0%,
		rgba(200, 80, 40, 0.06) 35%,
		transparent 60%
	);
	pointer-events: none;
	z-index: 0;
}

.o-nas-dark__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.o-nas-dark__col--media {
	min-width: 0;
}

.o-nas-dark__media-wrap {
	position: relative;
}

/* Grafika w kwadracie, obraz dopasowuje się (cover) */
.o-nas-dark__image-wrap {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 100%;
	overflow: hidden;
	border-radius: 12px;
}

.o-nas-dark__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 12px;
	vertical-align: middle;
}

.o-nas-dark__img--placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
	border-radius: 12px;
}

/* Pływające bloki statystyk – nachodzą na dolną krawędź zdjęcia */
.o-nas-dark__stats {
	display: flex;
	margin-top: -4rem;
	position: relative;
	z-index: 2;
	gap: 0;
}

.o-nas-dark__stat {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.5rem 1rem;
	text-align: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.o-nas-dark__stat:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.o-nas-dark__stat--left {
	background: var(--color-primary, #FB0000);
	color: #ffffff;
	border-radius: 0 0 0 12px;
}

.o-nas-dark__stat--right {
	background: #151a28;
	color: #ffffff;
	border-radius: 0 0 12px 0;
}

.o-nas-dark__stat-number {
	display: block;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 0.35rem;
	letter-spacing: 0.02em;
}

.o-nas-dark__stat-label {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.95;
	line-height: 1.3;
}

/* Prawa kolumna */
.o-nas-dark__col--content {
	min-width: 0;
}

.o-nas-dark__pre {
	margin: 0 0 0.75rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-primary, #FB0000);
}

.o-nas-dark__title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.5rem, 3.2vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	letter-spacing: 0.01em;
}

.o-nas-dark__content {
	margin-bottom: 1.75rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.05rem;
	line-height: 1.75;
}

.o-nas-dark__content p {
	margin: 0 0 0.85rem;
}

.o-nas-dark__content p:last-child {
	margin-bottom: 0;
}

/* Przycisk Outline – ramka, przezroczysty środek, strzałka w górę/prawo */
.o-nas-dark__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.5rem;
	background: transparent;
	color: #ffffff;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid var(--color-primary, #FB0000);
	border-radius: 4px;
	transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.o-nas-dark__cta:hover {
	background: var(--color-primary, #FB0000);
	color: #fff;
	border-color: var(--color-primary, #FB0000);
	text-decoration: none;
}

.o-nas-dark__cta-arrow {
	flex-shrink: 0;
}

@media (max-width: 900px) {
	.o-nas-dark {
		padding: 3.5rem 1rem 4rem;
	}

	.o-nas-dark__inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.o-nas-dark__col--media {
		order: 1;
	}

	.o-nas-dark__media-wrap {
		max-width: 480px;
		margin: 0 auto;
	}

	.o-nas-dark__stats {
		margin-top: -3rem;
	}

	.o-nas-dark__stat {
		padding: 1.25rem 0.75rem;
	}

	.o-nas-dark__stat-number {
		font-size: clamp(1.75rem, 6vw, 2.25rem);
	}

	.o-nas-dark[data-parallax-bg="1"] .o-nas-dark__bg-image {
		background-attachment: scroll;
	}
}

/* ========== O nas (dwie kolumny, akcenty graficzne, fade-in-up) ========== */
.section--o-nas {
	background: #f7f7f7;
	padding: 4rem 1.5rem;
}

.section--o-nas .o-nas__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.o-nas__col--text {
	min-width: 0;
}

.o-nas__pre {
	margin: 0 0 0.5rem;
	color: var(--color-topbar, #0f1629);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.o-nas__title {
	margin: 0 0 1rem;
	color: var(--color-topbar, #0f1629);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	line-height: 1.25;
}

.o-nas__title-highlight {
	color: var(--color-primary, #FB0000);
}

.o-nas__content {
	max-width: 52ch;
	margin-bottom: 1.5rem;
	color: #444;
	font-size: 1rem;
	line-height: 1.7;
}

.o-nas__content p {
	margin: 0 0 0.75rem;
}

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

.button--o-nas-cta {
	background: var(--color-secondary, #FFFF01);
	color: var(--color-text, #1a1a1a);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.8rem 1.5rem;
	border-radius: 4px;
	transition: background 0.25s, color 0.25s;
}

.button--o-nas-cta:hover {
	background: var(--color-primary, #FB0000);
	color: #fff;
	text-decoration: none;
}

/* Kompozycja zdjęciowa: zdjęcie zawsze w kwadracie, obraz dopasowuje się (cover) */
.o-nas__image-wrap {
	position: relative;
	aspect-ratio: 1 / 1;
	width: 100%;
	overflow: hidden;
	border-radius: 6px;
}

.o-nas__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 6px;
}

.o-nas__img--placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #e0e0e0 0%, #c5c5c5 100%);
	border-radius: 6px;
}

@media (max-width: 900px) {
	.section--o-nas .o-nas__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.o-nas__image-wrap {
		/* kwadrat zachowany (aspect-ratio 1/1) */
	}
}

/* Scroll: animacje wejścia sekcji (aktywowane przez JS – klasa .is-visible) */
.reveal-on-scroll .section--o-nas {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.reveal-on-scroll .section--o-nas.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-on-scroll .section--o-nas .o-nas__col--text {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease-out 0.1s, transform 0.5s ease-out 0.1s;
}

.reveal-on-scroll .section--o-nas .o-nas__col--image {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease-out 0.25s, transform 0.5s ease-out 0.25s;
}

.reveal-on-scroll .section--o-nas.is-visible .o-nas__col--text,
.reveal-on-scroll .section--o-nas.is-visible .o-nas__col--image {
	opacity: 1;
	transform: translateY(0);
}

.reveal-on-scroll .section--oferta {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.reveal-on-scroll .section--oferta.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-on-scroll .section--oferta .oferta__header {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s ease-out 0.15s, transform 0.5s ease-out 0.15s;
}

.reveal-on-scroll .section--oferta .oferta__carousel {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s ease-out 0.3s, transform 0.5s ease-out 0.3s;
}

.reveal-on-scroll .section--oferta.is-visible .oferta__header,
.reveal-on-scroll .section--oferta.is-visible .oferta__carousel {
	opacity: 1;
	transform: translateY(0);
}

.reveal-on-scroll .section--atuty {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll .section--atuty.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-on-scroll .section--opinie {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.reveal-on-scroll .section--opinie.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-on-scroll .section--opinie .opinie__header {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.5s ease-out 0.15s, transform 0.5s ease-out 0.15s;
}

.reveal-on-scroll .section--opinie .opinie__widget,
.reveal-on-scroll .section--opinie .opinie__grid,
.reveal-on-scroll .section--opinie .opinie__empty {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.5s ease-out 0.35s, transform 0.5s ease-out 0.35s;
}

.reveal-on-scroll .section--opinie.is-visible .opinie__header,
.reveal-on-scroll .section--opinie.is-visible .opinie__widget,
.reveal-on-scroll .section--opinie.is-visible .opinie__grid,
.reveal-on-scroll .section--opinie.is-visible .opinie__empty {
	opacity: 1;
	transform: translateY(0);
}

.reveal-on-scroll .section--split-faq-kontakt {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.reveal-on-scroll .section--split-faq-kontakt.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-on-scroll .section--split-faq-kontakt .split-faq {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s ease-out 0.12s, transform 0.5s ease-out 0.12s;
}

.reveal-on-scroll .section--split-faq-kontakt .split-contact {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s ease-out 0.28s, transform 0.5s ease-out 0.28s;
}

.reveal-on-scroll .section--split-faq-kontakt.is-visible .split-faq,
.reveal-on-scroll .section--split-faq-kontakt.is-visible .split-contact {
	opacity: 1;
	transform: translateY(0);
}

/* ========== Oferta – karuzela boxów (CPT Usługi) ========== */
.section--oferta {
	background: #F1F1F1;
	padding: 4rem 1.5rem;
}

.oferta__header {
	margin-bottom: 2rem;
	text-align: left;
}

.oferta__title {
	margin: 0 0 0.35rem;
	color: var(--color-topbar, #0f1629);
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 700;
}

.oferta__subtitle {
	margin: 0;
	color: #555;
	font-size: 1rem;
}

.oferta__carousel {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}

.oferta__track {
	overflow: hidden;
	width: 100%;
}

.oferta__list {
	display: flex;
	gap: 1.5rem;
	transition: transform 0.4s ease-in-out;
	will-change: transform;
}

.oferta__card {
	flex: 0 0 calc((100% - 3rem) / 3);
	min-width: 0;
}

.oferta__card-inner {
	display: flex;
	flex-direction: column;
	position: relative;
	height: 100%;
	min-height: 420px;
	background: #ffffff;
	border-radius: 8px;
	padding: 0;
	text-decoration: none;
	color: var(--color-text, #1a1a1a);
	overflow: hidden;
	transition: box-shadow 0.3s ease;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.oferta__card-body {
	flex: 1 1 auto;
	min-height: 0;
	padding: 0 1.5rem 1.5rem 0;
}

.oferta__card-inner:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.oferta__card-inner[aria-disabled="true"] {
	cursor: default;
	pointer-events: none;
}

.oferta__card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	padding-left: 0;
	padding-top: 0;
	position: relative;
	z-index: 1;
}

.oferta__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	background: var(--color-topbar, #0f1629);
	color: #ffffff;
	border-radius: 8px 0 12px 0;
	flex-shrink: 0;
	transition: background 0.25s ease, color 0.25s ease;
}

.oferta__card-icon svg,
.oferta__card-icon-img {
	width: 36px;
	height: 36px;
	display: block;
}

.oferta__card-icon svg {
	color: inherit;
}

.oferta__card-icon-img {
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.oferta__card-inner:hover .oferta__card-icon {
	background: var(--color-primary, #FB0000);
	color: #ffffff;
}

.oferta__card-number {
	font-size: 4rem;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.07);
	line-height: 1;
	position: relative;
	z-index: 1;
	transition: color 0.25s ease;
}

.oferta__card-inner:hover .oferta__card-number {
	color: var(--color-secondary, #FFFF01);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35), 0 0 1px rgba(0, 0, 0, 0.2);
}

.oferta__card-line {
	height: 0;
	border: none;
	border-top: 2px dashed rgba(0, 0, 0, 0.2);
	margin: 0 0 1rem;
	margin-left: 1.5rem;
	position: relative;
	z-index: 1;
}

.oferta__card-title {
	margin: 0 0 0.5rem;
	margin-left: 1.5rem;
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.25;
	color: var(--color-topbar, #0f1629);
	position: relative;
	z-index: 1;
	transition: color 0.25s;
	text-decoration: none;
}

.oferta__card-inner:hover .oferta__card-title {
	color: var(--color-primary, #FB0000);
	text-decoration: none;
}

.oferta__card-desc {
	margin: 0 0 0 1.5rem;
	font-size: 0.85rem;
	line-height: 1.45;
	color: #555;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.oferta__card-bg {
	flex: 0 0 auto;
	position: relative;
	left: 0;
	right: 0;
	height: 200px;
	min-height: 200px;
	z-index: 0;
	overflow: hidden;
}

.oferta__card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.oferta__card-inner:hover .oferta__card-img {
	transform: scale(1.08);
}

.oferta__card-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: calc(var(--overlay-opacity, 80) / 100);
	transition: opacity 0.35s ease;
}

.oferta__card-inner:hover .oferta__card-overlay {
	opacity: 0.35;
}

.oferta__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	left: auto;
	right: auto;
	border: none;
	border-radius: 4px;
	background: var(--color-secondary, #FFFF01);
	color: var(--color-text, #1a1a1a);
	cursor: pointer;
	z-index: 3;
	transition: background 0.2s, color 0.2s;
}

.oferta__nav:hover {
	background: var(--color-primary, #FB0000);
	color: #fff;
}

.oferta__nav--prev {
	left: 12px;
}

.oferta__nav--next {
	right: 12px;
}

.oferta__nav::after {
	content: "";
	position: absolute;
	inset: 0;
	background: no-repeat center;
	background-size: 20px;
}

.oferta__nav--prev::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
}

.oferta__nav--next::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
}

.oferta__dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.25rem;
	flex-wrap: wrap;
}

.oferta__dots button {
	width: 10px;
	height: 10px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	cursor: pointer;
	padding: 0;
	transition: background 0.2s, transform 0.2s;
}

.oferta__dots button:hover {
	background: rgba(0, 0, 0, 0.35);
}

.oferta__dots button.is-active {
	background: var(--color-primary, #FB0000);
	transform: scale(1.2);
}

@media (max-width: 900px) {
	.oferta__card {
		flex: 0 0 100%;
	}

	.oferta__carousel {
		padding: 0 0.5rem;
	}

	.oferta__nav--prev {
		left: 8px;
	}

	.oferta__nav--next {
		right: 8px;
	}
}

/* Strona Usługi – grid zamiast karuzeli (te same boxy) */
.section--uslugi-grid .oferta__list--grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	transition: none;
	will-change: auto;
}

.section--uslugi-grid .oferta__card {
	flex: none;
	min-width: 0;
}

@media (max-width: 900px) {
	.section--uslugi-grid .oferta__list--grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.section--uslugi-grid .oferta__list--grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}

/* ========== Atuty (cechy i atuty – 4 punkty, ciemne tło, żółte ikony) ========== */
.section--atuty {
	position: relative;
	padding: 0;
	min-height: 60vh;
	display: flex;
	flex-direction: column;
}

.atuty__strip {
	display: block;
	height: 6px;
	width: 100%;
	background: var(--color-secondary, #FFFF01);
	flex-shrink: 0;
}

.atuty__bg {
	position: absolute;
	inset: 0;
	top: 6px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.atuty__bg--placeholder {
	background-color: var(--color-topbar, #0f1629);
}

.atuty__overlay {
	position: absolute;
	inset: 0;
	top: 6px;
	background: rgba(15, 22, 41, 0.88);
	pointer-events: none;
}

.atuty__inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 1.5rem 4rem;
	width: 100%;
}

.atuty__heading {
	margin: 0 0 0.5rem;
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.25;
	color: #ffffff;
}

.atuty__title-highlight {
	color: var(--color-secondary, #FFFF01);
}

.atuty__line {
	display: inline-block;
	width: 60px;
	height: 3px;
	background: var(--color-secondary, #FFFF01);
	margin-bottom: 2.5rem;
}

.atuty__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem 3rem;
}

.atuty__item {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.section--atuty.is-visible .atuty__item {
	opacity: 1;
	transform: translateY(0);
}

.section--atuty.is-visible .atuty__item[data-atuty-index="0"] { transition-delay: 0.1s; }
.section--atuty.is-visible .atuty__item[data-atuty-index="1"] { transition-delay: 0.2s; }
.section--atuty.is-visible .atuty__item[data-atuty-index="2"] { transition-delay: 0.3s; }
.section--atuty.is-visible .atuty__item[data-atuty-index="3"] { transition-delay: 0.4s; }

.atuty__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	color: #FFFF01;
}

.atuty__icon svg,
.atuty__icon-img {
	width: 56px;
	height: 56px;
	display: block;
}

.atuty__icon svg {
	color: inherit;
	stroke: currentColor;
}

.atuty__icon-img {
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(89%) sepia(92%) saturate(1000%) hue-rotate(0deg);
}

.atuty__content {
	flex: 1;
	min-width: 0;
}

.atuty__item-title {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.atuty__item-desc {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
	max-width: 42ch;
}

@media (max-width: 640px) {
	.atuty__grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.atuty__inner {
		padding: 2.5rem 1rem 3rem;
	}
}

/* ========== Opinie (Trustindex / Google) – biała sekcja, shortcode ========== */
.section--opinie {
	background: #ffffff;
	padding: 4.5rem 1.5rem;
}

.opinie__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.opinie__header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.opinie__pre {
	margin: 0 0 0.5rem;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-topbar, #0f1629);
}

.opinie__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.25;
	color: var(--color-text, #1a1a1a);
}

.opinie__line {
	display: block;
	width: 60px;
	height: 3px;
	margin: 0 auto;
	background: var(--color-primary, #FB0000);
}

.opinie__widget {
	max-width: 1100px;
	margin: 0 auto;
}

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

.opinie__empty {
	margin: 0 auto;
	padding: 2rem 1rem;
	text-align: left;
	font-size: 0.95rem;
	color: var(--color-text-muted, #555);
	max-width: 42em;
}

.opinie__empty p {
	margin: 0 0 1rem;
}

.opinie__empty ol {
	margin: 0;
	padding-left: 1.25rem;
	line-height: 1.6;
}

.opinie__empty li {
	margin-bottom: 0.5rem;
}

.opinie__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.opinie__item {
	margin: 0;
	padding: 1.5rem;
	background: #f9f9f9;
	border-left: 4px solid var(--color-primary);
	border-radius: 4px;
}

.opinie__text {
	margin: 0 0 0.75rem;
	font-style: italic;
}

.opinie__author {
	display: block;
	font-style: normal;
	font-weight: 600;
}

.opinie__rating {
	display: inline-block;
	margin-top: 0.25rem;
	font-size: 0.9rem;
	color: var(--color-secondary-dark);
}

/* ========== Obszar dzialania (tekst + mapa SVG) ========== */
.section--obszar-dzialania {
	background: #ffffff;
	padding: 4rem 1.5rem;
}

.obszar-dzialania__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 2rem;
	align-items: start;
}

.obszar-dzialania__title {
	margin: 0 0 1rem;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.25;
	color: var(--color-topbar, #0f1629);
}

.obszar-dzialania__intro {
	margin: 0 0 1.25rem;
	color: #333;
	line-height: 1.7;
}

.obszar-dzialania__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}

.obszar-dzialania__list li {
	position: relative;
	padding-left: 1.35rem;
	line-height: 1.45;
	color: #222;
}

.obszar-dzialania__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 0.58rem;
	height: 0.58rem;
	border-radius: 50%;
	background: var(--color-secondary, #FFFF01);
	box-shadow: 0 0 0 2px rgba(15, 22, 41, 0.22);
}

.obszar-dzialania__map-wrap {
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mapa-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#nazwa-powiatu {
	text-align: center;
	height: 30px;
	color: #333;
	margin: 0 0 10px;
	font-size: 1.2rem;
	font-weight: 700;
	transition: all 0.3s;
}

.mapa-wrapper svg {
	display: block;
	width: 100%;
	max-width: 500px;
	height: auto;
}

.mapa-wrapper .powiat {
	transition: fill 0.3s ease, transform 0.2s ease;
	cursor: pointer;
	outline: none;
	stroke: #fff;
	stroke-width: 1.5;
}

.mapa-wrapper .powiat.oscie {
	fill: #e0e0e0;
}

.mapa-wrapper .powiat.glowny {
	fill: #FFFF01 !important;
	stroke-width: 2;
}

.mapa-wrapper .powiat:hover {
	fill: #FB0000 !important;
}

@media (max-width: 900px) {
	.obszar-dzialania__inner {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

@media (max-width: 767px) {
	.section--obszar-dzialania {
		padding-left: 10px;
		padding-right: 10px;
	}

	.obszar-dzialania__inner {
		padding-left: 10px;
		padding-right: 10px;
	}

	.obszar-dzialania__map-wrap {
		display: flex;
		justify-content: center;
		margin: 0 auto;
		padding: 0 !important;
		width: 100% !important;
	}

	.mapa-wrapper {
		width: 100% !important;
		max-width: none !important;
		margin: 0 auto;
		padding: 0 !important;
	}

	.mapa-wrapper svg {
		width: 100% !important;
		max-width: none !important;
		height: auto !important;
	}

	#nazwa-powiatu {
		text-align: center;
		font-size: 1rem;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
}

/* ========== Split FAQ + Kontakt (białe tło sekcji, ciemny box formularza) ========== */
.section--split-faq-kontakt {
	background: #F1F1F1;
	padding: 4rem 1.5rem;
}

.split-faq-kontakt__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	align-items: start;
}

.split-faq__title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.2rem, 2.5vw, 1.5rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.3;
	color: var(--color-topbar, #0f1629);
}

.split-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.split-faq__item {
	margin: 0;
	border-bottom: 1px solid rgba(255, 193, 7, 0.4);
}

.split-faq__item:last-child {
	border-bottom: none;
}

.split-faq__question {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	padding: 1rem 0;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-topbar, #0f1629);
	text-align: left;
	list-style: none;
	transition: color 0.2s;
}

.split-faq__question::-webkit-details-marker {
	display: none;
}

.split-faq__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	color: var(--color-primary, #FB0000);
	font-size: 1.25rem;
	line-height: 1;
	font-weight: 400;
}

.split-faq__icon::before {
	content: '+';
}

.split-faq__item[open] .split-faq__icon::before {
	content: '−';
}

.split-faq__question-text {
	flex: 1;
}

.split-faq__answer {
	padding: 0 0 1rem 2.75rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--color-text-muted, #555);
}

.split-faq__answer p {
	margin: 0 0 0.5rem;
}

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

/* Prawa kolumna – biały box formularza */
.split-contact__box {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 2rem;
	position: relative;
	z-index: 1;
}

.split-contact__title {
	margin: 0 0 0.5rem;
	font-size: 1.35rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--color-topbar, #0f1629);
}

.split-contact__intro {
	margin: 0 0 1.5rem;
	font-size: 0.95rem;
	color: var(--color-text-muted, #555);
	line-height: 1.45;
}

/* Formularz w szarym boxie – ciemne etykiety, pola z białym tłem, żółta linia przy focus */
.split-contact__form .form-contact__row label {
	color: var(--color-text, #1a1a1a);
}

.split-contact__form .form-contact__row input,
.split-contact__form .form-contact__row textarea {
	background: #ffffff;
	color: var(--color-text, #1a1a1a);
	border: none;
	border-bottom: 2px solid transparent;
	border-radius: 4px;
	padding: 0.65rem 0.75rem;
	transition: border-color 0.2s, background 0.2s;
}

.split-contact__form .form-contact__row input:focus,
.split-contact__form .form-contact__row textarea:focus {
	outline: none;
	background: #ffffff;
	border-bottom-color: var(--color-secondary, #FFFF01);
}

.split-contact__form .form-contact__submit {
	margin-top: 1.25rem;
	margin-bottom: 0;
}

.split-contact__form .button--split-submit {
	display: block;
	width: 100%;
	padding: 1rem 1.5rem;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: var(--color-primary, #FB0000);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s;
}

.split-contact__form .button--split-submit:hover {
	background: var(--color-primary-dark, #d90000);
	color: #ffffff;
}

/* Sukces – ukrycie formularza, zielony komunikat (na ciemnym tle jasny) */
.split-contact__success {
	padding: 1.5rem 0;
}

.split-contact__success[hidden] {
	display: none;
}

.split-contact__success-text {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: #2e7d32;
	text-align: center;
	line-height: 1.5;
}

@media (max-width: 900px) {
	.split-faq-kontakt__inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.split-contact__box {
		order: -1;
	}
}

/* FAQ (stare sekcje – np. inne szablony) */
.faq__list {
	max-width: 640px;
}

.faq__item {
	margin-bottom: 0.5rem;
	border: 1px solid #eee;
	border-radius: 4px;
	overflow: hidden;
}

.faq__question {
	padding: 1rem 1.25rem;
	cursor: pointer;
	font-weight: 600;
	list-style: none;
}

.faq__question::-webkit-details-marker {
	display: none;
}

.faq__answer {
	padding: 0 1.25rem 1rem;
	border-top: 1px solid #eee;
}

/* Kontakt */
.kontakt__intro {
	margin-bottom: 1.5rem;
	color: var(--color-text-muted);
}

.kontakt__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

@media (max-width: 768px) {
	.kontakt__grid {
		grid-template-columns: 1fr;
	}
}

.form-contact__row {
	margin-bottom: 1rem;
}

.form-contact__row label {
	display: block;
	margin-bottom: 0.25rem;
	font-weight: 500;
}

.form-contact__row input,
.form-contact__row textarea {
	width: 100%;
	padding: 0.5rem 0.75rem;
	font-size: 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.form-contact__row textarea {
	min-height: 100px;
	resize: vertical;
}

.form-contact__message {
	margin-top: 1rem;
	padding: 0.75rem;
	border-radius: 4px;
}

.form-contact__message.success {
	background: #e8f5e9;
	color: #2e7d32;
}

.form-contact__message.error {
	background: #ffebee;
	color: #c62828;
}

.kontakt__data p {
	margin: 0 0 0.75rem;
}

.kontakt__map {
	margin-top: 2rem;
	border-radius: 8px;
	overflow: hidden;
}

.kontakt__map iframe {
	width: 100%;
	height: 300px;
	border: 0;
}

/* ========== Sekcja kontaktowa 40/60 (strona Kontakt) ========== */
.section--kontakt-4060 {
	background: #f7f7f7;
	padding: 3rem 1.5rem 4rem;
}

.kontakt-4060__inner {
	display: grid;
	grid-template-columns: 40% 1fr;
	gap: 2.5rem 3rem;
	max-width: 1200px;
	margin: 0 auto;
	align-items: start;
}

.kontakt-4060__col--info {
	min-width: 0;
}

.kontakt-4060__pre {
	margin: 0 0 0.5rem;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-primary, #c41e3a);
}

.kontakt-4060__title {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.25;
	color: var(--color-text, #1a1a1a);
}

.kontakt-4060__intro {
	margin: 0 0 1.75rem;
	font-size: 1rem;
	line-height: 1.55;
	color: #444;
}

.kontakt-4060__intro p {
	margin: 0 0 0.5rem;
}

.kontakt-4060__intro p:last-child {
	margin-bottom: 0;
}

.kontakt-4060__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.kontakt-4060__card {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	padding: 1.5rem;
}

.kontakt-4060__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 0.75rem;
	color: var(--color-primary, #c41e3a);
}

.kontakt-4060__card-icon svg {
	width: 28px;
	height: 28px;
}

.kontakt-4060__card-title {
	margin: 0 0 0.5rem;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-text, #1a1a1a);
}

.kontakt-4060__card-text {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.45;
	color: #333;
}

.kontakt-4060__card-text a {
	color: inherit;
	text-decoration: none;
}

.kontakt-4060__card-text a:hover {
	text-decoration: underline;
	color: var(--color-primary, #c41e3a);
}

/* Prawa kolumna – biały boks formularza */
.kontakt-4060__col--form {
	min-width: 0;
}

.kontakt-4060__form-box {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	padding: 2.5rem;
}

.kontakt-4060__form-title {
	margin: 0 0 1.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-text, #1a1a1a);
}

.kontakt-4060__form .form-contact__row label {
	color: var(--color-text, #1a1a1a);
}

.kontakt-4060__form .form-contact__row input,
.kontakt-4060__form .form-contact__row textarea {
	background: #f5f5f5;
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 0.65rem 1rem;
	transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.kontakt-4060__form .form-contact__row input:focus,
.kontakt-4060__form .form-contact__row textarea:focus {
	outline: none;
	background: #fff;
	border-color: rgba(0, 0, 0, 0.12);
	box-shadow: 0 0 0 2px rgba(196, 30, 58, 0.15);
}

.kontakt-4060__form .form-contact__row input.is-invalid,
.kontakt-4060__form .form-contact__row textarea.is-invalid {
	border-color: var(--color-primary, #c41e3a);
	background: #fff5f5;
}

.kontakt-4060__form-row--half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.kontakt-4060__form .form-contact__submit {
	margin-top: 1.25rem;
	margin-bottom: 0;
}

.kontakt-4060__submit {
	display: block;
	width: 100%;
	padding: 1rem 1.5rem;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: var(--color-primary, #c41e3a);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.kontakt-4060__submit:hover {
	background: var(--color-primary-dark, #a01830);
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(196, 30, 58, 0.35);
}

.kontakt-4060__form .form-contact__message {
	margin-top: 1rem;
}

.kontakt-4060__success {
	padding: 1.5rem 0;
}

.kontakt-4060__success[hidden] {
	display: none !important;
}

.kontakt-4060__success-text {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: #2e7d32;
	text-align: center;
	line-height: 1.5;
}

/* Mapa na całą szerokość sekcji (pod blokiem 40/60) */
.kontakt-4060__map-wrap {
	width: 100%;
	height: 380px;
	margin-top: 2rem;
	min-height: 300px;
	background: #e8e8e8;
	border-radius: 0;
}

.kontakt-4060__map-wrap.leaflet-container {
	background: #e8e8e8;
	font: inherit;
}

@media (max-width: 900px) {
	.kontakt-4060__inner {
		grid-template-columns: 1fr;
	}

	.kontakt-4060__cards {
		grid-template-columns: 1fr;
	}

	.kontakt-4060__form-row--half {
		grid-template-columns: 1fr;
	}
}

/* ========== Footer (4 kolumny, ciemny granat, watermark) ========== */
.site-footer {
	position: relative;
	background: var(--color-topbar, #0f1629);
	color: rgba(255, 255, 255, 0.9);
	padding: 0 1.5rem 2rem;
	margin-top: 0;
	overflow: hidden;
}


/* Żółty pasek z linijką (na górze stopki) – na cały ekran */
.site-footer__yellow-bar {
	position: relative;
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	left: 0;
	right: 0;
	background: var(--color-secondary, #FFFF01);
	color: var(--color-topbar, #0f1629);
	padding: 1rem 1.5rem 1.25rem;
	margin-bottom: 0;
	box-sizing: border-box;
}

/* Linijka: krótsze i dłuższe kreski (jak na miarce) */
.site-footer__ruler {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 24px;
	display: block;
	border-top: 2px solid rgba(0, 0, 0, 0.22);
	background-image:
		repeating-linear-gradient(
			90deg,
			transparent 0,
			transparent 8px,
			rgba(0, 0, 0, 0.16) 8px,
			rgba(0, 0, 0, 0.16) 10px
		),
		repeating-linear-gradient(
			90deg,
			transparent 0,
			transparent 48px,
			rgba(0, 0, 0, 0.22) 48px,
			rgba(0, 0, 0, 0.22) 50px
		);
	background-size: 100% 45%, 100% 100%;
	background-position: 0 100%, 0 0;
	background-repeat: repeat-x;
}

.site-footer__yellow-bar-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-footer__yellow-bar-text {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--color-topbar, #0f1629);
}

.site-footer__yellow-bar-btn {
	display: inline-block;
	padding: 0.75rem 1.6rem;
	background: var(--color-topbar, #0f1629);
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.2s, color 0.2s;
}

.site-footer__yellow-bar-btn:hover {
	background: var(--color-primary, #FB0000);
	color: #fff;
}

.site-footer__watermark {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.04;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h2v60H0V0zm4 0h2v60H4V0zm4 0h2v60H8V0zm4 0h2v60h-2V0zm4 0h2v60h-2V0zm4 0h2v60h-2V0zm4 0h2v60h-2V0zm4 0h2v60h-2V0zm4 0h2v60h-2V0zm4 0h2v60h-2V0zM0 0v2h60V0H0zm0 4v2h60V4H0zm0 4v2h60V8H0zm0 4v2h60v-2H0zm0 4v2h60v-2H0zm0 4v2h60v-2H0zm0 4v2h60v-2H0zm0 4v2h60v-2H0zm0 4v2h60v-2H0zm0 4v2h60v-2H0z' fill='%23ffffff' fill-opacity='1'/%3E%3C/svg%3E");
}

.site-footer__inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 3.5rem;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem 2.5rem;
	margin-bottom: 2.5rem;
}

.site-footer__col-title {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #ffffff;
}

.site-footer__col-title::after {
	content: '';
	display: block;
	width: 50px;
	height: 3px;
	margin-top: 0.5rem;
	background: var(--color-secondary, #FFFF01);
}

.site-footer a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--color-secondary, #FFFF01);
	text-decoration: none;
}

/* Kolumna 1 – O firmie */
.site-footer__logo img {
	display: block;
	max-height: 48px;
	width: auto;
}

.site-footer__brand {
	display: inline-block;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #ffffff;
}

.site-footer__desc {
	margin: 1rem 0 1.25rem;
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
	max-width: 32ch;
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.site-footer__social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--color-secondary, #FFFF01);
	color: var(--color-topbar, #0f1629);
	border-radius: 50%;
	transition: background 0.2s, color 0.2s;
}

.site-footer__social-btn:hover {
	background: var(--color-primary, #FB0000);
	color: #ffffff;
}

.site-footer__social-icon {
	width: 18px;
	height: 18px;
	background: currentColor;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

/* Facebook: czerwona ikona na żółtym kole (SVG zamiast maski – stabilniejsze w WebKit) */
.site-footer__social-icon--facebook {
	background: transparent;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23FB0000' d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	mask-image: none;
	-webkit-mask-image: none;
}

.site-footer__social-btn:hover .site-footer__social-icon--facebook {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

.site-footer__social-icon--instagram { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E"); }
.site-footer__social-icon--linkedin { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E"); }
.site-footer__social-icon--youtube { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E"); }
.site-footer__social-icon--twitter { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E"); }

/* Kolumna 2 – Menu (bez kropek, czysta lista) */
.site-footer__nav,
.site-footer__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-left: 0;
}

.site-footer__nav li {
	list-style: none;
	margin-bottom: 0.85rem;
	line-height: 1.5;
}

.site-footer__nav a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.site-footer__nav a::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	background: var(--color-secondary, #FFFF01);
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
	mask-size: contain;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
	-webkit-mask-size: contain;
}

/* Kolumna 3 – Usługi */
.site-footer__services {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__services li {
	margin-bottom: 0.5rem;
}

.site-footer__services a {
	display: inline-block;
}

/* Kolumna 4 – Dane kontaktowe (duże ikony, duży tekst) */
.site-footer__contact-list {
	margin: 0;
	padding: 0;
}

.site-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
	line-height: 1.4;
}

.site-footer__contact-item:first-child {
	margin-bottom: 1rem;
}

.site-footer__contact-item:last-child {
	margin-bottom: 0;
}

.site-footer__contact-item a {
	font-size: inherit;
	font-weight: 500;
	color: #ffffff;
	text-decoration: none;
}

.site-footer__contact-item:first-child a {
	font-size: 1.35rem;
	font-weight: 600;
}

.site-footer__contact-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	background: var(--color-secondary, #FFFF01);
	mask-size: 28px 28px;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: 28px 28px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.site-footer__contact-icon--phone { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.site-footer__contact-icon--email { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E"); }
.site-footer__contact-icon--pin { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }

.site-footer__contact-item--address a,
.site-footer__contact-item--address span {
	line-height: 1.45;
}

.site-footer__contact-item--address a:hover {
	color: var(--color-secondary, #FFFF01);
	text-decoration: none;
}

/* Dolny pasek – copyright + wykonawca (subtelna linia) */
.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__copy {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
}

.site-footer__agency {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.site-footer__agency-label {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
}

.site-footer__agency-logo img,
.site-footer__agency-logo-img {
	display: block;
	max-height: 56px;
	width: auto;
	min-width: 72px;
	max-width: 280px;
	height: auto;
	object-fit: contain;
	object-position: left center;
}

/* Back to Top */
.back-to-top {
	position: fixed;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--color-secondary, #FFFF01);
	color: var(--color-topbar, #0f1629);
	border: none;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: transform 0.2s, background 0.2s;
}

.back-to-top:hover {
	background: var(--color-primary, #FB0000);
	color: #ffffff;
}

.back-to-top[hidden] {
	display: none !important;
}

.back-to-top:not([hidden]) {
	display: flex !important;
}

@media (max-width: 900px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.site-footer__bottom {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
}

/* ========== 404 ========== */
.error-404 {
	max-width: 600px;
	margin: 3rem auto;
	padding: 0 1.5rem;
	text-align: center;
}

.error-404__title {
	margin-bottom: 0.5rem;
}

.error-404__text {
	margin-bottom: 1.5rem;
	color: var(--color-text-muted);
}

/* ========== Breadcrumbs (global) ========== */
.breadcrumbs {
	padding: 0.75rem 1.5rem;
	background: #f5f5f5;
	font-size: 0.9rem;
}

.breadcrumbs__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.breadcrumbs__list a {
	color: var(--color-text-muted);
}

.breadcrumbs__list a:hover {
	color: var(--color-primary);
}

.breadcrumbs__list li:not(:last-child)::after {
	content: " / ";
	opacity: 0.6;
	margin: 0 0.25rem;
}

/* ========== Archiwum realizacji (portfolio grid + filtr) ========== */
.section--realizacje {
	background: #ffffff;
	padding: 2.5rem 1.5rem 4rem;
}

.realizacje-archive__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.realizacje-archive__filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.realizacje-archive__filter-btn {
	padding: 0.6rem 1.25rem;
	font-size: 0.95rem;
	font-weight: 600;
	border: none;
	border-radius: 6px;
	background: #e8e8e8;
	color: var(--color-topbar, #0f1629);
	cursor: pointer;
	transition: background 0.25s, color 0.25s;
}

.realizacje-archive__filter-btn:hover {
	background: #d8d8d8;
	color: var(--color-topbar, #0f1629);
}

.realizacje-archive__filter-btn.is-active {
	background: var(--color-primary, #FB0000);
	color: #ffffff;
}

.realizacje-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.realizacje-archive__card {
	margin: 0;
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.realizacje-archive__card.is-hidden {
	display: none;
}

.realizacje-archive__card-link {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	aspect-ratio: 4 / 3;
	background: #1a1f2e;
	text-decoration: none;
	color: inherit;
}

.realizacje-archive__card-img-wrap {
	position: absolute;
	inset: 0;
}

.realizacje-archive__card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.realizacje-archive__card-link:hover .realizacje-archive__card-img {
	transform: scale(1.05);
}

.realizacje-archive__card-img--placeholder {
	background: linear-gradient(135deg, #2a3142 0%, #1a1f2e 100%);
}

.realizacje-archive__card-panel {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.25rem 1rem 1rem;
	background: var(--color-topbar, #0f1629);
	color: #ffffff;
	transform: translateY(100%);
	transition: transform 0.3s ease-in-out;
	z-index: 1;
	min-height: 38%;
}

.realizacje-archive__card-link:hover .realizacje-archive__card-panel,
.realizacje-archive__card-link:focus .realizacje-archive__card-panel {
	transform: translateY(0);
}

.realizacje-archive__card-cat {
	display: block;
	font-size: 0.8rem;
	opacity: 0.9;
	margin-bottom: 0.25rem;
}

.realizacje-archive__card-title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.3;
	color: #ffffff;
}

.realizacje-archive__card-plus {
	position: absolute;
	top: -14px;
	right: 1rem;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-primary, #FB0000);
	border-radius: 4px;
	color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.realizacje-archive__card-plus svg {
	width: 24px;
	height: 24px;
}

.realizacje-archive__empty {
	margin: 2rem 0;
	grid-column: 1 / -1;
	text-align: center;
	color: #666;
}

@media (max-width: 900px) {
	.realizacje-archive__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

@media (max-width: 600px) {
	.realizacje-archive__grid {
		grid-template-columns: 1fr;
	}

	.section--realizacje {
		padding: 2rem 1rem 3rem;
	}
}

/* ========== Pojedyncza realizacja (hero, czarny panel, opis, galeria, nawigacja) ========== */
.single-realizacja-page {
	padding: 0;
	padding-bottom: 0;
	margin: 0;
	position: relative;
}

body.single-realizacje .site-main {
	padding-top: 0;
	margin-top: 0;
}

/* Warstwa przewijana – zawsze nad fixed hero; tło granat (żadna biała przerwa) */
.single-realizacja__scroll-layer {
	position: relative;
	z-index: 2;
	margin-top: 0;
	background: #0f1629;
	background: var(--color-topbar, #0f1629);
}

/* Breadcrumbs – na desktop absolute nad panelem (top = wysokość spacera), na mobile w flow nad grafiką */
.single-realizacja__breadcrumbs {
	position: absolute;
	top: 75vh;
	left: 0;
	right: 0;
	background: transparent;
	padding: 0.65rem 1.5rem;
	margin: 0;
	z-index: 3;
}

.single-realizacja__breadcrumbs-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.single-realizacja__breadcrumbs .breadcrumbs__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0.5rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.single-realizacja__breadcrumbs .breadcrumbs__list a {
	color: rgba(255, 255, 255, 0.95);
	text-decoration: none;
}

.single-realizacja__breadcrumbs .breadcrumbs__list a:hover {
	color: var(--color-secondary, #FFFF01);
}

.single-realizacja__breadcrumbs .breadcrumbs__list li:not(:last-child)::after {
	content: " / ";
	opacity: 0.7;
	margin-left: 0.25rem;
}

/* Hero – tło statyczne (fixed), przy scrollu warstwa .single-realizacja__scroll-layer przesuwa się nad nim */
.single-realizacja__hero {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	z-index: 0;
	background-color: #1a1a1a;
	background-image: var(--single-realizacja-hero-url);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	pointer-events: none;
}

/* Spacer przezroczysty – nie zasłania hero (fixed), tylko rezerwuje miejsce w flow */
.single-realizacja__hero-spacer {
	height: 75vh;
	position: relative;
	z-index: 0;
}

/* Na mobile/touch: breadcrumbs nad grafiką (w flow), hero przewija się z treścią */
@media (max-width: 900px) {
	.single-realizacja__breadcrumbs {
		position: static;
		top: auto;
		background: rgba(15, 22, 41, 0.95);
		background: color-mix(in srgb, var(--color-topbar, #0f1629) 95%, transparent);
		padding: 0.6rem 1.25rem;
		min-height: 2.5rem;
	}
	.single-realizacja__hero {
		position: relative;
		height: 300px;
		background-attachment: scroll;
		background-size: cover;
		background-position: center;
	}
	.single-realizacja__hero-spacer {
		height: 0;
		overflow: hidden;
	}
	.single-realizacja__panel,
	.single-realizacje .single-realizacja__panel {
		padding-top: 2.75rem;
		margin-top: 0;
	}
	.single-realizacja__breadcrumbs .breadcrumbs__list {
		gap: 0.2rem 0.35rem;
	}
	.single-realizacja__title {
		font-size: clamp(1.25rem, 4vw, 1.6rem);
		line-height: 1.2;
		margin-top: 0.5rem;
	}
}

/* Panel informacyjny – granat (#0f1629), nachodzi na hero/spacer (bez białej przerwy) */
.single-realizacja__panel,
.single-realizacje .single-realizacja__panel {
	background: #0f1629;
	background: var(--color-topbar, #0f1629);
	color: #ffffff;
	padding: 2.5rem 1.5rem 2.5rem 2rem;
	padding-top: 5.75rem;
	margin-top: -40px;
	position: relative;
	z-index: 1;
}

.single-realizacja__panel-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.single-realizacja__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
	color: #ffffff;
}

.single-realizacja__location {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	color: var(--color-secondary, #FFFF01);
}

.single-realizacja__location-icon {
	display: inline-flex;
	flex-shrink: 0;
}

.single-realizacja__location-icon svg {
	width: 20px;
	height: 20px;
	color: var(--color-secondary, #FFFF01);
}

.single-realizacja__category {
	margin: 0;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
}

.single-realizacja__category::before {
	content: '';
	display: block;
	width: 100%;
	max-width: 1200px;
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
	margin: 1.25rem 0 0.75rem;
}

/* Sekcja opisowa – granat (#0f1629), wąski kontener, biały tekst */
.single-realizacja__content-wrap,
.single-realizacje .single-realizacja__content-wrap {
	background: #0f1629;
	background: var(--color-topbar, #0f1629);
	color: #ffffff;
	padding: 2rem 1.5rem 3rem 2rem;
}

.single-realizacja__content-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.single-realizacja__content {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #ffffff;
	text-align: left;
}

.single-realizacja__content > * {
	text-align: left;
}

.single-realizacja__content p {
	margin: 0 0 1rem;
}

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

.single-realizacja__content a {
	color: var(--color-secondary, #FFFF01);
}

/* Galeria – grid, zaokrąglone rogi, tło granat */
.single-realizacja__gallery-wrap,
.single-realizacje .single-realizacja__gallery-wrap {
	background: #0f1629;
	background: var(--color-topbar, #0f1629);
	padding: 0 1.5rem 3rem;
}

.single-realizacja__gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	max-width: 1200px;
	margin: 0 auto;
}

.single-realizacja__gallery-item {
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.single-realizacja__gallery-thumb {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	text-align: left;
}

.single-realizacja__gallery-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: middle;
	border-radius: 10px;
	transition: opacity 0.25s;
}

.single-realizacja__gallery-thumb:hover img {
	opacity: 0.9;
}

@media (min-width: 900px) {
	.single-realizacja__gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.single-realizacja__gallery {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

/* Nawigacja między realizacjami */
.single-realizacja__nav,
.single-realizacje .single-realizacja__nav {
	background: #0f1629;
	background: var(--color-topbar, #0f1629);
	padding: 2rem 1.5rem 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.single-realizacja__nav-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
}

.single-realizacja__nav-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	max-width: 45%;
	padding: 0.85rem 1.25rem;
	border: 2px solid var(--color-secondary, #FFFF01);
	background: transparent;
	color: #ffffff;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: background 0.25s, color 0.25s;
}

.single-realizacja__nav-btn:hover {
	background: var(--color-secondary, #FFFF01);
	color: var(--color-topbar, #0f1629);
}

.single-realizacja__nav-btn--prev {
	text-align: left;
}

.single-realizacja__nav-btn--next {
	text-align: right;
	flex-direction: row-reverse;
	margin-left: auto;
}

.single-realizacja__nav-btn.is-disabled {
	opacity: 0.3;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0.3);
}

.single-realizacja__nav-arrow {
	flex-shrink: 0;
	color: var(--color-secondary, #FFFF01);
	font-size: 1.25rem;
}

.single-realizacja__nav-label {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.9;
}

.single-realizacja__nav-title {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.single-realizacja__nav-all {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.25s;
}

.single-realizacja__nav-all:hover {
	color: var(--color-secondary, #FFFF01);
}

@media (max-width: 768px) {
	.single-realizacja__nav-inner {
		flex-direction: column;
		align-items: stretch;
	}

	.single-realizacja__nav-btn {
		max-width: none;
	}

	.single-realizacja__nav-btn--next {
		margin-left: 0;
	}
}

/* Lightbox */
.single-realizacja__lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.92);
	padding: 2rem;
	box-sizing: border-box;
}

.single-realizacja__lightbox[hidden] {
	display: none;
}

.single-realizacja__lightbox-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 48px;
	height: 48px;
	border: none;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	border-radius: 4px;
	transition: background 0.2s;
}

.single-realizacja__lightbox-close:hover {
	background: rgba(255, 255, 255, 0.25);
}

.single-realizacja__lightbox-content {
	max-width: 95vw;
	max-height: 90vh;
}

.single-realizacja__lightbox-content img {
	max-width: 100%;
	max-height: 90vh;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* ========== Single Usługa (layout 65/35, sticky sidebar) ========== */
.single-uslugi--layout {
	display: grid;
	grid-template-columns: 65% 1fr;
	gap: 0;
	max-width: 1400px;
	margin: 0 auto;
	padding: 1.5rem 1.5rem 3rem;
	align-items: start;
}

.single-uslugi__main {
	background: #ffffff;
	padding-right: 2.5rem;
	min-width: 0;
}

.single-uslugi__sidebar {
	background: #f5f5f5;
	padding: 1.5rem;
	border-radius: 8px;
	position: sticky;
	top: 100px;
	min-width: 0;
}

/* Główna grafika hero */
.single-uslugi__hero-img-wrap {
	margin: 0 0 1.5rem;
	border-radius: 8px;
	overflow: hidden;
}

.single-uslugi__hero-img {
	width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: cover;
	display: block;
}

.single-uslugi__header {
	margin-bottom: 1.25rem;
}

.single-uslugi__title {
	margin: 0;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 700;
	line-height: 1.25;
	color: var(--color-text, #1a1a1a);
}

.single-uslugi__content {
	margin-bottom: 1.75rem;
	font-size: 1rem;
	line-height: 1.65;
	color: #333;
}

.single-uslugi__content p {
	margin: 0 0 1rem;
}

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

/* Galeria środkowa usługi – responsywna siatka */
.single-uslugi__gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.single-uslugi__gallery-item {
	border-radius: 8px;
	overflow: hidden;
}

.single-uslugi__gallery-thumb {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.single-uslugi__gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 4/3;
	transition: transform 0.25s ease;
}

.single-uslugi__gallery-thumb:hover img {
	transform: scale(1.03);
}

@media (max-width: 1024px) {
	.single-uslugi__gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.single-uslugi__gallery {
		grid-template-columns: 1fr;
	}
}

.single-uslugi__lightbox {
	position: fixed;
	inset: 0;
	z-index: 1200;
	background: rgba(8, 12, 20, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.single-uslugi__lightbox[hidden] {
	display: none !important;
}

.single-uslugi__lightbox-content {
	max-width: min(1200px, 88vw);
	max-height: 82vh;
}

.single-uslugi__lightbox-content img {
	max-width: 100%;
	max-height: 82vh;
	display: block;
	border-radius: 10px;
}

.single-uslugi__lightbox-close,
.single-uslugi__lightbox-nav {
	position: absolute;
	border: none;
	background: rgba(15, 22, 41, 0.75);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.single-uslugi__lightbox-close {
	top: 1rem;
	right: 1rem;
	width: 42px;
	height: 42px;
	border-radius: 6px;
	font-size: 1.75rem;
	line-height: 1;
}

.single-uslugi__lightbox-nav {
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 64px;
	border-radius: 6px;
	font-size: 2rem;
}

.single-uslugi__lightbox-nav--prev {
	left: 1rem;
}

.single-uslugi__lightbox-nav--next {
	right: 1rem;
}

/* FAQ (accordion – spójny z główną) */
.single-uslugi__faq {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e0e0e0;
}

.single-uslugi__faq-title {
	margin: 0 0 1rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-topbar, #0f1629);
}

.single-uslugi__faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.single-uslugi__faq-item {
	margin: 0;
	border-bottom: 1px solid rgba(255, 193, 7, 0.4);
}

.single-uslugi__faq-item:last-child {
	border-bottom: none;
}

.single-uslugi__faq-question {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	padding: 1rem 0;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-topbar, #0f1629);
	text-align: left;
	list-style: none;
	transition: color 0.2s;
}

.single-uslugi__faq-question::-webkit-details-marker {
	display: none;
}

.single-uslugi__faq-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	color: var(--color-primary, #c41e3a);
	font-size: 1.25rem;
	line-height: 1;
}

.single-uslugi__faq-icon::before {
	content: '+';
}

.single-uslugi__faq-item[open] .single-uslugi__faq-icon::before {
	content: '−';
}

.single-uslugi__faq-answer {
	padding: 0 0 1rem 2.75rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: #555;
}

.single-uslugi__faq-answer p {
	margin: 0 0 0.5rem;
}

.single-uslugi__faq-answer p:last-child {
	margin-bottom: 0;
}

/* Sidebar: wyszukiwarka */
.single-uslugi-sidebar__inner {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.single-uslugi-sidebar__nav-title {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--color-text, #1a1a1a);
	padding-bottom: 0.35rem;
	border-bottom: 3px solid var(--color-primary, #c41e3a);
}

.single-uslugi-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.single-uslugi-sidebar__list-item {
	margin: 0;
}

.single-uslugi-sidebar__link {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 0;
	color: #333;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.2s;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.single-uslugi-sidebar__list-item:last-child .single-uslugi-sidebar__link {
	border-bottom: none;
}

.single-uslugi-sidebar__link:hover {
	color: var(--color-primary, #c41e3a);
}

.single-uslugi-sidebar__link.is-active {
	font-weight: 700;
	color: var(--color-primary, #c41e3a);
}

.single-uslugi-sidebar__arrow {
	display: inline-flex;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background: currentColor;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain;
}

.single-uslugi-sidebar__link.is-active .single-uslugi-sidebar__arrow {
	color: var(--color-primary, #c41e3a);
}

.single-uslugi-sidebar__link-text {
	flex: 1;
	min-width: 0;
}

/* Download */
.single-uslugi-sidebar__download-title {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--color-text, #1a1a1a);
	padding-bottom: 0.35rem;
	border-bottom: 3px solid var(--color-primary, #c41e3a);
}

.single-uslugi-sidebar__download-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.25rem;
	background: var(--color-primary, #c41e3a);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 6px;
	transition: background 0.2s;
}

.single-uslugi-sidebar__download-btn:hover {
	background: var(--color-primary-dark, #a01830);
	color: #fff;
}

.single-uslugi-sidebar__download-icon {
	display: inline-flex;
	color: inherit;
}

.single-uslugi-sidebar__download-icon svg {
	width: 22px;
	height: 22px;
}

@media (max-width: 900px) {
	.single-uslugi--layout {
		grid-template-columns: 1fr;
		padding: 1.25rem 1rem 2rem;
	}

	.single-uslugi__main {
		order: 1;
		padding-right: 0;
	}

	.single-uslugi__sidebar {
		order: 2;
		position: static;
		top: auto;
	}
}
