* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Yantramanav', sans-serif;
}

a {
	text-decoration: none;
	color: black;
}

.mail-link {
	color: inherit;
	text-decoration: none;
}
.mail-link:hover {
	text-decoration: underline;
}

.arrow-more span {
	transition: transform 0.2s;
}
.arrow-more:hover .arrow-more span {
	transform: translateX(3px);
}

/* HEADER SECTION */

.top-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	background-color: #fff;
	color: #19232b;
	padding: 7px;
	border-bottom: 0.2px solid rgb(175, 170, 170);
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	transition: transform 0.3s ease;
}

.top-bar a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

.top-bar a:hover {
	text-decoration: none;
	color: #dd042b;
}

.main-nav {
	padding: 0 0 0 20px;
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	height: 120px;
	top: 30px;
	left: 0;
	z-index: 999;
	transition: top 0.3s ease;
}

.main-nav .logo img {
	padding: 0.5em 0 0 0;
	max-height: 100px;
	width: auto;
	transition: max-height 0.3s ease;
}

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

.main-nav a.nav-link {
	text-decoration: none;
	color: #04080d;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
	padding: 15px 10px;
	display: block;
	transition: color 0.3s ease;
}

.main-nav a.nav-link:hover {
	color: #dd042b;
}

.main-nav a.nav-link.active {
	color: #dd042b;
}

.nav-item.dropdown {
	position: relative;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #ffffff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	list-style: none;
	padding: 10px 0;
	margin: 0;
	min-width: 150px;
	z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-menu .dropdown-item {
	text-decoration: none;
	color: #04080d;
	padding: 15px 50px;
	display: block;
	transition: background-color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
	background-color: #f1f1f1;
}

.dropdown-item.active {
	color: #dd042b;
}

.nav-btn {
	background: #dd042b;
	color: #fff;
	font-size: 18px;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 40px;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background 0.3s;
}

.nav-btn span {
	padding: 0 5px;
	display: inline-block;
	transition: transform 0.2s;
}

.nav-btn:hover {
	background: #04080d;
}

.nav-btn:hover span {
	transform: translate(10px);
}

/* --- HAMBURGER MENU --- */
.hamburger {
	display: none; 
	cursor: pointer;
	border: none;
	background: transparent;
	padding: 15px;
	z-index: 1001;
}

.bar {
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 5px 0;
	transition: all 0.3s ease;
}

/* burger icon animation  */
.hamburger.active .bar:nth-child(1) {
	transform: translateY(8px) rotate(-45deg);
}

.hamburger.active .bar:nth-child(2) {
	opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
	transform: translateY(-8px) rotate(45deg);
}


.dropdown-menu {
	display: none !important; 
	flex-direction: column;
}

.nav-item.dropdown:hover .dropdown-menu {
	display: block !important; 
}


.top-bar.hidden {
	transform: translateY(-100%);
}


body.scrolled .main-nav {
	top: 0;
	padding: 0 0 0 20px;
}

body.scrolled .main-nav .logo img {
	max-height: 80px; 
}

/* SLIDER */

.hero-slider {
	position: relative;
	width: 100%;
	height: 80vh;
	overflow: hidden;
}

.slider-container {
	display: flex;
	transition: transform 0.5s ease-in-out;
	width: 100%; 
}

.slide {
	min-width: 100%;
	height: 80vh;
	position: relative;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.slide-caption > * {
  opacity: 0;
  transform: translateY(10px);
  transition: none; 
}

.slide-caption {
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translate(0,-50%);
	color: white;
	
}

.slide-caption .slide-text {
	padding: 50px 0;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.slide-btn {
	display: inline-block;
	background: #dd042b;
	color: white;
	font-size: 18px;
	padding: 20px 40px;
	text-decoration: none;
	margin-top: 80px;
	transition: background 0.3s;
}

.slide-btn span {
	padding: 0 5px;
	display: inline-block;
	transition: transform 0.2s;
}

.slide-btn:hover {
	background: #04080d;
}

.slide-btn:hover span {
	transform: translate(10px);
}

.tel {
	display: inline-block;
	font-size: 22px;
	font-weight: bold;
	margin-left: 20px;
}

.slide-title {
	font-family: 'Titillium Web', sans-serif;
	line-height: 80px;
	font-weight: 700;
	font-size: 80px;
	text-transform: uppercase;
}

.slide-title span {
	font-family: 'Titillium Web', sans-serif;
	display: block;
	color: #dd042b;
}

/* animacja: fade + up */
@keyframes fadeUp {
  from { transform: translateY(10px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Jeżeli slajd ma klasę .animate — elementy uruchamiają się z delayami */
.slide.animate .slide-caption .slide-text {
  animation: fadeUp 420ms ease forwards;
  animation-delay: .12s;
}
.slide.animate .slide-caption .slide-title {
  animation: fadeUp 480ms ease forwards;
  animation-delay: .40s;
}
.slide.animate .slide-caption .slide-btn {
  animation: fadeUp 420ms ease forwards;
  animation-delay: .78s;
}
.slide.animate .slide-caption .tel {
  animation: fadeUp 380ms ease forwards;
  animation-delay: 1.06s;
}


/* rwd & mobile  */
@media (max-width: 992px) {
	.main-nav {
		top: 0;
		height: 80px;
	}
	.main-nav ul {
		display: none; 
		flex-direction: column;
		width: 100%;
		text-align: center;
		position: absolute;
		top: 80px; 
		left: 0;
		background-color: #ffffff;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	}

	.main-nav .logo img {
		max-width: 80px;
	}

	.main-nav ul.active {
		display: flex; 
	}

	.main-nav ul li {
		width: 100%;
		border-bottom: 1px solid #eee;
	}

	.nav-item.dropdown:hover .dropdown-menu {
		display: none; 
	}

	/* Dropdown  mobile */
	.main-nav ul .dropdown-menu {
		display: none;
		position: static; 
		box-shadow: none;
		padding-left: 20px; 
		flex-direction: column;
		width: 100%;
	}

	.main-nav ul .dropdown.open .dropdown-menu {
		display: flex; 
	}

	.nav-item.dropdown .dropdown-toggle {
		cursor: pointer;
	}

	.nav-btn {
		display: none;
	}

	.hamburger {
		margin-right: 20px;
		display: block; 
	}

	.top-bar {
		display: none;
	}
	
	.slide-caption {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.slide-caption .slide-title {
		text-align: center;
	}
	.slide-caption .tel {
		margin: 0;
		padding: 20px 0;
	}
}

@media (max-width: 576px) {

	.slide-caption .slide-title {
		font-size: 55px;
		text-align: center;
		line-height: 1.2;
	}
	.slide-caption .slide-text{
		font-size: 14px;
	}
	.slide-caption .slide-btn {
		margin-top: 20px;
		padding: 15px 30px;
		font-size: 16px ;
	}
	.slide-caption .tel {
		font-size: 18px;
		margin-top: 20px;
	}
}

/* ABOUT US */

.about-us {
	position: relative;
	padding-top: 10px;
	padding-bottom: 60px;
	background: #f7f8fa;
}

.about-us .products-container {
	position: relative;
	z-index: 10;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 0 15px;
	transform: translateY(-100px);
}

.products-container .products-card {
	height: 300px;
	border-bottom: 4px solid #dd042b;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	padding: 20px;
	display: grid;
	grid-template-rows: auto 1fr auto;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s, border-bottom 0.2s;
}

.products-container .products-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
	border-bottom: 4px solid #04080d;
}

.product-image {
	width: 100%;
	height: 160px;
	object-fit: cover;
	background: #fbf2f2;
}
.product-title {
	margin: 12px 0 0px;
	font-size: 22px;
}
.product-link {
	display: inline-block;
	padding: 10px 0;
	font-size: 18px;
	color: #04080d;
	text-decoration: none;
}

.product-link span {
	padding: 0 5px;
	display: inline-block;
	transition: transform 0.2s;
}

.products-card:hover span {
	transform: translate(10px);
}

.about-container {
	max-width: 1200px;
	margin: 60px auto;
	display: grid;
	grid-template-columns: 1fr 1fr; 
	gap: 50px;
	align-items: center;
	padding: 0 20px;
}

/* image column */
.about-images {
	display: flex;
	order: 1;
	gap: 20px;
}

.images-container {
	position: relative;
	display: flex;
	gap: 20px;
}

.images-container .trusted-circle {
	position: absolute;
	left: 50%;
	right: 50%;
	bottom: 25%;
	transform: translate(-50%,-50%);
	height: 150px;
	width: 150px;
	border-radius: 50%;
	background-color: #fff;
	padding: 20px;
	border: solid #dd042b;
}

.images-container .trusted-circle p {
	text-align: center;
	color: #dd042b;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 50px;
} 

.images-container .trusted-circle p:last-of-type {
	text-align: center;
	color: #04080d;
	font-size: 48px;
	font-weight: bold;
	line-height: 20px;
} 

.about-images img {
	flex: 1;
	height: 550px;
	object-fit: cover;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}



/* text column */
.about-container .about-text {
	order: 2;
}
.about-text .main-title {
	font-size: 55px;
	color: #04080d;
	margin-bottom: 20px;
	line-height: 1.1;
}
.about-text p {
	font-size: 18px;
	line-height: 1.6;
	color: #666666;
}

.about-text .sub-title {
	color: #7f8284;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 12px;
	position: relative;
}

.about-text .sub-title::after {
	content: '';
	display: block;
	width: 140px;
	height: 3px;
	background: #dd042b;
	margin-top: 8px;
}

/* RWD */
@media (max-width: 1100px) {
	.about-us .products-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 80px;
	}
	.about-container {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	.about-images {
		flex-direction: row;
		order: 2;
	}
	.about-container .about-text {
		order: 1;
	}
}
@media (max-width: 991px) {
	.about-us .products-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px;
	}
	.images-container .trusted-circle {
		display: none;
	}
}

@media (max-width: 900px) {
	.about-container {
		grid-template-columns: 1fr;
		
	}
	.about-images {
		flex-direction: column;
	}
	.about-images img {
		display: none;
		height: 180px;
	}
}

@media (max-width: 576px) {
	.about-us .products-container {
		grid-template-columns: 1fr;
		padding: 30px;
	}
	.about-text .main-title {
		font-size: 45px;
		color: #04080d;
		margin-bottom: 20px;
		line-height: 1.1;
	}
}

/* OUR PRODUCTS */

.our-products {
	padding: 48px 0 72px;
	background: #fff;
}
.our_products-container {
	max-width: 1200px;
	margin: 0 auto 24px;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr auto auto;
	grid-template-rows: auto auto;
	gap: 8px 24px;
	align-items: center;
}
.our_products-container .sub-title {
	grid-column: 1 / 2;
	grid-row: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #7f8284;
	font-size: 14px;
	position: relative;
	padding-left: 0;
}
.our_products-container .sub-title::after {
	content: '';
	display: block;
	width: 140px;
	height: 3px;
	background: #dd042b;
	margin-top: 8px;
}
.our_products-container .main-title {
	grid-column: 1 / 2;
	grid-row: 2;
	font-size: 55px;
	line-height: 1.15;
	font-weight: 800;
	color: #04080d;
}
.our_products-container .btn-gmat {
	justify-self: end;
	align-self: start;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 12px 18px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	transition: opacity 0.2s;
	margin-left: 0;
}

.our_products-container .btn-gmat:nth-of-type(1) {
	background: #04080d;
	grid-column: 2;
}
.our_products-container .btn-gmat:nth-of-type(2) {
	background: #dd042b;
	grid-column: 3;
}
.our_products-container .btn-gmat:hover {
	opacity: 0.8;
}

/* ===== SLIDER ===== */
.products-slider {
	max-width: 1200px;
	margin: 16px auto 0;
	padding: 0 20px 8px;
	display: flex;
	gap: 32px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}
.product-slide-card {
	scroll-snap-align: start;
	flex: 0 0 calc((100% - 48px) / 3); 
	background: #fff;
	height: 380px;
	border: 1px solid #e6e8ec;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	position: relative;
}
.product-slide-card .slide-card {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
}
.product-slide-card .btn-product {
	position: absolute;
	right: 16px;
	bottom: 86px;
	width: 44px;
	height: 44px;
	background: #dd042b;
	border-radius: 4px;
	display: block;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' stroke='white' stroke-width='2'/%3E%3Cpath d='M8 12l3 3 5-6' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	transition: background 0.3s;
}
.product-text {
	margin: 14px 16px 6px;
	font-size: 14px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #dd042b;
	font-weight: 700;
}
.product-slide-title {
	margin: 0 16px 18px;
	font-size: 22px;
	line-height: 1.25;
	color: #04080d;
	font-weight: 800;
}

.product-slide-card:hover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.product-slide-card:hover .btn-product {
	background: #04080d;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' stroke='white' stroke-width='2'/%3E%3Cpath d='M8 12l3 3 5-6' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}

/* RWD */
@media (max-width: 1100px) {
	.product-slide-card {
		flex: 0 0 calc((100% - 24px) / 2);
	} 
	.our_products-container .main-title {
		font-size: 40px;
	}
}
@media (max-width: 700px) {
	.our_products-container {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	.product-slide-card .btn-product {
		position: absolute;
		right: 20px;
		bottom: 50px;
	}
	.products-slider {
		gap: 16px;
	}
	.product-slide-card {
		flex: 0 0 85%;
	} 
	.product-slide-card .slide-card {
		height: 200px;
	}
}

/* world map section */
.worldwide {
	background: #f1f3f5 url('../img/new-map-01-1.png') no-repeat center;
	background-size: 900px auto;
	padding: 60px 20px 80px;
}
.worldwide-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.worldwide-title {
	text-align: center;
	padding: 10px 0 0 0;
	font-size: 48px;
	line-height: 1.1;
	font-weight: 800;
	color: #04080d;
	margin: 0 0 40px;
}

.worldwide-text {
	text-align: center;
	max-width: 760px;
	margin: 300px auto 0;
	font-size: 18px;
	line-height: 1.6;
	color: #5a6472;
}

.worldwide-icon {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: inline-block;
	background: #d7dce2;
	position: relative;
}
.worldwide-icon::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23555' d='M12 2a10 10 0 100 20 10 10 0 000-20zm7.93 9h-3.11a14.7 14.7 0 00-.9-5.07A8.03 8.03 0 0119.93 11zM12 4c.8 1.12 1.82 3.26 2.22 7h-4.44C10.18 7.26 11.2 5.12 12 4zM7.08 5.93A14.7 14.7 0 006.18 11H3.07a8.03 8.03 0 014.01-5.07zM4.07 13h3.11c.2 1.79.64 3.49 1.33 5.07A8.03 8.03 0 014.07 13zM12 20c-.8-1.12-1.82-3.26-2.22-7h4.44C13.82 16.74 12.8 18.88 12 20zm4.59-1.93c.69-1.58 1.13-3.28 1.33-5.07h3.11a8.03 8.03 0 01-4.44 5.07z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px 16px;
}

.accent {
	color: #dd042b;
	font-weight: 700;
}

/* RWD */
@media (max-width: 1200px) {
	.worldwide {
		background-size: 1100px auto;
	}
}
@media (max-width: 900px) {
	.worldwide {
		background-size: 900px auto;
		padding: 48px 16px 64px;
	}
	.worldwide-title {
		font-size: 36px;
		margin-bottom: 28px;
	}
	.worldwide-text {
		margin-top: 200px;
		font-size: 16px;
	}
}
@media (max-width: 600px) {
	.worldwide {
		background-size: 700px auto;
	}
	.worldwide-text {
		margin-top: 160px;
	}
}

/* MAT USAGE */

.mat-usage {
	background: #1a242c;
	padding: 0;
}

.usage-container {
	max-width: 1200px;
	background: url('../img/buidings_back.png') no-repeat center;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	position: relative;
}

/* left text */
.usage-container .sub-title {
	padding-top: 50px;
	color: #7f8284;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 12px;
	position: relative;
}
.usage-container .sub-title::after {
	content: '';
	display: block;
	width: 348px;
	height: 3px;
	background: #dd042b;
	margin-top: 8px;
}

.main-title {
	font-size: 42px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 20px;
}

.about-text {
	font-size: 18px;
	line-height: 1.6;
	color: #fff;
	max-width: 90%;
}

.usage-container img {
	width: 50%;
	height: 100%;
	object-fit: cover;
	grid-column: 2 / 3;
	grid-row: 1 / 5;
	border-radius: 4px;
	display: block;
	position: relative;
	z-index: 1;
}

.square {
	position: absolute;
	right: 40px;
	max-width: 180px;
	height: auto;
	color: #fff;
	font-weight: 700;
	text-align: center;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 4px;
	z-index: 2;
}

.square:first-of-type {
	top: 100px;
	background: #fff;
	color: #04080d;
}
.square:first-of-type::before {
	content: attr(data-number);
	font-size: 32px;
	color: #dd042b;
	font-weight: 800;
}
.square:first-of-type::after {
	content: 'PROJEKTE ABGESCHLOSSEN';
	font-size: 12px;
	color: #04080d;
	white-space: pre;
	margin-top: 6px;
}

.square:last-of-type {
	top: 240px;
	background: #dd042b;
}
.square:last-of-type::before {
	content: attr(data-number);
	font-size: 28px;
	font-weight: 800;
}
.square:last-of-type::after {
	content: 'KG ALUMINIUM VERARBEITET';
	font-size: 12px;
	white-space: pre;
	margin-top: 6px;
}

/* RWD */
@media (max-width: 900px) {
	.usage-container {
		grid-template-columns: 1fr;
	}
	.usage-container img {
		display: none;
	}
	.square-wrapper {
		display: flex;
		flex-direction: row;
		gap: 20px;
	}
	.square {
		position: static;
		margin: 16px 0;
	}
}
@media (max-width: 576px) {
	.usage-container .title {
		font-size: 40px;
	}
	.usage-container .square-wrapper {
		display: flex;
		flex-direction: column;
	}
}



/* BLOG */

.blog {
	background: #f2f4f7;
	padding: 56px 0 80px;
}

.blog-head {
	max-width: 1200px;
	margin: 0 auto 24px;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 16px 24px;
	align-items: center;
}
.blog-eyebrow {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #7f8284;
	position: relative;
}
.blog-eyebrow::after {
	content: '';
	display: block;
	width: 134px;
	height: 3px;
	background: #dd042b;
	margin-top: 8px;
}
.blog-title-xl {
	margin: 0;
	font-size: 44px;
	line-height: 1.15;
	color: #04080d;
	font-weight: 800;
}
.blog-more {
	display: block;
	background: #dd042b;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	padding: 12px 20px;
	transition: background-color 0.3s;
}

.blog-more span {
	display: inline-block;
	transition: transform 0.2s;
}

.blog-more:hover {
	background-color: #04080d;
}

.blog-more:hover span {
	transform: translateX(3px);
}

/* cards */

.blog-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.blog-card {
	background: #fff;
	border: 1px solid #eaecf0;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
	position: relative;
}
.blog-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}



.blog-card > img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

/* data */
.blog-card .date {
	position: absolute;
	left: 20px;
	top: 190px; 
	background: #dd042b;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 10px 14px;
	clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%); 
	transition: background 0.3s;
}

.blog-card:hover .date {
	background: #04080d;
}

/* Content */
.blog-card .blog-title {
	margin: 18px 18px 10px;
	font-size: 22px;
	line-height: 1.3;
	color: #04080d;
	font-weight: 800;
	transition: color 0.3s;
}
.blog-card .blog-text {
	margin: 0 18px 22px;
	color: #5b6676;
	line-height: 1.7;
	font-size: 15px;
}

.blog-title:hover {
	color: #dd042b;
}


/* RWD */
@media (max-width: 1100px) {
	.blog-container {
		grid-template-columns: repeat(2, 1fr);
	}
	.blog-title-xl {
		font-size: 36px;
	}
}
@media (max-width: 700px) {
	
	.blog-container {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.blog-card > img {
		height: 200px;
	}
	.blog-card .date {
		top: 172px;
	}
}

@media (max-width: 576px) {
	
	.blog-head {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	
}

/* C2A */

.c2a {
	background: #dd042b;
	padding: 40px 0;
}

.c2a-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr; /* lewa szersza */
	gap: 40px;
	align-items: center;
	color: #fff;
}

.c2a-contact {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}
.c2a-contact .c2a-icon {
	width: 70px;
	height: 70px;
}
.c2a-contact p {
	margin: 0;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.5;
}

.konfigurator h3 {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	color: #1b2027;
	text-align: end;
	transition: color 0.2s;
}

.konfigurator a {
	text-decoration: none;
}


.konfigurator span {
	display: inline-block;
	transition: transform 0.3s;
}

.konfigurator h3:hover {
	color: #fff;
}

.konfigurator h3:hover span {
	transform: translateX(10px);
}

/* RWD */
@media (max-width: 800px) {
	.c2a-container {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.c2a-contact {
		flex-direction: column;
		align-items: center;
	}
	.konfigurator h3 {
		text-align: center;
	}
}

/* FOOTER */

footer {
	background: #0f1b2d; 
	color: #c8d0da; 
	font-size: 15px;
	line-height: 1.6;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 40px;
}

/* Left page */
.left-info h4 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}
.left-info p {
	margin: 4px 0;
}

/* right page */
.right-info h4 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}
.right-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-wrap: wrap;
}
.right-info a {
	color: #c8d0da;
	text-decoration: none;
	transition: color 0.3s;
}
.right-info a:hover {
	color: #dd042b; /* czerwony akcent */
}


.low-bar {
	border-top: 1px solid #22324a;
	padding: 16px 20px;
	text-align: center;
	font-size: 14px;
	background: #0c1725;
	color: #98a2b3;
}

/* RWD */
@media (max-width: 700px) {
	.footer-container {
		flex-direction: column;
		text-align: center;
	}
	.right-info ul {
		justify-content: center;
	}
}

/* PRODUCTS PAGE */

/* --- HERO --- */
.products-hero {
	background: #f2f4f7;
	padding: 108px 0 32px;
}
.products-hero__inner {
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.products-hero__inner h1 {
	color: #fff;
	font-size: 44px;
	line-height: 1.15;
	margin: 0 0 6px;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
	position: absolute;
	left: 50px;
	top: 150px;
}
.breadcrumb {
	position: absolute;
	left: 50px;
	top: 210px;
	color: #e6e8ec;
	font-size: 14px;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.breadcrumb span {
	margin: 0 6px;
	color: #ffdde2;
}


.breadcrumb a,
.breadcrumb a:visited,
.breadcrumb a:active {
	color: inherit;       
	text-decoration: none; 
}
.breadcrumb a:hover {
	text-decoration: none;
	color: #dd042b;
}

.products-hero__media {
	position: relative;
	margin: 0 auto;
	overflow: hidden;
}

.products-hero__media::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 1; 
}

.products-hero__media img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	object-position: 50% 60%;
	display: block;
}

/* --- GRID --- */
.products-list {
	background: #f2f4f7;
	padding: 24px 0 80px;
}
.products-list__grid {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.product-card {
	background: #fff;
	border: 1px solid #eaecf0;
	overflow: hidden;
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.product-card__img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.product-card::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 130px;
	width: 72px;
	height: 72px;
	opacity: 0.08;
	background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' stroke='%230f1b2d' stroke-width='2'/%3E%3Cpath d='M8 12l3 3 5-6' stroke='%230f1b2d' stroke-width='2' fill='none'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}

.product-card__body {
	height: 180px;
	padding: 16px 18px 18px;
	position: relative;
}
.product-card__tag {
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #dd042b;
	font-weight: 500;
}
.product-card__title {
	margin: 8px 0 16px;
	font-size: 22px;
	line-height: 1.25;
	color: #04080d;
	font-weight: 600;
	transition: color 0.2s;
}

.product-card__title:hover {
	color: #dd042b;
}


.product-card__more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #04080d;
	font-weight: 700;
}
.product-card__more span {
	transition: transform 0.2s;
}
.product-card:hover .product-card__more span {
	transform: translateX(3px);
}

/* red bar accent */
.product-card__body::after {
	content: '';
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 10px;
	height: 3px;
	background: #dd042b;
}

/* --- RWD --- */
@media (max-width: 1100px) {
	.products-hero {
		padding: 80px 0 32px;
	}
	.products-list__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.products-hero__inner h1 {
		color: #fff;
		margin: 16px 0 6px;
	}
	.breadcrumb {
		color: #e6e8ec;
		text-shadow: none;
		margin-bottom: 8px;
		top: 220px;
	}
}
@media (max-width: 700px) {
	.products-list__grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.products-hero__media img {
		height: 200px;
	}
	.products-hero__inner h1 {
		top: 100px;
		font-size: 35px;
		color: #fff;
		margin: 16px 0 6px;
	}
	.breadcrumb {
		color: #e6e8ec;
		text-shadow: none;
		margin-bottom: 8px;
		top: 160px;
	}
}

/* GALLERY */

.gallery {
	background: #f2f4f7;
	padding: 32px 0 80px;
}
.gallery-grid {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.g-item {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 1/1;
	background: #04080d;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.g-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.g-item:hover img {
	transform: scale(1.05);
}

/* Overlay */
.g-overlay {
	position: absolute;
	inset: 0;
	background: rgba(225, 25, 55, 0.92); /* czerwony */
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.g-item:hover .g-overlay {
	opacity: 1;
}

.g-tag {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 6px;
	opacity: 0.9;
}
.g-overlay h3 {
	padding: 0 20px;
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
}

/* RWD */
@media (max-width: 1100px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}
@media (max-width: 600px) {
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* FAQ */


body {
	background: #f2f4f7;
}

/* Hero */
.faq-hero {
	max-width: 1200px;
	margin: 32px auto 20px;
	padding: 60px 20px;
	text-align: center;
}
.faq-eyebrow {
	position: relative;
	display: inline-block;
	margin: 0 0 10px;
	color: #8a97a6;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.faq-eyebrow::after {
	position: absolute;
	content: '';
	display: block;
	width: 168px;
	height: 3px;
	background: #dd042b;
	left: 0;
	bottom: -8px;
}
.faq-title {
	margin: 15px 0 10px;
	font-size: 48px;
	line-height: 1.15;
	color: #04080d;
	font-weight: 700;
}
.faq-lead {
	margin: 0 auto;
	padding: 20px 0;
	max-width: 780px;
	color: #54595F;
	font-size: 18px;
	font-weight: 600;
}

/*  FAQ list */
.faq {
	max-width: 1200px;
	margin: 24px auto 80px;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}


.faq-item {
	background: #fff;
	overflow: hidden;
	border: 1px solid #e6e8ec;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
	padding: 16px 20px;
	letter-spacing: 1px;
}


.faq-item > summary {
	list-style: none;
	cursor: pointer;
	background: #1b2735;
	color: #fff;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.faq-item > summary::-webkit-details-marker {
	display: none;
} 

.faq-item > summary .ico {
	width: 60px;
	height: 60px;
	background-color: #dd042b;
	display: inline-block;
	position: relative;
	/* flex: 0 0 22px; */
}
.faq-item > summary .ico::before,
.faq-item > summary .ico::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 35%;
	width: 15px;
	height: 2px;
	background: #fff;
	transform: translateY(-50%);
}
.faq-item > summary .ico::after {
	transform: translateY(-50%) rotate(90deg);
} 

/* minus after open */
.faq-item[open] > summary .ico::after {
	opacity: 0;
}

/* content */
.faq-body {
	padding: 22px 22px 26px;
	color: #333;
	line-height: 2;
}
.faq-body p {
	font-size: 17px;
	margin: 0 0 14px;
}
.faq-body ul {
	margin: 10px 0 0 18px;
}
.faq-body li {
	margin: 6px 0;
}

.faq-body a {
	transition: color 0.3s;
}

.faq-body a:hover {
	color: #dd042b;
}

/* RWD */
@media (max-width: 700px) {
	.faq-title {
		font-size: 34px;
	}
}
@media (max-width: 430px) {
	.faq-item > summary .ico {
		height: 82px;
	}
}

/* BLOG */

.blog-page {
	background: #f2f4f7;
	padding: 32px 0 80px;
}
.blog-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 28px;
}

/* Featured post */
.post-card {
	background: #fff;
	border: 1px solid #eaecf0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	position: relative;
	margin-bottom: 32px;
}
.post-media {
	position: relative;
}
.post-media img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
}

.welcome-img {
	margin-bottom: 20px;
}

.post-date {
	position: absolute;
	left: 16px;
	bottom: -16px;
	background: #dd042b;
	color: #fff;
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 10px 14px;
	clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}
.post-body {
	padding: 22px 22px 0;
}

.post-body ul {
	list-style-position: inside;
	text-indent: 10px;
}
.post-title {
	margin: 12px 0 10px;
	font-size: 30px;
	line-height: 1.25;
	color: #04080d;
	font-weight: 600;
	transition: color .3s;
}
.post-title2 {
	margin: 18px 0 10px;
	font-size: 30px;
	line-height: 1.25;
	color: #04080d;
	font-weight: 600;
	transition: color .3s;
}
.post-title:hover {
	color: #dd042b;
}
.post-excerpt {
	margin: 0 0 18px;
	font-size: 18px;
	padding: 0 0 15px 0;
	color: #848484;
	line-height: 1.7;
}
.post-excerpt a {
	transition: color .3s;
}

.post-excerpt a:hover {
	color: #dd042b;
}
.post-meta {
	display: flex;
	gap: 16px;
	color: #8a97a6;
	font-size: 14px;
	border-top: 1px solid #eef0f3;
	margin-top: 16px;
	padding: 12px 0 60px;
}
.post-more {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 72px;
	height: 56px;
	background: #0f1b2d;
	transition: background 0.3s;
}
.post-more::after {
	content: '→';
	color: #fff;
	position: absolute;
	right: 38%;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 700;
}

.post-more:hover {
	background: #dd042b;
}
.post-card:hover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Sidebar */
.sidebar .widget {
	background: #fff;
	border: 1px solid #eaecf0;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	padding: 16px 16px 12px;
	margin-bottom: 20px;
}
.widget-title {
	margin: 0 0 12px;
	font-size: 20px;
	color: #04080d;
	font-weight: 600;
	position: relative;
	padding-bottom: 10px;
}
.widget-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: #dd042b;
	position: absolute;
	left: 0;
	bottom: 0;
}
.recent-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.recent-list a{
	transition: color .3s;
	color: #04080d;
}

.recent-list a:hover {
	color: #dd042b
}
.recent-item {
	display: flex;
	gap: 12px;
	text-decoration: none;
	color: #04080d;
	align-items: center;
}
.recent-item img {
	width: 72px;
	height: 60px;
	object-fit: cover;
	flex: 0 0 72px;
}
.recent-item p {
	margin: 0 0 4px;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 600;
}
.recent-item time {
	font-size: 12px;
	color: #dd042b;
}
.cats {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
}
.cats li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #eef0f3;
}
.cats li:last-child {
	border-bottom: 0;
}
.cats a {
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	color: #04080d;
	transition: color .3s;
}
.cats a:hover {
	color: #dd042b;
}
.badge {
	background: #f1f3f5;
	color: #04080d;
	border: 1px solid #e3e6ea;
	border-radius: 6px;
	padding: 2px 8px;
	font-size: 12px;
}

/* RWD */
@media (max-width: 1000px) {
	.blog-wrap {
		grid-template-columns: 1fr;
	}
	.post-media img {
		height: 360px;
	}
}
@media (max-width: 600px) {
	.post-media img {
		height: 260px;
	}
	.post-title {
		font-size: 26px;
	}
	.post-more {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 60px;
		height: 50px;
		background: #0f1b2d;
		transition: background 0.3s;
	}
}

/* KONTAKT */

/* Alert messages */
.alert {
	padding: 15px 20px;
	margin: 20px 0;
	border-radius: 8px;
	font-size: 16px;
}
.alert-success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}
.alert-error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* PAGE */
.contact-page {
	background: #f2f4f7;
	padding: 32px 0 80px;
}
.contact-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 32px;
	align-items: start;
}

/* LEFT */
.contact-info .eyebrow {
	margin: 0 0 10px;
	color: #8a97a6;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	position: relative;
}
.contact-info .eyebrow::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: #dd042b;
	margin-top: 8px;
}
.contact-title {
	margin: 6px 0 22px;
	font-size: 48px;
	line-height: 1.1;
	color: #0f1b2d;
	font-weight: 700;
}
.contact-info .info-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin: 20px 0;
}
.contact-info .info-item p {
	font-size: 18px;
	margin: 4px 0 0;
	padding: 10px 0;
	color: #5a6472;
}

.contact-info strong {
	font-size: 20px;

}

.contact-info a {
	color: #04080d;
	text-decoration: none;
	border-bottom: 1px solid transparent;
}
.contact-info a:hover {
	border-bottom-color: #0f1b2d;
}

/* RIGHT CARD */
.card {
	background: #fff;
	border: 1px solid #eaecf0;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	padding: 26px;
}
.contact-form h2 {
	margin: 0 0 18px;
	font-size: 26px;
	line-height: 1.35;
	color: #04080d;
	font-weight: 700;
}

/* FORM */
.form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.form-row {
	display: flex;
	gap: 16px;
}
.form-row.two > * {
	flex: 1;
}
.field {
	position: relative;
	display: block;
	width: 100%;
}
.field input,
.field textarea {
	width: 100%;
	border: 1px solid #e5e7eb;
	background: #f3f4f6;
	border-radius: 4px;
	padding: 14px 44px 14px 14px;
	font-size: 16px;
	color: #04080d;
	outline: none;
}
.field textarea {
	resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
	color: #9aa3af;
}
.field input:focus,
.field textarea:focus {
	border-color: #cfd6de;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(225, 25, 55, 0.08);
}

/* input icons (right) */
.field-ico {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	opacity: 0.5;
	background-repeat: no-repeat;
	background-size: 20px;
}
.field-ico.person {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230f1b2d' d='M12 12a5 5 0 10-5-5 5 5 0 005 5zm0 2c-4.42 0-8 2.24-8 5v1h16v-1c0-2.76-3.58-5-8-5z'/%3E%3C/svg%3E");
}
.field-ico.mail {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230f1b2d' d='M20 4H4a2 2 0 00-2 2v12a2 2 0 002 2h16a2 2 0 002-2V6a2 2 0 00-2-2zm0 4l-8 5-8-5V6l8 5 8-5z'/%3E%3C/svg%3E");
}
.field-ico.phone {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230f1b2d' d='M6.6 10.8a15.3 15.3 0 006.6 6.6l2.2-2.2a1 1 0 011.1-.2 11.6 11.6 0 003.6 1.1 1 1 0 01.9 1v3.5a1 1 0 01-1 1A18 18 0 013 5a1 1 0 011-1h3.5a1 1 0 011 .9 11.6 11.6 0 001.1 3.6 1 1 0 01-.2 1.1z'/%3E%3C/svg%3E");
}
.field-ico.chat {
	top: auto;
	bottom: 12px;
	transform: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230f1b2d' d='M20 2H4a2 2 0 00-2 2v14l4-4h14a2 2 0 002-2V4a2 2 0 00-2-2z'/%3E%3C/svg%3E");
}

/* Consent */
.consent {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: #5a6472;
	font-size: 14px;
	line-height: 1.5;
}
.consent a {
	color: #04080d;
	text-decoration: none;
	border-bottom: 1px solid #04080d;
}
.consent a:hover {
	opacity: 0.8;
}
.captcha-placeholder {
	height: 78px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #8a97a6;
	margin-top: 4px;
}

/* Actions */
.form-actions {
	display: flex;
	justify-content: flex-end;
}
.btn-submit {
	background: #dd042b;
	color: #fff;
	border: 0;
	padding: 15px 30px;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: background 0.3s;
}
.btn-submit:hover {
	background: #04080d;
}
.btn-submit span {
	transition: transform 0.2s;
}
.btn-submit:hover span {
	transform: translateX(3px);
}
.map-section {
	width: 100%;
	height: 500px;
	margin: 0;
	padding: 0;
}
.map-section iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* RWD */
@media (max-width: 1000px) {
	.contact-wrap {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.contact-title {
		font-size: 34px;
	}
	.contact-form h2 {
		font-size: 22px;
	}
}

/* SERVICES PAGES */

/* ====== ARTICLE PAGE ====== */
.article-page {
	background: #f2f4f7;
	padding: 32px 0 80px;
}

.article-container {
	max-width: 1200px; 
	margin: 0 auto;
	padding: 0 24px;
}

/* main intro */
.article-title {
	margin: 0 0 14px;
	font-size: 36px;
	line-height: 1.15;
	font-weight: 500;
	color: #0f1b2d;
}


/* text and headings */
.article-container p {
	margin: 0 0 16px;
	color: #5a6472;
	font-size: 18px;
	line-height: 1.9;
	hyphens: auto; /
}

.article-container h2 {
	margin: 34px 0 10px;
	font-size: 30px;
	line-height: 1.25;
	font-weight: 500;
	color: #0f1b2d;
}

.article-container h3 {
	margin: 22px 0 8px;
	font-size: 20px;
	line-height: 1.35;
	font-weight: 800;
	color: #0f1b2d;
}


.article-container a {
	font-size: 18px;
	font-weight: bold;
	line-height: 3;
	color: #dd042b;
	text-decoration: none;
}

.article-container span {
	font-size: 18px;
	font-weight: bold;
	line-height: 3;
	color: #dd042b;
	text-decoration: none;
}

.article-container .text-link {
	line-height: inherit;
	color: #04080d;
	transition: color 0.3s;
}

.article-container .text-link:hover {
	color: #dd042b;
}

.article-container strong {
	font-weight: 800;
}

/* lists, img, quotes  */
.article-container ul {
	font-size: 18px;
	color: #5a6472;
	padding-left: 1.2rem;
	margin: 10px 0 16px;
}
.article-container li {
	margin: 6px 0;
}

.article-container img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	margin: 16px 0;
}

.article-container blockquote {
	margin: 18px 0;
	padding: 10px 14px;
	background: #fff;
	border-left: 4px solid #dd042b;
	color: #3a4654;
}

.img-article {
	padding: 12px 0 24px; 
}
.img-article__grid {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px; 
}


.img-article__grid img {
	width: 100%;
	height: 220px; 
	object-fit: cover;
	display: block;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* RWD */
@media (max-width: 900px) {
	.img-article__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}
@media (max-width: 600px) {
	.img-article__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

@media (max-width: 700px) {
	.article-title {
		font-size: 34px;
	}
	.article-lead {
		font-size: 16px;
	}
}

/* PRODUCTS */

.product-page {
	background: #f2f4f7;
	padding: 32px 0 80px;
}
.product-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 28px;
}
.card {
	background: #fff;
	border: 1px solid #eaecf0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	margin-bottom: 10px;
	border-radius: 0px;
}

/* ===== SIDEBAR ===== */
.catalog {
	padding: 12px;
}
.catalog-title {
	margin: 6px 0 8px;
	font-size: 18px;
	font-weight: 700;
	color: #0f1b2d;
	position: relative;
	padding: 8px 8px 14px;
}
.catalog-title::after {
	content: '';
	position: absolute;
	left: 8px;
	bottom: 0;
	width: 60px;
	height: 3px;
	background: #dd042b;
}

.cat-list {
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
}
.cat-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 12px;
	margin: 6px 0;
	text-decoration: none;
	color: #0f1b2d;
	background: #fafbfc;
	border: 1px solid #eef0f3;
	transition: background 0.2s, color 0.2s;
}
.cat-list a:hover {
	background: #dd042b;
	color: #fff;
}
.cat-list a.active {
	background: #dd042b;
	color: #fff;
	border-color: #dd042b;
}
.chev {
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
}

/* sidebar contact */
.contact-card {
	padding: 16px;
}
.contact-eyebrow {
	margin: 0 0 12px;
	font-weight: 800;
	color: #dd042b;
	background: #fff5f6;
	border: 1px dashed #f3c2ca;
	padding: 10px;
	border-radius: 6px;
}
.contact-person {
	display: flex;
	align-items: center;
	gap: 12px;
}
.contact-person img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
}
.contact-person p {
	padding: 10px 0;
	line-height: 1.5;
}
.contact-person a {
	color: #0f1b2d;
	text-decoration: none;
	border-bottom: 1px solid transparent;
}
.contact-person a:hover {
	border-bottom-color: #0f1b2d;
}

/* RIGHT SIDE */

.product-media img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
}
.product-head h1 {
	margin: 16px 0 8px;
	font-size: 28px;
	line-height: 1.25;
	font-weight: 700;
	color: #0f1b2d;
}

.product-head .head-title {
	margin: 20px 8px;
	font-size: 28px;
	line-height: 1.25;
	font-weight: 700;
	color: #0f1b2d;
}

.product-head .head-subtitle {
	margin-bottom: 30px;
	font-weight: 700;
	color: #0f1b2d;
}

.product-lead {
	margin: 0 0 12px;
	font-size: 17px;
	color: #5a6472;
	line-height: 1.75;
}
.product-lead2 {
	margin: 50px 0 12px;
	font-size: 19px;
	color: #5a6472;
}

.variant-tabs {
	display: flex;
	gap: 10px;
	margin: 8px 0 16px;
}
.variant-tabs .tab {
	display: inline-block;
	padding: 10px 14px;
	border: 1px solid #eaecf0;
	border-radius: 6px;
	background: #fff;
	text-decoration: none;
	color: #0f1b2d;
	font-weight: 700;
}
.variant-tabs .tab.active {
	background: #0f1b2d;
	color: #fff;
	border-color: #0f1b2d;
}
.variant-tabs .tab:hover {
	filter: brightness(0.98);
}

/* download */
.download {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
}

.frame {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.download .pill {
	display: inline-block;
	background: #fff1f3;
	color: #dd042b;
	border: 1px solid #f7c9d1;
	font-weight: 800;
	font-size: 12px;
	letter-spacing: 0.08em;
	padding: 6px 10px;
	border-radius: 999px;
}
.download p {
	margin: 0;
	color: #2b3441;
}
.download .frame-text,
.download ol {
	margin: 0;
	font-size: 17px;
	color: #5a6472;
	line-height: 1.75;
}
.btn-download {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 6px;
	background: #0f1b2d;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
}
.btn-download:hover {
	background: #dd042b;
}

/* spec */
.spec img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}
.spec-2 img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

/* spaces beetween cards */
.product-main > * {
	margin-bottom: 25px;
}

.product-main a {
	transition: color .3s;
}	
.product-main a:hover {
	color: #fff;
}

.spec {
	margin-bottom: 150px;
}

.product-gallery {
	padding: 12px;
}

.pg-view {
	overflow: hidden;
	border-radius: 6px;
}

.pg-track {
	display: flex;
	transition: transform 0.4s ease;
}

.pg-slide {
	min-width: 100%;
}
.pg-slide img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
}

/* dots */
.pg-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 10px 0 2px;
}
.pg-dot {
	width: 8px;
	height: 8px;
	border: 0;
	border-radius: 50%;
	background: #c7ccd3;
	cursor: pointer;
}
.pg-dot.is-active {
	background: #0f1b2d;
}

/* ===== RWD ===== */
@media (max-width: 1000px) {
	.product-wrap {
		grid-template-columns: 1fr;
	}
	.product-media img {
		height: 300px;
	}
}


/* GALERY PAGE  */

.project-page{ background:#f2f4f7; padding:32px 0 80px; }
.project-wrap{ max-width:1200px; margin:0 auto; padding:0 20px; }
.card{ background:#fff; border:1px solid #eaecf0; border-radius:6px; box-shadow:0 2px 8px rgba(0,0,0,.06); }

/* ===== hero ===== */
.project-hero{ margin:0 0 18px; }
.project-hero img{ width:100%; height:540px; object-fit:cover; display:block; border-radius:6px; }

/* ===== meta ===== */
.project-meta{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding:30px 18px;
  margin-bottom:18px;
}
.meta-item{ align-items:start; }
.meta-item .dot{
   display: inline-block; width:8px; height:8px; border-radius:2px; background:#e11937; margin-top:.5em;
}
.meta-item h4{display: inline-block; margin:0; font-size:18px; font-weight:800; color:#0f1b2d; }
.meta-item p{ margin:0; padding-top: 5px ; color:#2b3441; line-height:1.2; }

/* ===== gallery ===== */
.project-gallery{ padding:12px; }
.pg-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pg-grid img{
  width:100%;
  height:220px;          
  object-fit:cover;
  display:block;
  border-radius:6px;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
  transition: transform .2s ease;
}
.pg-grid img:hover{ transform: scale(1.015); }

/* ===== RWD ===== */
@media (max-width:1100px){
  .project-hero img{ height:460px; }
}
@media (max-width:900px){
  .project-meta{ grid-template-columns: 1fr 1fr; }
  .pg-grid{ grid-template-columns: 1fr 1fr; gap:20px; }
}
@media (max-width:600px){
  .project-hero img{ height:320px; }
  .project-meta{ grid-template-columns: 1fr; gap:14px; }
  .pg-grid{ grid-template-columns: 1fr; gap:16px; }
}

/* Lightbox overlay */
.lb{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.88);
  display: none;            /* włączany JS-em */
  align-items: center; justify-content: center;
  z-index: 1000;
  padding: 40px;
}
.lb.is-open{ display: flex; }
.lb__img{
  max-width: min(92vw, 1600px);
  max-height: 92vh;
  width: auto; height: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  border-radius: 6px;
}

/* Buttons */
.lb__btn{
  position: absolute;
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: rgba(15,27,45,.9); color:#fff; cursor: pointer;
  display: grid; place-items: center;
}
.lb__btn:hover{ filter: brightness(1.1); }
.lb__close{ top: 20px; right: 20px; }
.lb__prev{ left: 20px; top: 50%; transform: translateY(-50%); }
.lb__next{ right: 20px; top: 50%; transform: translateY(-50%); }

/* Arrow icons  */
.lb__prev::before, .lb__next::before, .lb__close::before{
  content:""; display:block; width:14px; height:14px;
  border-right:2px solid #fff; border-bottom:2px solid #fff;
}
.lb__prev::before{ transform: rotate(135deg); }
.lb__next::before{ transform: rotate(-45deg); }
.lb__close::before{
  width:16px; height:16px; border:none;
  box-shadow:
    0 0 0 2px #fff inset, 
    0 0 0 0 transparent;   
  background:
    linear-gradient(#fff,#fff) center/2px 20px no-repeat,
    linear-gradient(#fff,#fff) center/20px 2px no-repeat;
  transform: rotate(45deg);
}

/* Zoom on mini img */
.project-gallery .pg-grid img{ cursor: zoom-in; }

/* scroll lock */
body.modal-open{ overflow: hidden; }

/* RWD */
@media (max-width:700px){
  .lb{ padding: 16px; }
  .lb__prev, .lb__next{ top:auto; bottom: 16px; transform:none; }
  .lb__prev{ left:16px; } .lb__next{ right:16px; }
}
