/* ========================================
   PRODUCT LANDING PAGES
   Scope: .product-landing
   Path: app/design/frontend/[Vendor]/[Theme]/web/css/product-landing.css
   ======================================== */

:root {
	--safety-yellow: #00A396;
	--safety-yellow-dark: #00A396;
	--navy-deep: #25282A;
	--navy-medium: #2F3234;
	--slate: #334155;
	--silver: #94A3B8;
	--white: #FFFFFF;
	--orange-rescue: #FF6B35;
}

.cms-polarjo-high-vis-jakke .messages {
	margin-top: 0!important;
}
.cms-polarjo-high-vis-jakke .main {
	padding-bottom: 0px!important;
}


.product-landing .pl-logo {
	display: block;
	margin-bottom: 40px;
}

.product-landing .pl-logo img {
	height: 30px;
	width: auto;
}

/* Base - scoped */
.product-landing {
	font-family: 'DM Sans', sans-serif;
	background: var(--navy-deep);
	color: var(--white);
}

.product-landing * {
	box-sizing: border-box;
}

/* ========================================
   HERO SECTION
   ======================================== */
.product-landing .hero-section {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
}

.product-landing .hero-bg-image {
	position: absolute;
	top: 0;
	right: 0;
	width: 65%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	mask-image: linear-gradient(to right, transparent 0%, black 25%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
	opacity: 0.9;
}

.product-landing .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy-deep) 35%, transparent 70%);
}

.product-landing .hero-content {
	position: relative;
	z-index: 10;
	max-width: 1400px;
	margin: 0 auto;
	padding: 60px 80px;
	width: 100%;
}

.product-landing .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(232, 255, 0, 0.1);
	border: 1px solid var(--safety-yellow);
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--safety-yellow);
	margin-bottom: 24px;
}

.product-landing .hero-badge::before {
	content: '';
	width: 8px;
	height: 8px;
	background: var(--safety-yellow);
	border-radius: 50%;
	animation: pl-pulse 2s infinite;
}

@keyframes pl-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

.product-landing .hero-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(48px, 6vw, 80px);
	font-weight: 700;
	line-height: 1.05;
	margin-bottom: 24px;
	max-width: 600px;
}

.product-landing .hero-title span {
	color: var(--safety-yellow);
}

.product-landing .hero-subtitle {
	font-size: 20px;
	color: var(--silver);
	max-width: 480px;
	line-height: 1.6;
	margin-bottom: 40px;
}

.product-landing .hero-specs {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
}

.product-landing .spec-item {
	text-align: left;
}

.product-landing .spec-value {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
}

.product-landing .spec-value span {
	font-size: 16px;
	color: var(--silver);
}

.product-landing .spec-label {
	font-size: 12px;
	color: var(--silver);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 4px;
}

.product-landing .hero-cta {
	display: flex;
	gap: 16px;
	align-items: center;
}

/* ========================================
   BUTTONS
   ======================================== */
.product-landing .btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--safety-yellow)!important;
	color: var(--navy-deep)!important;
	padding: 18px 32px!important;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.product-landing .btn-primary:hover {
	background: var(--safety-yellow-dark);
	color: var(--navy-deep);
	text-decoration: none;
	transform: translateY(-2px);
}

.product-landing .btn-primary svg {
	width: 18px;
	height: 18px;
}

.product-landing .btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: var(--white);
	padding: 18px 32px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	border: 2px solid var(--slate);
	cursor: pointer;
	transition: all 0.3s ease;
}

.product-landing .btn-secondary:hover {
	border-color: var(--white);
	color: var(--white);
	text-decoration: none;
}

.product-landing .btn-dark {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--navy-deep);
	color: var(--white);
	padding: 20px 40px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.product-landing .btn-dark:hover {
	background: var(--navy-medium);
	color: var(--white);
	text-decoration: none;
	transform: translateY(-2px);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.product-landing .section-header {
	text-align: center;
	margin-bottom: 80px;
}

.product-landing .section-eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--safety-yellow);
	margin-bottom: 16px;
}

.product-landing .section-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	margin-bottom: 16px;
}

.product-landing .section-subtitle {
	font-size: 18px;
	color: var(--silver);
	max-width: 600px;
	margin: 0 auto;
}

/* ========================================
   USE CASES
   ======================================== */
.product-landing .usecases-section {
	background: var(--navy-deep);
	padding: 100px 80px;
}

.product-landing .usecases-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.product-landing .usecase-card {
	background: var(--navy-medium);
	padding: 32px;
	text-align: center;
	border: 1px solid transparent;
	transition: all 0.3s ease;
}

.product-landing .usecase-card:hover {
	border-color: var(--safety-yellow);
}

.product-landing .usecase-icon {
	font-size: 40px;
	margin-bottom: 16px;
}

.product-landing .usecase-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

.product-landing .usecase-desc {
	font-size: 14px;
	color: var(--silver);
}

/* ========================================
   FEATURES
   ======================================== */
.product-landing .features-section {
	background: var(--navy-medium);
	padding: 100px 80px;
}

.product-landing .features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	max-width: 1200px;
	margin: 0 auto;
}

.product-landing .feature-card {
	background: var(--navy-deep);
	padding: 40px;
	border: 1px solid rgba(255,255,255,0.05);
	transition: all 0.3s ease;
}

.product-landing .feature-card:hover {
	border-color: var(--safety-yellow);
	transform: translateY(-4px);
}

.product-landing .feature-icon {
	width: 56px;
	height: 56px;
	background: rgba(232, 255, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.product-landing .feature-icon svg {
	width: 28px;
	height: 28px;
	stroke: var(--safety-yellow);
}

.product-landing .feature-title {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
}

.product-landing .feature-desc {
	font-size: 15px;
	color: var(--silver);
	line-height: 1.6;
}

/* ========================================
   TECH SPECS
   ======================================== */
.product-landing .specs-section {
	background: var(--navy-deep);
	padding: 100px 80px;
}

.product-landing .specs-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.product-landing .specs-image {
	position: relative;
}

.product-landing .specs-image img {
	width: 100%;
	height: auto;
	border: 1px solid rgba(255,255,255,0.1);
}

.product-landing .specs-image-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--safety-yellow);
	color: var(--navy-deep);
	padding: 8px 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
}

.product-landing .specs-content h2 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 24px;
}

.product-landing .specs-content p {
	font-size: 16px;
	color: var(--silver);
	line-height: 1.7;
	margin-bottom: 40px;
}

.product-landing .specs-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.product-landing .spec-box {
	background: var(--navy-medium);
	padding: 24px;
	border-left: 3px solid var(--safety-yellow);
}

.product-landing .spec-box-value {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 4px;
}

.product-landing .spec-box-label {
	font-size: 13px;
	color: var(--silver);
}

/* ========================================
   CERTIFICATION
   ======================================== */
.product-landing .cert-section {
	background: linear-gradient(135deg, var(--navy-medium) 0%, var(--navy-deep) 100%);
	padding: 80px;
}

.product-landing .cert-container {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 60px;
	background: rgba(232, 255, 0, 0.03);
	border: 1px solid rgba(232, 255, 0, 0.2);
	padding: 60px;
}

.product-landing .cert-badge {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	background: var(--safety-yellow);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--navy-deep);
}

.product-landing .cert-badge-text {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
}

.product-landing .cert-badge-class {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
}

.product-landing .cert-content h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 12px;
}

.product-landing .cert-content p {
	font-size: 16px;
	color: var(--silver);
	line-height: 1.6;
}

/* ========================================
   CTA SECTION
   ======================================== */
.product-landing .cta-section {
	background: var(--safety-yellow);
	padding: 100px 80px;
	text-align: center;
}

.product-landing .cta-section h2 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: clamp(36px, 4vw, 52px);
	font-weight: 700;
	color: var(--navy-deep);
	margin-bottom: 16px;
}

.product-landing .cta-section p {
	font-size: 18px;
	color: var(--navy-medium);
	margin-bottom: 40px;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
	.product-landing .hero-content {
		padding: 40px;
	}
	.product-landing .features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.product-landing .specs-container {
		grid-template-columns: 1fr;
	}
	.product-landing .usecases-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.product-landing .hero-bg-image {
		width: 100%;
		opacity: 0.3;
	}
	.product-landing .hero-overlay {
		background: linear-gradient(180deg, rgba(10,22,40,0.9) 0%, var(--navy-deep) 100%);
	}
	.product-landing .hero-specs {
		flex-direction: column;
		gap: 24px;
	}
	.product-landing .hero-cta {
		flex-direction: column;
	}
	.product-landing .features-grid {
		grid-template-columns: 1fr;
	}
	.product-landing .features-section,
	.product-landing .specs-section,
	.product-landing .usecases-section,
	.product-landing .cta-section {
		padding: 60px 20px;
	}
	.product-landing .cert-container {
		flex-direction: column;
		text-align: center;
		padding: 40px 20px;
	}
	.product-landing .usecases-grid {
		grid-template-columns: 1fr;
	}
	.product-landing .specs-list {
		grid-template-columns: 1fr;
	}
}
