/* ── prozess.css — 3 Phasen als laufender Prozess, editorial statt Kärtchen ── */

.prozess h2 {
	font-size: var(--fs-h2-fluid);
	max-width: 34rem;
}

.prozess__subline {
	max-width: 40rem;
	margin: 0.75rem 0 0;
	color: var(--c-text-muted);
	font-size: var(--fs-body);
}

.prozess__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	margin: 2.5rem 0 0;
	padding: 0;
	list-style: none;
}

.prozess__phase {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border-top: 0.1875rem solid var(--c-accent);
	padding-top: 1.25rem;
}

.prozess__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--c-primary);
	color: var(--c-white);
	font-family: var(--font-head);
	font-weight: 700;
	font-size: var(--fs-sm);
	margin-bottom: 1rem;
}

.prozess__phase h3 {
	font-size: var(--fs-h3);
}

.prozess__phase > p {
	margin: 0;
	color: var(--c-text-muted);
}

/* Greifbares Ergebnis je Phase — editorial (Oliv-Tick + Eyebrow), unten bündig */
.prozess__phase .prozess__result {
	margin-top: auto;
	padding-top: 1.25rem;
	color: var(--c-primary);
	font-weight: 600;
}

.prozess__result::before {
	content: "";
	display: block;
	width: 1.75rem;
	height: 0.125rem;
	margin-bottom: 0.875rem;
	background: var(--c-accent);
}

.prozess__result-label {
	display: block;
	margin-bottom: 0.25rem;
	font-family: var(--font-head);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--c-text-muted);
}

/* Abschluss: Kreislauf-Aussage + starker CTA in einer Reihe, ohne Box */
.prozess__close {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem 2.5rem;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 0.0625rem solid var(--c-border-light);
}

.prozess__loop {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	max-width: 44rem;
	margin: 0;
	color: var(--c-text-muted);
	font-size: var(--fs-body);
}

.prozess__loop strong {
	color: var(--c-primary);
	font-weight: 700;
}

.prozess__loop-icon {
	flex: none;
	font-size: 1.875rem;
	line-height: 1.1;
	color: var(--c-accent-dark);
}

.prozess__cta {
	flex: none;
}

@media (max-width: 48rem) {
	.prozess__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.prozess__phase .prozess__result {
		margin-top: 1rem;
	}

	.prozess__close {
		align-items: stretch;
	}

	.prozess__cta {
		text-align: center;
	}
}
