/* ===== FOR EMPLOYERS PAGE ===== */
main.employers-main {
	padding: 0;
	min-height: 0;
}

/* ===== SHARED SECTION TOKENS ===== */
.section {
	padding: 5rem 0;
}

.section--alt {
	background: var(--bg-light);
}

.section--dark {
	background: var(--bg-dark);
	color: #fff;
}

.eyebrow {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 0.75rem;
}

.section-title {
	font-size: clamp(1.625rem, 3.5vw, 2.375rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 1rem;
	color: inherit;
	max-width: none;
}

.section-desc {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--text-muted);
	max-width: 36rem;
	margin-bottom: 2rem;
}

.section-header {
	margin-bottom: 3.5rem;
}

.section-header.centered {
	text-align: center;
}

.section-header.centered .section-desc {
	margin-left: auto;
	margin-right: auto;
}

.btn-lg {
	padding: 0.8125rem 1.875rem;
	font-size: 1rem;
	border-radius: 0.5rem;
}

.btn-ghost-white {
	background: transparent !important;
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.55) !important;
}

.btn-ghost-white:hover {
	background: rgba(255, 255, 255, 0.15) !important;
	border-color: #fff !important;
}

.btn-outline-primary {
	background: transparent !important;
	color: var(--primary) !important;
	border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
	background: var(--primary) !important;
	color: #fff !important;
}

.fade-up {
	opacity: 0;
	transform: translateY(1.5rem);
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: none;
}

/* ===== HERO ===== */
.employers-hero {
	background: var(--bg-dark) center / cover no-repeat;
	color: #fff;
	padding: 6rem 0 5rem;
	position: relative;
	overflow: hidden;
}

.employers-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.55) 55%, rgba(15, 23, 42, 0.25) 100%);
	pointer-events: none;
}

.employers-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 52rem;
}

.employers-hero-title {
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1.25rem;
	color: #fff;
	max-width: none;
}

.employers-hero-title span {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.employers-hero-sub {
	font-size: clamp(1rem, 1.75vw, 1.125rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.78);
	max-width: 42rem;
	margin-bottom: 2.5rem;
}

.employers-hero-actions {
	display: flex;
	gap: 0.875rem;
	flex-wrap: wrap;
}

/* ===== COMMITMENT ===== */
.commitment-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.commitment-text .section-title {
	margin-bottom: 1.25rem;
}

.commitment-text .section-desc {
	margin-bottom: 1.75rem;
}

.commitment-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.commitment-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	font-size: 0.9375rem;
	color: var(--text);
}

.commitment-list li::before {
	content: "";
	flex-shrink: 0;
	width: 1.125rem;
	height: 1.125rem;
	margin-top: 0.1rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
		center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
		center / contain no-repeat;
}

.commitment-visual {
	border-radius: 1.25rem;
	overflow: hidden;
	border: 1px solid var(--border);
}

.commitment-visual img {
	width: 100%;
	display: block;
	object-fit: cover;
}

/* ===== SOLUTIONS GRID ===== */
.employer-solutions-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.esol-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	padding: 2rem 2rem 2rem;
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	transition: box-shadow 0.25s, transform 0.25s;
}

.esol-card:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-0.125rem);
}

.esol-icon {
	flex-shrink: 0;
	width: 3.25rem;
	height: 3.25rem;
	object-fit: contain;
	display: block;
}

.esol-body {
}

.esol-name {
	font-size: 1.0625rem;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 0.5rem;
}

.esol-name-see {
	color: var(--text);
}
.esol-name-me {
	color: var(--primary);
}

.esol-desc {
	font-size: 0.9rem;
	line-height: 1.7;
	color: var(--text-muted);
	max-width: none;
	margin-bottom: 1rem;
}

.esol-link {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	transition: gap 0.15s;
}

.esol-link:hover {
	gap: 0.5rem;
}

/* ===== STATS STRIP ===== */
.stats-strip {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	overflow: hidden;
	background: var(--bg);
}

.stats-strip-item {
	padding: 2.5rem 1.5rem;
	text-align: center;
	position: relative;
}

.stats-strip-item + .stats-strip-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background: var(--border);
}

.stats-strip-num {
	display: block;
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 0.5rem;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-variant-numeric: tabular-nums;
}

.stats-strip-label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-muted);
	line-height: 1.4;
}

/* ===== CTA BANNER ===== */
.cta-banner {
	background: var(--bg-dark);
	color: #fff;
	text-align: center;
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
}

.cta-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 80% at 50% 0%, rgba(246, 153, 50, 0.2) 0%, transparent 60%),
		radial-gradient(ellipse 40% 60% at 80% 100%, rgba(246, 97, 50, 0.15) 0%, transparent 60%);
	pointer-events: none;
}

.cta-banner .container {
	position: relative;
	z-index: 1;
}
.cta-banner .eyebrow {
	margin-bottom: 1rem;
}
.cta-banner .section-title {
	color: #fff;
	margin-bottom: 1rem;
}
.cta-banner .section-desc {
	color: rgba(255, 255, 255, 0.85);
	margin: 0 auto 2.5rem;
}

.cta-banner-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 64em) {
	.commitment-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.commitment-visual {
		max-width: 36rem;
	}
}

@media (max-width: 48em) {
	.section {
		padding: 3.5rem 0;
	}
	.section-header {
		margin-bottom: 2.5rem;
	}

	.employer-solutions-grid {
		grid-template-columns: 1fr;
	}

	.stats-strip {
		grid-template-columns: repeat(2, 1fr);
		border-radius: 1rem;
	}

	.stats-strip-item:nth-child(3),
	.stats-strip-item:nth-child(4) {
		border-top: 1px solid var(--border);
	}

	.stats-strip-item + .stats-strip-item::before {
		display: none;
	}

	.stats-strip-item:nth-child(even)::before {
		content: "";
		position: absolute;
		left: 0;
		top: 20%;
		height: 60%;
		width: 1px;
		background: var(--border);
		display: block;
	}

	.employers-hero-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.cta-banner-actions {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 30em) {
	.stats-strip {
		grid-template-columns: 1fr;
	}

	.stats-strip-item {
		border-top: 1px solid var(--border);
	}
	.stats-strip-item:first-child {
		border-top: none;
	}
	.stats-strip-item + .stats-strip-item::before,
	.stats-strip-item:nth-child(even)::before {
		display: none;
	}
}
