.pyrotech-industries {
	padding: 78px 0 128px;
	background: #fff;
}

.pyrotech-industries .heading-common-light,
.pyrotech-industries .heading-common-line--heavy {
	display: block;
}

.pyrotech-industries__cards {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.pyrotech-industries__card {
	width: 300px;
	height: 330px;
	border-radius: 14px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #fff;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pyrotech-industries__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Card with hover image (card 2) */
.pyrotech-industries__card--hover-bg {
	cursor: pointer;
}

.pyrotech-industries__card--hover-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: transparent;
	transition: background 0.4s ease;
	z-index: 0;
}

.pyrotech-industries__card--hover-bg .pyrotech-industries__card-bg {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

.pyrotech-industries__card--hover-bg .pyrotech-industries__card-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pyrotech-industries__card--hover-bg .pyrotech-industries__card-bg-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.pyrotech-industries__card--hover-bg:hover .pyrotech-industries__card-bg {
	opacity: 1;
}

.pyrotech-industries__card--hover-bg:hover .pyrotech-industries__card-stat,
.pyrotech-industries__card--hover-bg:hover .pyrotech-industries__card-text {
	color: #fff !important;
}

/* White card: dark ring + arrow; hover treatment matches .pyrotech-card-corner-icon in main.css */
.pyrotech-industries__card .pyrotech-card-corner-icon {
	border-color: rgba(0, 0, 0, 0.22);
	color: #111;
}

.pyrotech-industries__card-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.pyrotech-industries__card-bottom {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pyrotech-industries__card-stat {
	
	font-weight: 400;
	font-size: 43px;
	line-height: 100%;
	
	text-transform: uppercase;
	color: #000;
	margin: 0 0 8px;
	transition: color 0.3s ease;
}

.pyrotech-industries__card-text {
	
	font-weight: 400;
	font-size: 18px;
	line-height: 135%;
	
	color: #000;
	margin: 0;
	transition: color 0.3s ease;
}

@media (max-width: 1320px) {
	.pyrotech-industries__cards {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.pyrotech-industries__card {
		width: 100%;
		max-width: 312px;
		margin: 0 auto;
	}
}