/* Industry Top Page Styles */

html {
	scroll-behavior: smooth;
}

/* ===== Hero ===== */
.it-hero {
	background: linear-gradient(135deg, #182b38 0%, #2c4a5e 100%);
	color: #fff;
	padding: 3.5rem 0;
}

.it-hero h1 {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
	color: #fff;
}

.it-hero-sub {
	font-size: 1rem;
	color: rgba(255,255,255,0.95);
	margin: 0 0 1.5rem 0;
}

.it-hero-stats {
	display: flex;
	gap: 2.5rem;
}

.it-hero-stat {
	display: flex;
	align-items: baseline;
	gap: 0.3rem;
}

.it-hero-stat-num {
	font-size: 2.2rem;
	font-weight: 700;
	color: #fab549;
}

.it-hero-stat-label {
	font-size: 0.9rem;
	opacity: 0.85;
}

/* ===== Main Grid ===== */
.it-main {
	padding: 3rem 0;
	background: #f8f9fb;
}

.it-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

/* ===== Card ===== */
.it-card {
	display: block;
	background: #fff;
	border-radius: 12px;
	border: 1.5px solid #e9ecef;
	text-decoration: none;
	color: inherit;
	transition: all 0.25s ease;
	overflow: hidden;
	opacity: 0;
	transform: translateY(12px);
}

.it-card:hover {
	text-decoration: none;
	color: inherit;
	border-color: #fab549;
	box-shadow: 0 6px 20px rgba(250, 181, 73, 0.18);
	transform: translateY(-3px);
}

.it-card-empty {
	opacity: 1;
	transform: none;
	cursor: default;
}

.it-card-empty:hover {
	border-color: #e9ecef;
	box-shadow: none;
	transform: none;
}

.it-card-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	gap: 1rem;
}

.it-card-main {
	flex: 1;
	min-width: 0;
}

.it-card-name {
	font-size: 1.05rem;
	font-weight: 700;
	color: #182b38;
	margin: 0 0 0.4rem 0;
	line-height: 1.4;
}

.it-card-stats {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
}

.it-card-stat {
	display: flex;
	align-items: baseline;
	gap: 0.2rem;
}

.it-card-stat-num {
	font-size: 1.35rem;
	font-weight: 700;
	color: #fab549;
	line-height: 1;
}

.it-card-stat-unit {
	font-size: 0.78rem;
	color: #6c757d;
	font-weight: 500;
}

.it-card-stat-sep {
	width: 1px;
	height: 14px;
	background: #dee2e6;
	align-self: center;
}

.it-card-stat-preparing {
	font-size: 0.82rem;
	color: #adb5bd;
	font-style: italic;
}

.it-card-arrow {
	color: #ccd0d5;
	font-size: 0.9rem;
	flex-shrink: 0;
	transition: all 0.25s ease;
}

.it-card:hover .it-card-arrow {
	color: #fab549;
	transform: translateX(3px);
}

/* Progress bar */
.it-card-bar {
	height: 3px;
	background: #f0f2f5;
}

.it-card-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, #fab549, #f59e0b);
	border-radius: 0 2px 2px 0;
	transition: width 0.6s ease;
}

/* ===== CTA ===== */
.it-cta-section {
	padding: 3rem 0;
	background: #fff;
}

.it-cta-box {
	background: #fff;
	border-radius: 16px;
	padding: 2.5rem;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	border: 1px solid #e9ecef;
}

.it-cta-box h2 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #182b38;
	text-align: center;
	margin-bottom: 0.5rem;
}

.it-cta-text {
	font-size: 0.9rem;
	color: #6c757d;
	text-align: center;
	margin-bottom: 1.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
	.it-hero {
		padding: 2.5rem 0;
	}

	.it-hero h1 {
		font-size: 1.5rem;
	}

	.it-hero-sub {
		font-size: 0.9rem;
	}

	.it-hero-stats {
		gap: 1.5rem;
	}

	.it-hero-stat-num {
		font-size: 1.8rem;
	}

	.it-grid {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.it-card-inner {
		padding: 1rem 1.25rem;
	}

	.it-card-name {
		font-size: 0.95rem;
	}

	.it-card-stat-num {
		font-size: 1.15rem;
	}

	.it-cta-box {
		padding: 1.5rem;
	}

	.it-cta-box h2 {
		font-size: 1.2rem;
	}
}

@media (min-width: 992px) {
	.it-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
