@charset "utf-8";
/*------------------------------------------------------------
	index
------------------------------------------------------------*/
/* --- 2. Hero Banner --- */
.hero {
	background: linear-gradient(135deg, #0A2540 0%, #051424 100%);
	color: white;
	padding: 100px 0;
	overflow: hidden;
}
.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}
.hero h1 {
	color: white;
	font-size: 2.8rem;
	margin-bottom: 20px;
}
.hero p {
	color: #A0AEC0;
	font-size: 1.1rem;
	margin-bottom: 30px;
}
.hero-visual {
	border-radius: 8px;
	aspect-ratio: 555/350;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.photo-bg {
	background: linear-gradient(180deg, rgba(203, 213, 224, 0) 0%, rgba(203, 213, 224, 0) 20%, #cbd5e0 100%);
}
.trust-badges {
	margin-top: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 25px;
}
.badge {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: #E2E8F0;
}
.badge-icon {
	color: #FF6b00;
	font-size: 1.2rem;
}
/* --- 3. Industrial Challenges --- */
.challenges .grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
}
.challenges-img img {
	width: 100%;
}
.challenges h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}
.challenge-list {
	list-style: none;
	margin-bottom: 25px;
}
.challenge-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
	font-weight: 500;
}
.challenge-list li::before {
	content: "✕";
	position: absolute;
	left: 0;
	color: #E53E3E;
	font-weight: bold;
}
.solution-box {
	background-color: #EBF8FF;
	border-left: 4px solid #3182CE;
	padding: 15px 20px;
	border-radius: 0 4px 4px 0;
	font-size: 0.95rem;
}
/* --- 4. Benefits Grid --- */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}
.benefit-card {
	background: var(--bg-white);
	padding: 30px;
	border-radius: 6px;
	border: 1px solid var(--border-color);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-icon {
	width: 45px;
	height: 45px;
	background: rgba(17,25,135,0.1);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-weight: bold;
	font-size: 1.2rem;
	margin-bottom: 20px;
}
.benefit-card h3 {
	font-size: 1.15rem;
	margin-bottom: 10px;
}
.benefit-card p {
	color: var(--text-light);
	font-size: 0.9rem;
}
/* --- 5. Product Range --- */
.product-range {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.product-card {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	display: flex;
	flex-direction: column;
	position: relative;
}
.product-card.highlight {
	border: 2px solid var(--accent);
	box-shadow: 0 10px 25px rgba(255, 107, 0, 0.1);
}
.product-card.highlight .tag {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: white;
	padding: 2px 12px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 20px;
	letter-spacing: 0.5px;
}
.product-img-placeholder {
	aspect-ratio: 305/180;
	margin-bottom: 20px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.product-card h3 {
	font-size: 1.4rem;
	margin-bottom: 5px;
}
.product-subtitle {
	color: var(--text-light);
	font-size: 0.85rem;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
}
.specs-list {
	list-style: none;
	text-align: left;
	margin-bottom: 25px;
	font-size: 0.9rem;
}
.specs-list li {
	padding: 8px 0;
	border-bottom: 1px solid var(--border-color);
}
.product-card .btn {
	margin-top: auto;
	width: 100%;
}
.product-card .btn-secondary {
	color: #0A2540;
	border-color: #0A2540;
}
/* --- 6. Applications Section --- */
.app-tiles {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}
.app-tile {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	padding: 20px;
	text-align: center;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--primary);
}
/* --- 7. Technical Highlights --- */
.tech-highlights .grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: center;
}
.tech-specs-table {
	width: 100%;
	border-collapse: collapse;
}
.tech-specs-table td {
	padding: 12px 0;
	border-bottom: 1px solid var(--border-color);
	font-size: 0.95rem;
}
.tech-specs-table td:first-child {
	font-weight: 600;
	color: var(--primary);
	width: 40%;
}
.tech-visual-placeholder img {
	width: 100%;
}
/* --- 8. Certifications --- */
.certs-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}
.cert-badge {
	background: var(--bg-light);
	padding: 10px 20px;
	border: 1px dashed var(--text-light);
	border-radius: 4px;
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--text-light);
}
/* --- 9. FAQ Section --- */
.faq-wrapper {
	max-width: 800px;
	margin: 0 auto;
}
.faq-item {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 4px;
	margin-bottom: 15px;
	overflow: hidden;
}
.faq-question {
	padding: 23px 35px 23px 20px;
	position: relative;
	font-weight: 600;
	color: var(--primary);
	cursor: pointer;
	user-select: none;
}
.faq-question::before,.faq-question::after {
	position: absolute;
	right: 22px;
	top: 50%;
	content: "";
	font-size: 1.2rem;
	width: 10px;
	height: 2px;
	margin-top: 1px;
	background-color: var(--accent);
	transition: .3s;
}
.faq-question::after {
	transform: rotate(90deg);
}
.faq-question.on::after {
	transform: rotate(0);
}
.faq-answer {
	padding: 0 20px 20px 20px;
	color: var(--text-light);
	font-size: 0.95rem;
	display: none;
	/* Kept open for simple non-JS fallback rendering */
}
/* --- 10. Quote Form --- */
.quote-section .grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
}
.form-info h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}
.form-info p {
	color: var(--text-light);
	margin-bottom: 20px;
}
.quote-form {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.02);
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.form-group.full-width {
	grid-column: span 2;
}
.form-group label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--primary);
}
.form-group input, .form-group select, .form-group textarea {
	padding: 10px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	font-size: 0.9rem;
	outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
	border-color: var(--accent);
}
.quote-form .btn {
	width: 100%;
}
/* --- 11. Final CTA --- */
.final-cta {
	background: var(--primary);
	color: white;
	text-align: center;
	padding: 80px 0;
}
.final-cta h2 {
	color: white;
	font-size: 2.2rem;
	margin-bottom: 20px;
}
.final-cta p {
	color: #A0AEC0;
	max-width: 600px;
	margin: 0 auto 35px auto;
}
.final-cta .btn-group {
	justify-content: center;
}
@media all and (min-width: 897px) {
	.product-card .btn-secondary:hover {
		color: #fff;
		background-color: #0A2540;
	}
	.benefit-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	}
	.final-cta .btn-primary:last-child:hover {
		background-color: #ff6b00 !important;
	}
}
/* --- Responsive / Mobile Design Layout --- */
@media (max-width: 992px) {
	.hero .container, .challenges .grid, .tech-highlights .grid, .quote-section .grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.hero-visual, .challenges-img {
		order: 2;
		/* Image stacks second on mobile */
	}
	.benefits-grid, .product-range {
		grid-template-columns: 1fr;
	}
	.app-tiles {
		grid-template-columns: 1fr 1fr;
	}
	nav {
		display: none;
		/* Keep nav simple for wireframe fallback */
	}
}
@media (max-width: 576px) {
	.form-grid {
		grid-template-columns: 1fr;
	}
	.form-group.full-width {
		grid-column: span 1;
	}
	.app-tiles {
		grid-template-columns: 1fr;
	}
	.hero h1 {
		font-size: 2rem;
	}
}
#quote {
	padding: 60px 0;
	text-align: center;
}
#quote .lead-grid {
	align-items: center;
}
#quote .lead-copy-block p {
	margin-bottom: 40px;
}
#quote .btn {
	width: 200px;
}
@media all and (max-width: 896px) {
	#quote {
		text-align: left;
	}
	#quote .btn {
		margin: 0 auto;
		display: block;
		text-align: center;
	}
}