.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);
}

/* Photo cards: image always visible; hover adds highlight (overlay lift + image scale) */
.pyrotech-industries__card--hover-bg {
	cursor: pointer;
	background: #1a1a1a;
	border-color: rgba(255, 255, 255, 0.12);
}

.pyrotech-industries__card--hover-bg .pyrotech-industries__card-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	border-radius: inherit;
}

.pyrotech-industries__card--hover-bg .pyrotech-industries__card-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.45s ease;
}

.pyrotech-industries__card--hover-bg .pyrotech-industries__card-bg-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.52);
	z-index: 1;
	transition: background 0.35s ease;
}

.pyrotech-industries__card--hover-bg:hover .pyrotech-industries__card-bg-overlay {
	background: rgba(0, 0, 0, 0.38);
}

.pyrotech-industries__card--hover-bg:hover .pyrotech-industries__card-bg img {
	transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
	.pyrotech-industries__card--hover-bg .pyrotech-industries__card-bg img,
	.pyrotech-industries__card--hover-bg .pyrotech-industries__card-bg-overlay {
		transition: none;
	}

	.pyrotech-industries__card--hover-bg:hover .pyrotech-industries__card-bg img {
		transform: none;
	}
}

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

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

.pyrotech-industries__card--hover-bg .pyrotech-card-corner-icon {
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}

.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;
	}
}