.tp-native-journey {
	padding: 92px 0 76px;
	background: #fbf7f0;
	color: #422d24;
}

.tp-native-journey__shell {
	width: min(1120px, calc(100% - 64px));
	margin-inline: auto;
	padding: 0;
}

.tp-native-journey__head {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.tp-native-journey__kicker {
	margin: 0;
	color: #bd8c60;
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}

.tp-native-journey__title {
	max-width: 720px;
	margin: 0 auto;
	font-family: var(--tp-font-heading);
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.025em;
}

.tp-native-journey__intro {
	margin: 0 auto;
	color: #726b66;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.5;
}

.tp-native-journey__steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	min-height: 310px;
	margin: 0;
	padding: 38px 42px 34px;
	border: 1px solid #eadfce;
	border-radius: 25px;
	background: rgba(255, 251, 245, 0.48);
}

.tp-native-journey__step {
	position: relative;
	min-width: 0;
	margin: 0;
	padding: 0 30px;
	text-align: center;
}

.tp-native-journey__step:not(:last-child)::after {
	content: '→';
	position: absolute;
	z-index: 4;
	right: -32px;
	top: 18px;
	width: 64px;
	color: #cda677;
	font-size: 3.125rem;
	font-weight: 300;
	line-height: 1;
	text-align: center;
}

.tp-native-journey__media {
	width: 88px;
	height: 88px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: #f5eee4;
	overflow: hidden;
}

.tp-native-journey__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tp-native-journey__number {
	margin: 0;
	color: #bc9065;
	font-size: 0.75rem;
	font-weight: 800;
	line-height: 1;
}

.tp-native-journey__step-title {
	margin: 0;
	color: #422d24;
	font-family: var(--tp-font-heading);
	font-size: 1.3125rem;
	font-weight: 700;
	line-height: 1.15;
}

.tp-native-journey__step-copy {
	margin: 0;
	color: #5f544d;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.58;
}

.tp-native-journey__trust {
	height: 101.25px;
	min-height: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: center;
	gap: 0;
	margin: 28px 0 0;
	padding: 18px 66px;
	border-radius: 28px;
	background: #f7f0e7;
}

.tp-native-journey__trust-item {
	min-width: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 0 42px;
	margin: 0;
}

.tp-native-journey__trust-mark {
	display: grid;
	place-items: center;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border-radius: 50%;
	background: transparent;
	color: #a4764e;
	font-size: 0;
	line-height: 1;
}

.tp-native-journey__trust-mark-icon,
.tp-native-journey__trust-mark-icon svg {
	display: block;
	width: 36px;
	height: 36px;
}

.tp-native-journey__trust-mark-icon svg {
	fill: currentColor;
}

.tp-native-journey__trust-copy {
	margin: 0;
	color: #493a32;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.45;
}

.tp-native-journey.tp-native-reveal-item {
	opacity: 1;
	transform: none;
	filter: none;
}

@media (min-width: 768px) {
	.tp-native-journey.tp-native-reveal-item {
		transition: background 0.3s, border 0.3s, box-shadow 0.3s, transform 0.4s;
	}
}

@media (max-width: 767px) {
	.tp-native-journey.tp-native-reveal-item {
		opacity: 0;
		transform: translate3d(0, 90px, 0) scale(0.96);
		filter: blur(8px);
		transition: opacity 1.15s ease, transform 1.15s cubic-bezier(0.16, 0.84, 0.24, 1), filter 1s ease;
		will-change: opacity, transform, filter;
	}

	.tp-native-journey.tp-native-reveal-item.is-visible {
		opacity: 1;
		transform: none;
		filter: blur(0);
	}
}

.tp-native-journey__trust-item:not(:last-child) {
	border-right: 1px solid #dec7aa;
}

.tp-native-journey__step.tp-native-reveal-item {
	transform: translateY(8px);
}

.tp-native-journey__step.tp-native-reveal-item.is-visible {
	transform: none;
}

@media (max-width: 850px) {
	.tp-native-journey__shell {
		width: calc(100% - 42px);
	}

	.tp-native-journey__steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 38px 20px;
		padding: 34px 18px 30px;
	}

	.tp-native-journey__step {
		padding: 0 18px;
	}

	.tp-native-journey__step::after {
		display: none;
	}

	.tp-native-journey__trust {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 10px 28px;
	}

	.tp-native-journey__trust-item {
		justify-content: flex-start;
		min-height: 72px;
		padding: 12px 0;
	}

	.tp-native-journey__trust-item:not(:last-child) {
		border-right: 0;
		border-bottom: 1px solid #dec7aa;
	}
}

@media (max-width: 560px) {
	.tp-native-journey {
		padding: 44px 0 40px;
	}

	.tp-native-journey__shell {
		width: calc(100% - 28px);
		padding: 0;
	}

	.tp-native-journey__kicker {
		font-size: 0.625rem;
		line-height: 1.2;
	}

	.tp-native-journey__title {
		font-size: 2.375rem;
		line-height: 1.04;
		letter-spacing: -0.025em;
	}

	.tp-native-journey__intro {
		font-size: 0.9375rem;
		line-height: 1.5;
	}

	.tp-native-journey__steps {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 5px;
		min-height: 0;
		padding: 18px 6px;
		border-radius: 14px;
	}

	.tp-native-journey__step {
		padding: 0 3px;
	}

	.tp-native-journey__media {
		width: 58px;
		height: 58px;
		margin: 0 auto 10px;
		margin-inline: auto;
	}

	.tp-native-journey__number {
		margin-bottom: 0;
		font-size: 0.5rem;
	}

	.tp-native-journey__step-title {
		margin-bottom: 0;
		font-size: 0.6875rem;
		line-height: 1.08;
	}

	.tp-native-journey__step-copy {
		font-size: 0.4375rem;
		line-height: 1.35;
	}

	.tp-native-journey__trust {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0;
		height: auto;
		min-height: 0;
		padding: 8px 4px;
		border-radius: 14px;
	}

	.tp-native-journey__trust-item,
	.tp-native-journey__trust-item:not(:last-child) {
		min-width: 0;
		min-height: 92px;
		flex-direction: column;
		justify-content: center;
		gap: 7px;
		padding: 7px 5px;
		border-right: 1px solid #dec7aa;
		border-bottom: 0;
		text-align: center;
	}

	.tp-native-journey__trust-item:last-child {
		border-right: 0;
	}

	.tp-native-journey__trust-mark {
		flex: 0 0 30px;
		width: 30px;
		height: 30px;
		font-size: 1.625rem;
	}

	.tp-native-journey__trust-mark-icon,
	.tp-native-journey__trust-mark-icon svg {
		width: 26px;
		height: 26px;
	}

	.tp-native-journey__trust-copy {
		font-size: 0.5rem;
		line-height: 1.3;
	}
}

@media (min-width: 561px) and (max-width: 850px) {
	.tp-native-journey__kicker {
		font-size: 0.6875rem;
		line-height: 1.2;
	}

	.tp-native-journey__title {
		max-width: 477.671875px;
		font-size: 2.875rem;
		line-height: 1.04;
		letter-spacing: -0.025em;
	}

	.tp-native-journey__intro {
		font-size: 1.0625rem;
		line-height: 1.5;
	}

	.tp-native-journey__steps {
		grid-template-rows: repeat(2, 192.375px);
	}

	.tp-native-journey__step-title {
		font-size: 1.25rem;
		line-height: 1.15;
	}

	.tp-native-journey__step-copy {
		font-size: 0.9375rem;
		line-height: 1.5;
	}

	.tp-native-journey__trust {
		height: 236px;
		grid-template-rows: repeat(3, 72px);
	}

	.tp-native-journey__trust-copy {
		font-size: 0.875rem;
		line-height: 1.5;
	}
}
