/* Tentang Kami — Hero Section (scoped to .tk-section) */

.tk-section * {
	font-family: 'Saira', sans-serif;
}

.tk-section .tk-hero {
	position: relative;
	width: 100%;
	min-height: 520px;
	overflow: hidden;
	background-color: #c9c5bc;
}

.tk-section .tk-scene {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	pointer-events: none;
	display: block;
}

.tk-section .tk-scene-off {
	z-index: 1;
}

.tk-section .tk-scene-on {
	z-index: 2;
	opacity: 0;
	transition: opacity 2.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.tk-section .tk-hero.is-lit .tk-scene-on,
.tk-section .tk-hero:hover .tk-scene-on {
	opacity: 1;
}

.tk-section .tk-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 15%;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 40px;
	pointer-events: none;
}

.tk-section .tk-title {
	font-size: 32px;
	font-weight: 400;
	color: #ffffff;
	text-align: center;
	line-height: 1.55;
	margin: 0 0 52px;
	letter-spacing: 0.01em;
	opacity: 0;
	transform: translateY(-16px);
	transition:
		opacity 0.9s ease 0.55s,
		transform 0.9s ease 0.55s;
}

.tk-section .tk-hero.is-lit .tk-title,
.tk-section .tk-hero:hover .tk-title {
	opacity: 1;
	transform: none;
}

.tk-section .tk-steps {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	width: 100%;
	box-sizing: border-box;
	padding: 0 8px;
}

.tk-section .tk-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
	min-width: 0;
	opacity: 0;
	transform: translateX(-20px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.tk-section .tk-hero.is-lit .tk-step:nth-child(1),
.tk-section .tk-hero:hover .tk-step:nth-child(1) {
	opacity: 1;
	transform: none;
	transition-delay: 0.8s;
}

.tk-section .tk-hero.is-lit .tk-step:nth-child(3),
.tk-section .tk-hero:hover .tk-step:nth-child(3) {
	opacity: 1;
	transform: none;
	transition-delay: 1s;
}

.tk-section .tk-hero.is-lit .tk-step:nth-child(5),
.tk-section .tk-hero:hover .tk-step:nth-child(5) {
	opacity: 1;
	transform: none;
	transition-delay: 1.2s;
}

.tk-section .tk-step-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45px;
	margin-bottom: 12px;
	color: #fff;
}

.tk-section .tk-step-icon img {
	max-height: 45px;
	width: auto;
	height: auto;
}

.tk-section .tk-step-text {
	font-size: 24px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 300;
	margin: 0;
}

.tk-section .tk-sep {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	padding: 0 40px;
	opacity: 0;
	transition: opacity 0.5s ease 1.35s;
}

.tk-section .tk-hero.is-lit .tk-sep,
.tk-section .tk-hero:hover .tk-sep {
	opacity: 1;
}

.tk-section .tk-sep-arrow {
	display: block;
	color: rgba(255, 255, 255, 0.58);
}

.tk-section .tk-sep-arrow img {
	display: block;
	max-height: 24px;
	width: auto;
}

@media (max-width: 768px) {
	.tk-section .tk-hero {
		min-height: 520px;
	}

	.tk-section .tk-content {
		bottom: 6%;
		padding: 0 24px;
	}

	.tk-section .tk-title {
		font-size: clamp(1.15rem, 5.5vw, 1.6rem);
		margin: 0 0 28px;
	}

	.tk-section .tk-steps {
		max-width: 100%;
		padding: 0;
		gap: 0;
	}

	.tk-section .tk-step-icon {
		height: 40px;
		margin-bottom: 10px;
	}

	.tk-section .tk-step-text {
		font-size: 0.75rem;
	}

	.tk-section .tk-sep {
		padding: 0 2px;
	}
}
