/*--------------------------------------------------------------
Homepage Module 8 — How We Work (AI + human analysts)
--------------------------------------------------------------*/
.how-section .container {
	position: relative;
	z-index: 2;
}

.how-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}

.how-media {
	position: relative;
}

.how-media .fade-anim-box,
.how-text .fade-anim-box {
	display: block;
}

.how-img {
	height: 480px;
	background-size: cover;
	background-position: center;
	box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 0.55);
}

.how-stat-badge {
	position: absolute;
	right: -24px;
	bottom: -30px;
	max-width: 270px;
	background: #1b2a2f;
	color: #fff;
	padding: 26px 28px;
	border-left: 4px solid var(--brand-orange);
	box-shadow: 0 30px 60px -34px rgba(0, 0, 0, 0.6);
}

.how-stat-badge .hnum {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 56px;
	line-height: 0.9;
	letter-spacing: -2px;
	color: var(--brand-orange);
	margin: 0;
}

.how-stat-badge .hlabel {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.82);
	margin: 12px 0 0;
}

.how-h2 {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	font-size: clamp(30px, 3.8vw, 45px);
	line-height: 1.06;
	letter-spacing: -0.5px;
	color: var(--ink);
	margin: 0 0 22px;
}

.how-lead {
	font-family: 'Open Sans', sans-serif;
	font-size: 17px;
	line-height: 1.64;
	color: #555;
	margin: 0 0 28px;
}

.how-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.how-list li {
	position: relative;
	padding: 0 0 18px 26px;
	font-family: 'Open Sans', sans-serif;
	font-size: 15.5px;
	line-height: 1.5;
	color: #555;
}

.how-list li:last-child {
	padding-bottom: 0;
}

.how-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 10px;
	height: 10px;
	background: var(--brand-orange);
	border-radius: 50%;
}

.how-k {
	display: block;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 1px;
	line-height: 1.2;
	color: var(--ink);
	margin: 0 0 4px;
}

.how-d {
	display: block;
}

@media only screen and (max-width: 900px) {
	.how-grid {
		grid-template-columns: 1fr;
		gap: 56px;
	}

	.how-img {
		height: 340px;
	}

	.how-stat-badge {
		right: 12px;
		bottom: -24px;
		max-width: 240px;
	}
}

@media only screen and (max-width: 520px) {
	.how-h2 {
		font-size: 28px;
		margin-bottom: 18px;
	}

	.how-stat-badge {
		position: relative;
		right: auto;
		bottom: auto;
		max-width: none;
		margin-top: 18px;
	}

	.how-img {
		height: 280px;
	}
}
