/* Product Landing Template
   ---------------------------------------------------------------
   Styles for product-landing.php, shared across all pages using that
   template. Enqueued only there, with filemtime()-based cache busting
   (see tg_woocommerce_scripts() in inc/woocommerce.php) so edits here
   are always picked up immediately. */

.product-landing .container {
	max-width: 1140px;
}

.bh-section-title {
	font-size: 30px;
	font-weight: 700;
	color: #012343;
	margin: 0 0 20px;
	line-height: 1.3;
}

.bh-section-title--center {
	text-align: center;
}

.bh-prose {
	line-height: 1.7;
	color: #444;
}

.bh-prose p {
	margin: 0 0 15px;
}

.bh-prose p:last-child {
	margin-bottom: 0;
}

.bh-img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 6px;
}

/* Hero
   The hero_image itself is a designed banner graphic — solid brand
   orange fading into the product photo — not a plain photo needing a
   dark scrim for text contrast. No overlay, so its real colors show
   through; the fallback background-color matches it for when the
   image hasn't loaded or doesn't fully cover. */
.bh-hero {
	position: relative;
	background-color: #fc5c04;
	background-size: cover;
	background-position: center;
	min-height: 140px;
	display: flex;
	align-items: center;
	padding: 20px 0;
}

.bh-hero-overlay {
	display: none;
}

.bh-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.bh-hero-content h1 {
	color: #fff;
	font-size: 42px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 10px;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.bh-hero-subheading {
	color: #fff;
	font-size: 20px;
	margin: 0;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Generic section spacing */
.bh-section {
	padding: 50px 0;
}

.bh-section:nth-of-type(even) {
	background-color: #f7f7f7;
}

/* Feature list + image */
.bh-features-grid {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
}

.bh-features-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
	width: 100%;
}

.bh-feature h3 {
	color: #fc5c04;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 8px;
}

.bh-features-image {
	width: 100%;
	max-width: 400px;
}

@media (min-width: 900px) {
	.bh-features-grid {
		flex-direction: row;
		align-items: flex-start;
	}

	.bh-features-list {
		flex: 1;
	}

	.bh-features-image {
		flex: 0 0 360px;
	}
}

/* Text + image split sections */
.bh-split-grid {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
}

.bh-split-text,
.bh-split-image {
	width: 100%;
}

@media (min-width: 900px) {
	.bh-split-grid {
		flex-direction: row;
	}

	.bh-split--reverse .bh-split-grid {
		flex-direction: row-reverse;
	}

	.bh-split-text,
	.bh-split-image {
		flex: 1;
	}
}

/* Video */
.bh-video-player {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	background: #000;
	border-radius: 6px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.bh-video-player img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0;
}

.bh-video-player iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}

.bh-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: rgba(252, 92, 4, 0.9);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bh-video-play-icon {
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 20px solid #fff;
	margin-left: 4px;
}

/* Specifications grid */
.bh-specifications-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
}

@media (min-width: 600px) {
	.bh-specifications-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.bh-specifications-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.bh-spec-card {
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bh-spec-card-image img {
	border-radius: 0;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.bh-spec-card-body {
	padding: 18px;
}

.bh-spec-card-body h3 {
	font-size: 17px;
	color: #012343;
	margin: 0 0 8px;
}

.bh-spec-card-body .bh-prose {
	font-size: 14px;
}

/* Industries / case studies grid */
.bh-industries-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
}

@media (min-width: 700px) {
	.bh-industries-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.bh-industry-card {
	display: block;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	color: inherit;
	text-decoration: none;
}

a.bh-industry-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.bh-industry-card-image img {
	border-radius: 0;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.bh-industry-card-body {
	padding: 20px;
}

.bh-industry-card-body h3 {
	font-size: 19px;
	color: #012343;
	margin: 0 0 10px;
}

/* Contact / download section */
.bh-contact-grid {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
}

.bh-contact-text {
	width: 100%;
}

.bh-contact-image {
	width: 100%;
	max-width: 320px;
}

@media (min-width: 900px) {
	.bh-contact-grid {
		flex-direction: row;
		justify-content: space-between;
	}

	.bh-contact-text {
		flex: 1;
	}
}

.bh-contact-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 10px;
}

.bh-btn {
	display: inline-block;
	background-color: #fc5c04;
	color: #fff !important;
	border: 2px solid #fc5c04;
	border-radius: 4px;
	padding: 12px 24px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	font-size: 15px;
}

.bh-btn:hover {
	background-color: #e35300;
	border-color: #e35300;
	color: #fff !important;
}

.bh-btn--outline {
	background-color: transparent;
	color: #fc5c04 !important;
}

.bh-btn--outline:hover {
	background-color: #fc5c04;
	color: #fff !important;
}

/* Gated-download modal */
.bh-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
}

.bh-modal.is-open {
	display: block;
}

.bh-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.bh-modal-dialog {
	position: relative;
	background: #fff;
	max-width: 500px;
	margin: 60px auto;
	padding: 30px;
	border-radius: 6px;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
}

.bh-modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #666;
}
