/* ==========================================================================
   Section — Industries We Serve (Homepage)
   ========================================================================== */

.section-industries {
	padding: clamp(80px, 12vh, 140px) 0;
}

.section-industries .section-header {
	text-align: center;
	margin-bottom: clamp(48px, 6vw, 72px);
}

.section-industries .section-header .eyebrow {
	color: var(--cwv-gold);
}

.section-industries .section-header h2 {
	font-family: var(--font-heading);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 600;
	color: var(--cwv-white);
	margin: 0;
}

/* 3x2 Grid */
.industries-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(24px, 3vw, 40px);
	max-width: 900px;
	margin: 0 auto;
}

.industry-item {
	display: flex;
	align-items: center;
	gap: 26px;
	padding: 24px 28px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	background: var(--cwv-card-dark);
	transition: background 0.3s ease, border-color 0.3s ease;
}

.industry-item:hover {
	border-color: var(--cwv-gold);
	background: var(--cwv-card-dark-hover);
}

.industry-icon {
	font-size: 28px;
	line-height: 1;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.industry-icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.industry-label {
	font-family: var(--font-body);
	font-size: clamp(14px, 1.3vw, 16px);
	font-weight: 600;
	color: var(--cwv-white);
	letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 768px) {
	.industries-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.industries-grid {
		grid-template-columns: 1fr;
	}
}
