/* ============================================================
   ZMIENNE GLOBALNE
   ============================================================ */
:root {
	/* Kolory tła */
	--ink: #0d0f0e;
	--ink-2: #161a18;
	--ink-3: #1f2522;
	--ink-4: #2a302d;
	--navy: #0d1b2a;
	--navy-mid: #152539;
	--slate: #1e3148;
	--slate-light: #2b4a6f;

	/* Akcent */
	--brass: #b08d57;
	--brass-light: #c9a96e;

	/* Tekst */
	--cream: #f4f1ec;
	--smoke: #e8e4dc;
	--muted: #8a9bae;
	--white: #ffffff;
	--text-body: #d6d8dc;
	--text-dark: #1a2535;

	/* Stopka – aliasy żeby nie trzeba było szukać */
	--fog: #8a9bae; /* = --muted  */
	--paper: #f4f1ec; /* = --cream  */
	--steel: #4e6480;
	--mist: #c0ccd8;
	--accent: #b08d57; /* = --brass  */

	/* Typografia stopki */
	--fm: 'Trebuchet MS', 'Gill Sans', sans-serif;
	--fd: 'Trebuchet MS', 'Gill Sans', sans-serif;

	/* Misc */
	--radius: 4px;
	--transition: 0.3s ease;
	--container: 1200px;
}

/* ============================================================
   RESET
   ============================================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Georgia', 'Times New Roman', serif;
	background: var(--ink-2);
	color: var(--text-body);
	line-height: 1.7;
	overflow-x: hidden;
}

/* ============================================================
   TYPOGRAFIA
   ============================================================ */
h1,
h2,
h3,
h4,
nav,
.btn,
.label {
	font-family: 'Trebuchet MS', 'Gill Sans', sans-serif;
	letter-spacing: 0.02em;
}
h1 {
	font-size: clamp(2rem, 5vw, 3.8rem);
	font-weight: 700;
	line-height: 1.15;
}
h2 {
	font-size: clamp(1.5rem, 3vw, 2.4rem);
	font-weight: 600;
	line-height: 1.25;
}
h3 {
	font-size: 1.15rem;
	font-weight: 600;
}
p {
	font-size: 1rem;
	line-height: 1.8;
}

/* ============================================================
   KONTENER
   ============================================================ */
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ============================================================
   WSPÓLNE ELEMENTY UI
   ============================================================ */
.brass-line {
	width: 56px;
	height: 2px;
	background: var(--brass);
	margin-bottom: 28px;
}

.label {
	display: inline-block;
	font-size: 0.72rem;
	font-family: 'Trebuchet MS', sans-serif;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--brass);
	margin-bottom: 14px;
	border: 1px solid var(--brass);
	padding: 3px 10px;
	border-radius: 2px;
}

.section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 64px;
}

.section-lead {
	color: var(--muted);
	font-size: 1rem;
	margin-top: 16px;
}

/* ============================================================
   PRZYCISKI
   ============================================================ */
.btn-primary {
	display: inline-block;
	background: var(--brass);
	color: var(--navy);
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 32px;
	border-radius: var(--radius);
	transition:
		background var(--transition),
		transform var(--transition);
}
.btn-primary:hover {
	background: var(--brass-light);
	transform: translateY(-2px);
}

.btn-ghost {
	display: inline-block;
	background: transparent;
	color: var(--white);
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 32px;
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.35);
	transition: all var(--transition);
}
.btn-ghost:hover {
	border-color: var(--brass);
	color: var(--brass-light);
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
#cookie-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--navy-mid);
	border-top: 1px solid var(--slate-light);
	z-index: 9999;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}
#cookie-bar p {
	font-size: 0.85rem;
	color: var(--muted);
	max-width: 700px;
}
#cookie-bar a {
	color: var(--brass-light);
	text-decoration: underline;
}
.cookie-btns {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}
.btn-cookie-accept {
	background: var(--brass);
	color: var(--navy);
	border: none;
	padding: 9px 22px;
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: var(--radius);
	transition: background var(--transition);
}
.btn-cookie-accept:hover {
	background: var(--brass-light);
}
.btn-cookie-reject {
	background: transparent;
	color: var(--muted);
	border: 1px solid var(--slate-light);
	padding: 9px 22px;
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: var(--radius);
	transition: all var(--transition);
}
.btn-cookie-reject:hover {
	border-color: var(--muted);
	color: var(--white);
}

/* ============================================================
   NAWIGACJA
   ============================================================ */
#navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	padding: 0 24px;
	box-sizing: border-box;
	transition:
		background var(--transition),
		box-shadow var(--transition);
}

#navbar.scrolled {
	background: rgba(13, 27, 42, 0.97);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-inner {
	max-width: var(--container);
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: 72px;
}

.nav-logo {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
	letter-spacing: 0.05em;
	flex: 0 0 auto;
}

.nav-logo span {
	color: var(--brass);
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 36px;
	list-style: none;
	padding: 0;
	margin: 0;
	width: auto;
	flex: 1 1 auto;
	min-width: 0;
	box-sizing: border-box;
	transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}

.nav-links a {
	color: var(--muted);
	text-decoration: none;
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.82rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: color var(--transition);
}

.nav-links a:hover {
	color: var(--brass-light);
}

.nav-active {
	color: var(--brass-light) !important;
}

.nav-cta {
	background: var(--brass);
	color: var(--navy) !important;
	padding: 9px 20px !important;
	border-radius: var(--radius);
	font-weight: 700 !important;
	transition: background var(--transition) !important;
}

.nav-cta:hover {
	background: var(--brass-light) !important;
	color: var(--navy) !important;
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
	background: none;
	border: none;
	flex: 0 0 auto;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
	#navbar {
		padding: 0 18px;
	}

	.nav-inner {
		gap: 16px;
	}

	.nav-links {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		background: var(--navy-mid);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		padding: 16px 0;
		transform: translateY(-110%);
		transition: transform var(--transition);
		border-bottom: 1px solid var(--slate-light);
		z-index: 999;
	}

	.nav-links.open {
		transform: translateY(0);
	}

	.nav-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.38);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition:
			opacity var(--transition),
			visibility var(--transition);
		z-index: 998;
	}

	.nav-overlay.open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.nav-links li {
		border-bottom: 1px solid var(--slate);
	}

	.nav-links a {
		display: block;
		padding: 14px 28px;
		font-size: 0.9rem;
	}

	.nav-cta {
		margin: 8px 24px;
		display: block;
		text-align: center;
	}

	.hamburger {
		display: flex;
		margin-left: auto;
	}
}

/* ============================================================
   HERO – strona główna
   ============================================================ */
#hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(135deg, rgba(13, 27, 42, 0.85) 40%, rgba(13, 27, 42, 0.5) 100%), url('../img/mini-img/huta.webp');
	background-size: cover;
	background-position: center;
}
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 720px;
	padding: 120px 0 80px;
}
.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
}
.hero-tag-line {
	width: 40px;
	height: 1px;
	background: var(--brass);
}
.hero-tag span {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--brass);
}
#hero h1 {
	color: var(--white);
	margin-bottom: 28px;

}
#hero h1 em {
	font-style: normal;
	color: var(--brass-light);
	border-bottom: 2px solid var(--brass);
	padding-bottom: 2px;
}
.hero-lead {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.72);
	max-width: 540px;
	margin-bottom: 44px;
	line-height: 1.85;
}
.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0.5;
	animation: scrollBob 2s ease-in-out infinite;
}
.hero-scroll span {
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--white);
}
.scroll-arrow {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, transparent, var(--brass));
}
@keyframes scrollBob {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(6px);
	}
}

/* ============================================================
   STATS BAR – wspólny dla wszystkich podstron
   ============================================================ */
#stats,
#wulk-stats {
	background: var(--navy-mid);
	border-top: 1px solid var(--slate);
	border-bottom: 1px solid var(--slate);
	padding: 36px 0;
}
.stats-grid {
	display: grid;
	grid-template-columns: 1fr 1px 1fr 1px 1fr;
	gap: 0;
	text-align: center;
	align-items: center;
}
.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 8px 32px;
}
.stat-num {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--brass-light);
	display: block;
}
.stat-label {
	font-size: 0.78rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 4px;
}
.stat-divider {
	width: 1px;
	height: 48px;
	background: var(--slate-light);
	justify-self: center;
}
@media (max-width: 600px) {
	.stat-divider {
		display: none;
	}
}

/* ============================================================
   SEKCJE – wspólne padding
   ============================================================ */
section {
	padding: 96px 0;
}

/* ============================================================
   O FIRMIE
   ============================================================ */
#about {
	background: var(--navy);
	position: relative;
	overflow-x: hidden;
}
#about::before {
	content: 'EVOMO';
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 9rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.015);
	letter-spacing: 0.1em;
	user-select: none;
	pointer-events: none;
}
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
@media (max-width: 900px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}
.about-text h2 {
	color: var(--white);
	margin-bottom: 20px;
}
.about-text p {
	color: var(--muted);
	margin-bottom: 18px;
}
.about-pillars {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 36px;
}
.pillar {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 20px 22px;
	background: var(--navy-mid);
	border-left: 3px solid var(--brass);
	border-radius: 0 var(--radius) var(--radius) 0;
}
.pillar-icon {
	font-size: 1.4rem;
	flex-shrink: 0;
	margin-top: 2px;
}
.pillar-title {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 5px;
}
.pillar-desc {
	font-size: 0.85rem;
	color: var(--muted);
}
.about-visual {
	position: relative;
}
.about-img-wrap {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}
.about-img-wrap img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
	filter: brightness(0.85) saturate(0.9);
}
.about-img-badge {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: var(--navy-mid);
	border: 1px solid var(--brass);
	padding: 16px 22px;
	border-radius: var(--radius);
}
.about-img-badge strong {
	display: block;
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 1.6rem;
	color: var(--brass-light);
	font-weight: 700;
}
.about-img-badge span {
	font-size: 0.78rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* ============================================================
   PRODUKTY – WSPÓLNE STYLE (wulkanit, cynkal)
   ============================================================ */
#wulkanit {
	background: var(--navy);
}
#cynkal {
	background: var(--slate);
}
.product-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}
.product-block.reverse {
	direction: rtl;
}
.product-block.reverse > * {
	direction: ltr;
}
@media (max-width: 900px) {
	.product-block,
	.product-block.reverse {
		grid-template-columns: 1fr;
		direction: ltr;
	}
}
.product-img {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
}
.product-img img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	display: block;
	filter: brightness(0.85) saturate(0.8);
	transition: transform 0.6s ease;
}
.product-img:hover img {
	transform: scale(1.04);
}
.product-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13, 27, 42, 0.6) 0%, transparent 60%);
}
.product-text h2 {
	color: var(--white);
	margin-bottom: 20px;
}
.product-text .product-desc {
	font-size: 1rem;
	color: var(--muted);
	line-height: 1.85;
	margin-bottom: 32px;
	border-left: 3px solid var(--brass);
	padding-left: 20px;
}
.product-features {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 36px;
}
.feature-row {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 0.88rem;
	color: var(--text-body);
}
.feature-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--brass);
	flex-shrink: 0;
}

/* ============================================================
   BAZA WIEDZY – PAGE HERO
   ============================================================ */
#bw-hero {
	position: relative;
	min-height: 65vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.bw-hero-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(135deg, rgba(13, 27, 42, 0.93) 50%, rgba(13, 27, 42, 0.6) 100%),
		url('../img/main-img//wulkanit-rafinacja-cynku.webp');
	background-size: cover;
	background-position: center;
}
.bw-hero-content {
	position: relative;
	z-index: 2;
	max-width: 680px;
	padding: 140px 0 80px;
}
#bw-hero h1 em {
	font-style: normal;
	color: var(--brass-light);
	border-bottom: 2px solid var(--brass);
	padding-bottom: 2px;
}

/* ============================================================
   BAZA WIEDZY – SEKCJA ARTYKUŁÓW
   ============================================================ */
#artykuly {
	background: var(--navy);
	padding: 100px 0 80px;
}

/* Nagłówek + wyszukiwarka */
.bw-top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.bw-top h2 {
	color: var(--white);
}
.bw-search-wrap {
	position: relative;
	flex-shrink: 0;
}
.bw-search-wrap input {
	background: var(--navy-mid);
	border: 1px solid var(--slate-light);
	border-radius: var(--radius);
	color: var(--white);
	font-family: 'Georgia', serif;
	font-size: 0.9rem;
	padding: 11px 40px 11px 16px;
	width: 280px;
	outline: none;
	transition:
		border-color var(--transition),
		box-shadow var(--transition);
}
.bw-search-wrap input:focus {
	border-color: var(--brass);
	box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.12);
}
.bw-search-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 0.9rem;
	opacity: 0.5;
}
@media (max-width: 640px) {
	.bw-search-wrap input {
		width: 100%;
	}
	.bw-search-wrap {
		width: 100%;
	}
}

/* Filtry */
.bw-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}
.bw-filter-btn {
	padding: 9px 20px;
	background: var(--navy-mid);
	color: var(--muted);
	border: 1px solid var(--slate-light);
	border-radius: 30px;
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: all var(--transition);
	white-space: nowrap;
}
.bw-filter-btn:hover,
.bw-filter-btn.active {
	background: var(--brass);
	color: var(--navy);
	border-color: var(--brass);
}

/* Licznik */
.bw-results-info {
	font-size: 0.8rem;
	color: var(--muted);
	margin-bottom: 36px;
	font-family: 'Trebuchet MS', sans-serif;
	letter-spacing: 0.05em;
}
.bw-results-info strong {
	color: var(--brass-light);
}

/* Lista artykułów */
.bw-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.bw-item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 32px;
	padding: 28px 0;
	border-bottom: 1px solid var(--slate);
	transition: background var(--transition);
}
.bw-item:first-child {
	border-top: 1px solid var(--slate);
}
.bw-item:hover {
	background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
	.bw-item {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 24px 0;
	}
}

/* Meta (lewa kolumna) */
.bw-item-meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 170px;
}
.bw-cat-badge {
	display: inline-block;
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 2px;
	white-space: nowrap;
}
/* Kolory badge per kategoria */
.cat-wulkanit {
	background: rgba(176, 141, 87, 0.15);
	color: var(--brass-light);
	border: 1px solid rgba(176, 141, 87, 0.3);
}
.cat-cynkal {
	background: rgba(70, 130, 180, 0.15);
	color: #7ab8e8;
	border: 1px solid rgba(70, 130, 180, 0.3);
}
.cat-stopy {
	background: rgba(80, 160, 120, 0.15);
	color: #7ecba8;
	border: 1px solid rgba(80, 160, 120, 0.3);
}
.cat-jakosc {
	background: rgba(160, 100, 200, 0.15);
	color: #c49ee0;
	border: 1px solid rgba(160, 100, 200, 0.3);
}
.cat-ekologia {
	background: rgba(100, 180, 80, 0.15);
	color: #90cc70;
	border: 1px solid rgba(100, 180, 80, 0.3);
}

.bw-date,
.bw-read {
	font-size: 0.75rem;
	color: var(--muted);
	font-family: 'Trebuchet MS', sans-serif;
	letter-spacing: 0.05em;
}

/* Treść (środkowa kolumna) */
.bw-item-title {
	font-size: 1.05rem;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1.4;
}
.bw-item-title a {
	color: var(--white);
	text-decoration: none;
	transition: color var(--transition);
}
.bw-item-title a:hover {
	color: var(--brass-light);
}
.bw-item-lead {
	font-size: 0.88rem;
	color: var(--muted);
	line-height: 1.75;
}

/* Link (prawa kolumna) */
.bw-read-more {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--brass);
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--transition);
	flex-shrink: 0;
}
.bw-read-more:hover {
	color: var(--brass-light);
}

/* Brak wyników */
.bw-no-results {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 64px 0;
	color: var(--muted);
	text-align: center;
}
.bw-no-results-icon {
	font-size: 2.5rem;
	opacity: 0.4;
}
.bw-no-results p {
	font-size: 0.95rem;
}

/* ============================================================
   BAZA WIEDZY – CTA BANNER
   ============================================================ */
#bw-cta-banner {
	background: var(--navy-mid);
	border-top: 1px solid var(--slate-light);
	border-bottom: 1px solid var(--slate-light);
	padding: 72px 0;
}
/* ============================================================
   KONTAKT – sekcja na stronie głównej
   ============================================================ */
#contact {
	background: var(--navy);
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
}
@media (max-width: 900px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}
.contact-info h2 {
	color: var(--white);
	margin-bottom: 20px;
}
.contact-info p {
	color: var(--muted);
	margin-bottom: 40px;
	font-size: 0.95rem;
}
.contact-details {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.contact-detail {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--slate);
}
.contact-detail:last-child {
	border-bottom: none;
}
.cd-icon {
	font-size: 1.1rem;
	color: var(--brass);
	flex-shrink: 0;
	margin-top: 2px;
}
.cd-label {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 4px;
}
.cd-value {
	color: var(--white);
	font-size: 0.95rem;
	font-family: 'Trebuchet MS', sans-serif;
}
.cd-value a {
	color: var(--brass-light);
	text-decoration: none;
}
.cd-value a:hover {
	text-decoration: underline;
}

/* ============================================================
   FORMULARZ – wspólny
   ============================================================ */
.contact-form-wrap {
}
.form-title {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 1.1rem;
	color: var(--white);
	margin-bottom: 28px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--slate);
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
@media (max-width: 480px) {
	.form-row {
		grid-template-columns: 1fr;
	}
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-bottom: 16px;
}
.form-group label {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
	background: var(--navy-mid);
	border: 1px solid var(--slate-light);
	border-radius: var(--radius);
	color: var(--white);
	font-family: 'Georgia', serif;
	font-size: 0.92rem;
	padding: 12px 16px;
	outline: none;
	transition:
		border-color var(--transition),
		box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--brass);
	box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.12);
}
.form-group textarea {
	resize: vertical;
	min-height: 130px;
}
.form-group select {
	appearance: none;
	cursor: pointer;
}
.form-note {
	font-size: 0.78rem;
	color: var(--muted);
	margin-bottom: 20px;
}
.form-note a {
	color: var(--brass-light);
}
.btn-submit {
	width: 100%;
	background: var(--brass);
	color: var(--navy);
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 15px;
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	transition:
		background var(--transition),
		transform var(--transition);
}
.btn-submit:hover {
	background: var(--brass-light);
	transform: translateY(-2px);
}
.form-success-msg {
	margin-top: 16px;
	padding: 14px 20px;
	background: rgba(80, 160, 100, 0.12);
	border: 1px solid rgba(80, 160, 100, 0.4);
	border-radius: var(--radius);
	color: #7ecb96;
	font-size: 0.9rem;
}
.form-error-msg {
	margin-top: 16px;
	padding: 14px 20px;
	background: rgba(200, 80, 80, 0.12);
	border: 1px solid rgba(200, 80, 80, 0.35);
	border-radius: var(--radius);
	color: #e08080;
	font-size: 0.9rem;
}

/* ============================================================
   STOPKA
   ============================================================ */
.footer {
	background: var(--ink-2);
	border-top: 1px solid var(--ink-4);
	margin-left: 2vw;
	margin-right: 2vw;
}
.footer__main {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	padding: 4rem 0 3rem;
}
@media (max-width: 768px) {
	.footer__main {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 480px) {
	.footer__main {
		grid-template-columns: 1fr;
	}
}
.footer__logo {
	font-family: var(--fd);
	font-size: 2rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}
.footer__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
}
.footer__desc {
	font-size: 0.85rem;
	color: var(--fog);
	line-height: 1.7;
	max-width: 260px;
}
.footer__col-title {
	font-family: var(--fm);
	font-size: 0.65rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--steel);
	margin-bottom: 1.4rem;
}
.footer__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}
.footer__list a {
	font-size: 0.88rem;
	color: var(--fog);
	transition: color 0.2s;
	display: flex;
	text-decoration: none;
	align-items: center;
	gap: 0.4rem;
}
.footer__list a:hover {
	color: var(--paper);
}
.footer__list a::before {
	content: '→';
	font-size: 0.7rem;
	opacity: 0.4;
}
.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 1.5rem 0;
	border-top: 1px solid var(--ink-4);
}
.footer__copy {
	font-family: var(--fm);
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	color: var(--steel);
}
.footer__legal {
	display: flex;
	gap: 2rem;
	list-style: none;
}
.footer__legal a {
	font-family: var(--fm);
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	color: var(--steel);
	transition: color 0.2s;
}
.footer__legal a:hover {
	color: var(--mist);
}

/* Numer telefonu w stopce – wyróżniony */
.footer__list a[href^='tel'] {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.94rem;
	font-weight: 600;
	color: var(--mist);
	letter-spacing: 0.04em;
}
.footer__list a[href^='tel']:hover {
	color: var(--brass-light);
}

/* ============================================================
   ANIMACJE – REVEAL ON SCROLL
   ============================================================ */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal-delay-1 {
	transition-delay: 0.1s;
}
.reveal-delay-2 {
	transition-delay: 0.2s;
}
.reveal-delay-3 {
	transition-delay: 0.3s;
}
.reveal-delay-4 {
	transition-delay: 0.4s;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-brass {
	color: var(--brass-light);
}
.text-white {
	color: var(--white);
}
.mt-8 {
	margin-top: 8px;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* ============================================================
   BAZA WIEDZY – KARTY
   ============================================================ */
.category-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 40px 0 50px;
	justify-content: center;
}
.cat-btn {
	padding: 10px 24px;
	background: var(--navy-mid);
	color: var(--muted);
	border: 1px solid var(--slate-light);
	border-radius: 30px;
	font-size: 0.85rem;
	font-family: 'Trebuchet MS', sans-serif;
	cursor: pointer;
	transition: all 0.3s;
}
.cat-btn.active,
.cat-btn:hover {
	background: var(--brass);
	color: var(--navy);
	border-color: var(--brass);
}
.kb-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 40px;
}
.kb-card {
	background: var(--navy-mid);
	border-radius: var(--radius);
	overflow: hidden;
	transition: all 0.4s ease;
}
.kb-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.kb-img img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}
.kb-content {
	padding: 28px;
}
.kb-content h3 {
	color: var(--white);
	margin: 12px 0 14px;
	line-height: 1.35;
}
.kb-meta {
	font-size: 0.78rem;
	color: var(--muted);
}

/* ============================================================
   WULKANIT – PAGE HERO
   ============================================================ */
#wulkanit-hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.wulkanit-hero-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(135deg, rgba(13, 27, 42, 0.9) 40%, rgba(13, 27, 42, 0.55) 100%),
		url('../img/mini-img/rafinacja.webp');
	background-size: cover;
	background-position: center;
}
.wulkanit-hero-content {
	position: relative;
	z-index: 2;
	max-width: 720px;
	padding: 140px 0 80px;
}
#wulkanit-hero h1 em,
#contact-hero h1 em {
	font-style: normal;
	color: var(--brass-light);
	padding-bottom: 2px;
}

/* ============================================================
   WULKANIT – OPIS PRODUKTU
   ============================================================ */
#opis-produktu {
	background: var(--navy);
	padding: 100px 0;
}

/* ============================================================
   WULKANIT – MECHANIZM DZIAŁANIA
   ============================================================ */
#mechanizm {
	background: var(--navy-mid);
	padding: 100px 0;
	border-top: 1px solid var(--slate-light);
	border-bottom: 1px solid var(--slate-light);
}
.mechanism-steps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}
@media (max-width: 768px) {
	.mechanism-steps {
		grid-template-columns: 1fr;
	}
}
.mech-step {
	display: flex;
	gap: 24px;
	background: var(--slate);
	border: 1px solid var(--slate-light);
	border-radius: var(--radius);
	padding: 32px;
	transition:
		box-shadow var(--transition),
		transform var(--transition);
}
.mech-step:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.mech-num {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--brass);
	opacity: 0.5;
	line-height: 1;
	flex-shrink: 0;
}
.mech-body h3 {
	margin-bottom: 10px;
}
.mech-body p {
	color: var(--muted);
	font-size: 0.95rem;
}

/* ============================================================
   WULKANIT – INSTRUKCJA STOSOWANIA
   ============================================================ */
#instrukcja {
	background: var(--navy);
	padding: 100px 0;
}
.instr-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}
@media (max-width: 900px) {
	.instr-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}
.instr-block {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 24px 0;
	border-bottom: 1px solid var(--slate);
}
.instr-block:last-child {
	border-bottom: none;
}
.instr-icon {
	font-size: 1.4rem;
	flex-shrink: 0;
	margin-top: 2px;
}
.instr-title {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--brass);
	margin-bottom: 6px;
}
.instr-text p {
	color: var(--muted);
	font-size: 0.95rem;
}
.instr-text p strong {
	color: var(--white);
}
.instr-img-wrap {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
}
.instr-img-wrap img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	display: block;
}
.instr-badge {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: rgba(13, 27, 42, 0.9);
	border: 1px solid var(--brass);
	border-radius: var(--radius);
	padding: 14px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	backdrop-filter: blur(8px);
}
.instr-badge-icon {
	font-size: 1.4rem;
}
.instr-badge strong {
	display: block;
	color: var(--white);
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
}
.instr-badge span {
	font-size: 0.78rem;
	color: var(--muted);
}

/* ============================================================
   WULKANIT – CTA BANNER
   ============================================================ */
#wulk-cta-banner {
	background: var(--navy-mid);
	border-top: 1px solid var(--slate-light);
	border-bottom: 1px solid var(--slate-light);
	padding: 72px 0;
}

/* ============================================================
   KONTAKT – PAGE HERO
   ============================================================ */
#contact-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.contact-hero-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(135deg, rgba(13, 27, 42, 0.92) 50%, rgba(13, 27, 42, 0.65) 100%),
		url('../img/main-img/kontakt-z-firma-wulkanit.webp');
	background-size: cover;
	background-position: center;
}
.contact-hero-content {
	position: relative;
	z-index: 2;
	max-width: 680px;
	padding: 140px 0 80px;
}

/* ============================================================
   KONTAKT – QUICK STRIP
   ============================================================ */
#contact-strip {
	background: var(--ink-2);
	border-top: 1px solid var(--slate-light);
	border-bottom: 1px solid var(--slate-light);
	padding: 36px 0;
}
.cstrip-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.cstrip-item {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	color: inherit;
	transition: color var(--transition);
}
.cstrip-item:hover .cstrip-value {
	color: var(--brass-light);
}
.cstrip-icon {
	font-size: 1.4rem;
	flex-shrink: 0;
}
.cstrip-label {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 3px;
}
.cstrip-value {
	font-size: 0.92rem;
	color: var(--white);
	transition: color var(--transition);
}
.cstrip-divider {
	width: 1px;
	height: 40px;
	background: var(--slate-light);
	flex-shrink: 0;
}
@media (max-width: 900px) {
	.cstrip-divider {
		display: none;
	}
	.cstrip-item {
		flex: 1 1 40%;
	}
}
@media (max-width: 480px) {
	.cstrip-item {
		flex: 1 1 100%;
	}
}

/* ============================================================
   KONTAKT – FORMULARZ + DANE
   ============================================================ */
#formularz {
	background: var(--navy);
	padding: 100px 0;
}
.contact-page-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: flex-start;
}
@media (max-width: 960px) {
	.contact-page-grid {
		grid-template-columns: 1fr;
		gap: 56px;
	}
}
.contact-page-info h2 {
	color: var(--white);
	margin-bottom: 32px;
}

/* Produkty reminder box */
.contact-products-box {
	margin-top: 40px;
	background: var(--navy-mid);
	border: 1px solid var(--slate-light);
	border-radius: var(--radius);
	padding: 24px;
}
.cpb-title {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--brass);
	margin-bottom: 18px;
}
.cpb-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 14px 0;
	border-bottom: 1px solid var(--slate);
	text-decoration: none;
	transition: opacity var(--transition);
}
.cpb-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.cpb-item:hover {
	opacity: 0.8;
}
.cpb-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--brass);
	flex-shrink: 0;
	margin-top: 6px;
}
.cpb-item strong {
	display: block;
	color: var(--white);
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.9rem;
	margin-bottom: 2px;
}
.cpb-item span {
	font-size: 0.82rem;
	color: var(--muted);
}

/* ============================================================
   KONTAKT – MAPA
   ============================================================ */
#mapa {
	background: var(--navy-mid);
	padding: 80px 0 0;
	border-top: 1px solid var(--slate-light);
}
.map-header {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 48px;
}
.map-header h2 {
	margin-bottom: 8px;
}
.map-wrap {
	position: relative;
	width: 100%;
}
.map-wrap iframe {
	display: block;
	width: 100%;
	height: 480px;
	border: 0;
	filter: grayscale(30%) contrast(1.05);
}
.map-overlay-card {
	position: absolute;
	top: 32px;
	right: 40px;
	background: rgba(13, 27, 42, 0.96);
	border: 1px solid var(--slate-light);
	border-radius: var(--radius);
	padding: 28px 28px 24px;
	max-width: 300px;
	backdrop-filter: blur(12px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
	z-index: 10;
}
.moc-logo {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 16px;
	letter-spacing: 0.06em;
}
.moc-logo span {
	color: var(--brass);
}
.moc-address {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--slate);
}
.moc-line {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.88rem;
	color: var(--muted);
}
.moc-line span {
	flex-shrink: 0;
}
.moc-line a {
	color: var(--brass-light);
	text-decoration: none;
}
.moc-line a:hover {
	text-decoration: underline;
}
.moc-btn {
	display: block;
	text-align: center;
	font-size: 0.78rem;
	padding: 11px 20px;
}
@media (max-width: 640px) {
	.map-overlay-card {
		position: static;
		max-width: 100%;
		border-radius: 0;
		border-left: none;
		border-right: none;
		border-top: none;
	}
	.map-wrap iframe {
		height: 340px;
	}
}
/* ============================================================
   CYNKAL – PAGE HERO
   ============================================================ */
#cynkal-hero {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.cynkal-hero-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(135deg, rgba(13, 27, 42, 0.88) 40%, rgba(13, 27, 42, 0.52) 100%),
		url('../img/mini-img/kapiel-cynkowa.webp');
	background-size: cover;
	background-position: center;
}
.cynkal-hero-content {
	position: relative;
	z-index: 2;
	max-width: 720px;
	padding: 140px 0 80px;
}
#cynkal-hero h1 em {
	font-style: normal;
	color: var(--brass-light);
	border-bottom: 2px solid var(--brass);
	padding-bottom: 2px;
}

/* ============================================================
   CYNKAL – STATS BAR
   ============================================================ */
#cynk-stats {
	background: var(--ink-2);
	border-top: 1px solid var(--slate-light);
	border-bottom: 1px solid var(--slate-light);
	padding: 40px 0;
}

/* ============================================================
   CYNKAL – OPIS PRODUKTU
   ============================================================ */
#opis-cynkal {
	background: var(--slate);
	padding: 100px 0;
}

/* ============================================================
   CYNKAL – ZASTOSOWANIA
   (reużywa .mechanism-steps / .mech-step z wulkanitu)
   ============================================================ */
#zastosowania {
	background: var(--navy-mid);
	padding: 100px 0;
	border-top: 1px solid var(--slate-light);
	border-bottom: 1px solid var(--slate-light);
}

/* ============================================================
   CYNKAL – KLASY CZYSTOŚCI
   (reużywa .instr-grid / .instr-block z wulkanitu)
   ============================================================ */
#klasy-czystosci {
	background: var(--slate);
	padding: 100px 0;
}

/* ============================================================
   CYNKAL – LOGISTYKA
   ============================================================ */
#logistyka {
	background: var(--navy);
	padding: 100px 0;
}
.logistyka-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
@media (max-width: 960px) {
	.logistyka-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 520px) {
	.logistyka-grid {
		grid-template-columns: 1fr;
	}
}
.logistyka-card {
	background: var(--navy-mid);
	border: 1px solid var(--slate-light);
	border-radius: var(--radius);
	padding: 32px 28px;
	transition:
		transform var(--transition),
		box-shadow var(--transition);
}
.logistyka-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.logistyka-icon {
	font-size: 2rem;
	margin-bottom: 16px;
}
.logistyka-title {
	font-family: 'Trebuchet MS', sans-serif;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--brass-light);
	margin-bottom: 12px;
}
.logistyka-card p {
	font-size: 0.9rem;
	color: var(--muted);
	line-height: 1.75;
}

/* ============================================================
   CYNKAL – CTA BANNER
   ============================================================ */
#cynkal-cta-banner {
	background: var(--navy-mid);
	border-top: 1px solid var(--slate-light);
	border-bottom: 1px solid var(--slate-light);
	padding: 72px 0;
}

/* ============================================================
   MOBILE RESPONSIVE FIXES
   ============================================================ */
@media (max-width: 768px) {
	html,
	body {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden;
	}

	img,
	iframe,
	video {
		max-width: 100%;
	}

	.container {
		width: 100%;
		padding-left: 18px;
		padding-right: 18px;
	}

	section,
	#artykuly,
	#opis-produktu,
	#mechanizm,
	#instrukcja,
	#opis-cynkal,
	#zastosowania,
	#klasy-czystosci,
	#logistyka,
	#formularz {
		padding-top: 72px;
		padding-bottom: 72px;
	}

	h1 {
		font-size: clamp(2rem, 12vw, 3rem);
		line-height: 1.12;
	}

	h2 {
		font-size: clamp(1.45rem, 8vw, 2.1rem);
	}

	p {
		font-size: 0.96rem;
	}

	.section-header {
		max-width: 100%;
		margin-bottom: 36px;
	}

	.btn-primary,
	.btn-ghost,
	.btn-submit,
	.moc-btn {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.hero-actions {
		width: 100%;
		flex-direction: column;
		gap: 12px;
	}

	#hero,
	#wulkanit-hero,
	#cynkal-hero,
	#bw-hero,
	#contact-hero {
		min-height: auto;
	}

	.hero-content,
	.wulkanit-hero-content,
	.cynkal-hero-content,
	.bw-hero-content,
	.contact-hero-content {
		max-width: 100%;
		padding-top: 120px;
		padding-bottom: 72px;
	}

	.hero-lead {
		max-width: 100%;
		font-size: 1rem;
		line-height: 1.75;
		margin-bottom: 32px;
	}

	.hero-tag {
		margin-bottom: 20px;
	}

	.hero-tag span {
		font-size: 0.68rem;
		letter-spacing: 0.12em;
	}

	.hero-scroll {
		display: none;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.stat-item {
		padding: 18px 12px;
		border-bottom: 1px solid var(--slate);
	}

	.stat-item:last-child {
		border-bottom: none;
	}

	.stat-divider {
		display: none;
	}

	.about-grid,
	.product-block,
	.product-block.reverse,
	.contact-grid,
	.contact-page-grid,
	.instr-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		direction: ltr;
	}

	#about::before {
		display: none;
	}

	.about-img-wrap img,
	.product-img img,
	.instr-img-wrap img {
		height: 300px;
	}

	.about-img-badge,
	.instr-badge {
		left: 16px;
		right: 16px;
		bottom: 16px;
	}

	.product-text .product-desc {
		padding-left: 16px;
	}

	.mechanism-steps,
	.logistyka-grid,
	.kb-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.mech-step,
	.logistyka-card,
	.kb-content,
	.contact-products-box {
		padding: 24px 20px;
	}

	.bw-top {
		align-items: stretch;
		gap: 20px;
		margin-bottom: 28px;
	}

	.bw-search-wrap,
	.bw-search-wrap input {
		width: 100%;
	}

	.bw-filters,
	.category-filters {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		padding-bottom: 6px;
	}

	.bw-filter-btn,
	.cat-btn {
		flex: 0 0 auto;
	}

	.bw-item {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.bw-item-meta {
		min-width: 0;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}

	.bw-read-more {
		white-space: normal;
	}

	.contact-detail,
	.cpb-item,
	.instr-block,
	.mech-step {
		gap: 14px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		width: 100%;
	}

	.cstrip-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.cstrip-item {
		width: 100%;
	}

	.cstrip-divider {
		display: none;
	}

	.map-overlay-card {
		position: static;
		max-width: 100%;
		border-left: none;
		border-right: none;
		border-radius: 0;
	}

	.map-wrap iframe {
		height: 340px;
	}

	.footer {
		margin-left: 0;
		margin-right: 0;
	}

	.footer__main {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 3rem 0 2rem;
	}

	.footer__desc {
		max-width: 100%;
	}

	.footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer__legal {
		flex-direction: column;
		gap: 0.7rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding-left: 16px;
		padding-right: 16px;
	}

	#navbar {
		padding-left: 16px;
		padding-right: 16px;
	}

	.nav-logo {
		font-size: 1.3rem;
	}

	section,
	#artykuly,
	#opis-produktu,
	#mechanizm,
	#instrukcja,
	#opis-cynkal,
	#zastosowania,
	#klasy-czystosci,
	#logistyka,
	#formularz {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.hero-content,
	.wulkanit-hero-content,
	.cynkal-hero-content,
	.bw-hero-content,
	.contact-hero-content {
		padding-top: 104px;
		padding-bottom: 56px;
	}

	.btn-primary,
	.btn-ghost {
		padding-left: 18px;
		padding-right: 18px;
		font-size: 0.78rem;
	}

	.hero-tag-line {
		width: 28px;
	}

	.about-img-wrap img,
	.product-img img,
	.instr-img-wrap img,
	.kb-img img {
		height: 240px;
	}

	.pillar,
	.mech-step,
	.logistyka-card,
	.contact-products-box {
		padding: 20px 16px;
	}

	.mech-step,
	.instr-block {
		flex-direction: column;
	}

	.instr-badge {
		position: static;
		margin-top: -1px;
		border-left: none;
		border-right: none;
		border-bottom: none;
	}

	.kb-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.kb-content {
		padding: 22px 18px;
	}
}
