.how-it-works-hero {
	position: relative;
	padding: 140px 0 110px;
	background:
		linear-gradient(rgba(22, 50, 79, 0.78), rgba(22, 50, 79, 0.82)),
		url('/resources/lenexa-logistics-center-east-building.webp');
	background-size: cover;
	background-position: center;
	color: #fff;
}

.how-it-works-hero .hero-content {
	max-width: 760px;
}

.how-it-works-hero .hero-eyebrow {
	display: inline-block;
	margin-bottom: 20px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.88);
}

.how-it-works-hero h1 {
	margin: 0 0 24px;
	font-size: clamp(3rem, 6vw, 5.5rem);
	line-height: 1;
	font-weight: 700;
	letter-spacing: -0.04em;
	color: #fff;
}

.how-it-works-hero p {
	margin: 0;
	max-width: 680px;
	font-size: 1.1rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.82);
}

.how-it-works-intro {
	padding: 110px 0 30px;
}

.how-it-works-intro .section-heading,
.how-it-works-steps .section-heading,
.how-it-works-principles .section-heading {
	max-width: 760px;
	margin: 0 auto 64px;
	text-align: center;
}

.how-it-works-intro .section-heading h2,
.how-it-works-steps .section-heading h2,
.how-it-works-principles .section-heading h2 {
	margin: 0 0 20px;
	font-size: clamp(2.4rem, 4vw, 4rem);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--color-primary);
}

.how-it-works-intro .section-heading p,
.how-it-works-steps .section-heading p,
.how-it-works-principles .section-heading p {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--color-text-light);
}

.how-it-works-process-graphic {
	padding: 20px 0 100px;
}

.how-it-works-process-graphic .process-graphic-shell {
	max-width: 980px;
	margin: 0 auto;
	padding: 24px;
	border-radius: 32px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.95) 0%,
		rgba(246, 248, 251, 0.95) 100%
	);
	border: 1px solid rgba(22, 50, 79, 0.08);
	box-shadow: 0 24px 60px rgba(22, 50, 79, 0.08);
}

.how-it-works-process-graphic img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.how-it-works-steps {
	padding: 0 0 110px;
}

.how-it-works-steps .steps-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.how-it-works-steps .step-card {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding: 34px 32px;
	border-radius: 28px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-soft);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.how-it-works-steps .step-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(22, 50, 79, 0.1);
	border-color: rgba(77, 140, 163, 0.24);
}

.how-it-works-steps .step-number {
	flex-shrink: 0;
	width: 68px;
	height: 68px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--color-accent) 0%,
		var(--color-primary) 100%
	);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #fff;
	box-shadow: 0 12px 24px rgba(22, 50, 79, 0.18);
}

.how-it-works-steps .step-content h3 {
	margin: 0 0 12px;
	font-size: 1.4rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--color-primary);
}

.how-it-works-steps .step-content p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.8;
	color: var(--color-text-light);
}

.how-it-works-principles {
	padding: 0 0 120px;
}

.how-it-works-principles .three-column-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.how-it-works-principles .principle-card {
	height: 100%;
	border-radius: 28px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.96) 0%,
		rgba(246, 248, 251, 0.96) 100%
	);
	border: 1px solid rgba(22, 50, 79, 0.08);
	box-shadow: 0 20px 50px rgba(22, 50, 79, 0.06);
}

.how-it-works-principles .principle-card .card-content {
	padding: 36px 32px;
}

.how-it-works-principles .principle-card h3 {
	margin: 0 0 16px;
	font-size: 1.35rem;
	line-height: 1.2;
	font-weight: 700;
	color: var(--color-primary);
}

.how-it-works-principles .principle-card p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.8;
	color: var(--color-text-light);
}

@media (max-width: 1024px) {
	.how-it-works-steps .steps-grid,
	.how-it-works-principles .three-column-grid {
		grid-template-columns: 1fr;
	}

	.how-it-works-hero {
		padding: 120px 0 90px;
	}

	.how-it-works-process-graphic .process-graphic-shell {
		padding: 18px;
	}
}

@media (max-width: 768px) {
	.how-it-works-hero h1 {
		font-size: 3rem;
	}

	.how-it-works-steps .step-card {
		flex-direction: column;
		padding: 28px 24px;
	}

	.how-it-works-intro,
	.how-it-works-steps,
	.how-it-works-principles {
		padding-bottom: 80px;
	}

	.how-it-works-intro .section-heading,
	.how-it-works-steps .section-heading,
	.how-it-works-principles .section-heading {
		margin-bottom: 48px;
	}
}

@media (max-width: 640px) {
	.how-it-works-hero {
		padding: 100px 0 80px;
	}

	.how-it-works-hero p {
		font-size: 1rem;
		line-height: 1.8;
	}

	.how-it-works-process-graphic .process-graphic-shell {
		padding: 12px;
		border-radius: 24px;
	}

	.how-it-works-steps .step-number {
		width: 56px;
		height: 56px;
		font-size: 1rem;
		border-radius: 16px;
	}

	.how-it-works-steps .step-content h3 {
		font-size: 1.25rem;
	}
}

.how-it-works {
    background: #f4f7fb;
    padding: 90px 20px;
}

.how-it-works .section-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.how-it-works .section-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.how-it-works .section-header h1 {
    margin: 0 0 22px;
    font-size: 54px;
    line-height: 1.05;
    color: #1f2d3a;
}

.how-it-works .section-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #4d5f6f;
}

.how-it-works .process-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.how-it-works .process-card {
    background: #fff;
    border: 1px solid rgba(0, 55, 95, .16);
    border-radius: 24px;
    padding: 38px 34px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
}

.how-it-works .process-number {
    color: #f26a21;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 22px;
}

.how-it-works .process-card h2 {
    color: #00457c;
    font-size: 24px;
    margin: 0 0 18px;
}

.how-it-works .process-card p {
    color: #4d5f6f;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .how-it-works .process-card-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works .section-header h1 {
        font-size: 42px;
    }
}

.how-it-works .benefits-header {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.how-it-works .benefits-header h2 {
    margin: 0 0 18px;
    font-size: 46px;
    color: #1f2d3a;
}

.how-it-works .benefits-header p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #5b6875;
}

.how-it-works .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.how-it-works .benefit-card {
    background: #fff;
    border: 1px solid rgba(0,55,95,.12);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.how-it-works .benefit-card h3 {
    margin: 0 0 14px;
    color: #00457c;
    font-size: 26px;
    line-height: 1.3;
}

.how-it-works .benefit-card p {
    margin: 0;
    color: #5b6875;
    line-height: 1.8;
}

@media (max-width: 900px) {

    .how-it-works .benefits-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works .benefits-header h2 {
        font-size: 38px;
    }

}