/* =========================================================
   Hire Stats Counter - Frontend Styles
   ========================================================= */

.hsw-section {
	background-color: #FFFFFF;
	padding: 60px 0;
	position: relative;
	overflow: hidden;
	font-family: 'Plus Jakarta Sans', sans-serif;
}

.hsw-grid-bg {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(26, 127, 232, 0.04) 1px, transparent 1px);
	background-size: 32px 32px;
	pointer-events: none;
}

.hsw-top-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(26, 127, 232, 0.4), rgba(139, 92, 246, 0.3), rgba(16, 185, 129, 0.25), transparent);
}

.hsw-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 8px;
	position: relative;
	z-index: 1;
}

.hsw-item {
	flex: 1;
	display: flex;
	align-items: stretch;
	position: relative;
	min-width: 0;
}

.hsw-divider {
	width: 1px;
	background-color: #E2E8F0;
	align-self: stretch;
	flex-shrink: 0;
	margin: 28px 0;
}

.hsw-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 24px;
	border-radius: 20px;
	background: transparent;
	border: 1px solid transparent;
	box-shadow: none;
	transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
	cursor: default;
	position: relative;
	overflow: hidden;
}

.hsw-card:hover {
	background: linear-gradient(135deg, var(--hsw-accent-10) 0%, var(--hsw-accent-04) 100%);
	border-color: var(--hsw-accent-25);
	box-shadow: 0 16px 48px var(--hsw-accent-15);
}

.hsw-accent-bar {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 40px;
	height: 3px;
	border-radius: 999px 999px 0 0;
	background: linear-gradient(90deg, var(--hsw-accent), var(--hsw-accent-80));
	transition: transform 0.3s ease;
}

.hsw-card:hover .hsw-accent-bar {
	transform: translateX(-50%) scaleX(1);
}

.hsw-icon-box {
	width: 48px;
	height: 48px;
	border-radius: 13px;
	background: var(--hsw-accent-12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--hsw-accent);
	margin-bottom: 18px;
	box-shadow: none;
	transition: all 0.3s ease;
}

.hsw-icon-box i,
.hsw-icon-box svg {
	font-size: 20px;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.hsw-card:hover .hsw-icon-box {
	background: var(--hsw-accent);
	color: #fff;
	box-shadow: 0 8px 20px var(--hsw-accent-40);
}

.hsw-number {
	font-size: clamp(40px, 4vw, 56px);
	font-weight: 800;
	color: #0F172A;
	line-height: 1;
	letter-spacing: -0.04em;
	transition: color 0.3s ease;
}

.hsw-card:hover .hsw-number {
	color: var(--hsw-accent);
}

.hsw-label {
	font-size: 15px;
	font-weight: 600;
	color: #334155;
	margin-top: 10px;
	text-align: center;
}

.hsw-sub {
	font-size: 12px;
	font-weight: 400;
	color: #94A3B8;
	margin-top: 4px;
	text-align: center;
}

@media (max-width: 1024px) {
	.hsw-container { padding: 0 20px; }
}

@media (max-width: 640px) {
	.hsw-container { flex-direction: column; gap: 0; }
	.hsw-divider { display: none; }
	.hsw-item { flex-direction: column; }
}
