/* ==========================================================================
   Nasıl Çalışır — Frontend
   ========================================================================== */

.nc-bolum {
	background: #eaf4fb !important;
	padding: 64px 24px;
	box-sizing: border-box;
}
.nc-bolum * { box-sizing: border-box; }

.nc-ust-etiket {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 13px;
	font-weight: 600;
	color: #5a6b7b;
	margin-bottom: 14px;
}

.nc-bolum-baslik {
	text-align: center;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(28px, 4vw, 46px);
	line-height: 1.15;
	font-weight: 700;
	color: #14223a;
	margin: 0 auto 56px;
	max-width: 820px;
}

/* --- Akış kapsayıcısı --- */
.nc-akis {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 8px;
	max-width: 1180px;
	margin: 0 auto;
}

.nc-akis.nc-dikey {
	flex-direction: column;
	align-items: center;
	gap: 0;
}

/* --- Adım --- */
.nc-adim {
	flex: 1 1 0;
	max-width: 260px;
	text-align: center;
	padding: 0 8px;
}

.nc-dikey .nc-adim {
	max-width: 460px;
	width: 100%;
}

.nc-rozet {
	position: relative;
	width: 88px;
	height: 88px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 10px 26px rgba(20, 40, 80, 0.10);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #d6e8f7;
}

.nc-ikon { font-size: 38px; line-height: 1; }

.nc-rozet-no {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	font-weight: 700;
	color: #2a6df4;
}

/* küçük sıra etiketi (sağ üstte mavi daire) */
.nc-rozet-etiket {
	position: absolute;
	top: -6px;
	right: -6px;
	min-width: 26px;
	height: 26px;
	padding: 0 6px;
	border-radius: 999px;
	background: #2a6df4;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nc-adim-baslik {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 21px;
	font-weight: 700;
	color: #14223a;
	margin: 0 0 10px;
	line-height: 1.25;
}

.nc-adim-aciklama {
	color: #4a5667;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

/* --- Ok --- */
.nc-ok {
	color: #2a6df4;
	flex: 0 0 auto;
	align-self: center;
	margin-top: 18px; /* rozet hizasına yakın */
}

.nc-ok svg {
	width: 90px;
	height: 24px;
	display: block;
}

.nc-dikey .nc-ok {
	margin: 6px 0;
	transform: rotate(90deg);
}

/* Ok çizgisi başlangıçta gizli (çizilecek) */
.nc-ok-cizgi {
	stroke-dasharray: 100;
	stroke-dashoffset: 100;
	transition: stroke-dashoffset .6s ease;
}

/* --- Animasyon: tek tek belirme --- */
.nc-anim {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .5s ease, transform .5s ease;
}
.nc-anim.gorundu {
	opacity: 1;
	transform: translateY(0);
}
.nc-ok.nc-anim { transform: translateY(0); } /* ok kaymasın, sadece çizilsin */
.nc-dikey .nc-ok.nc-anim { transform: rotate(90deg); }

.nc-anim.gorundu .nc-ok-cizgi {
	stroke-dashoffset: 0;
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
	.nc-anim { opacity: 1; transform: none; transition: none; }
	.nc-ok-cizgi { stroke-dashoffset: 0; transition: none; }
}

.nc-bos { text-align: center; color: #8a93a0; padding: 40px; }

/* --- Responsive: mobilde dikeye geç --- */
@media (max-width: 860px) {
	.nc-akis:not(.nc-dikey) {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}
	.nc-akis:not(.nc-dikey) .nc-adim { max-width: 460px; width: 100%; }
	.nc-akis:not(.nc-dikey) .nc-ok {
		margin: 6px 0;
		transform: rotate(90deg);
	}
	.nc-akis:not(.nc-dikey) .nc-ok.nc-anim { transform: rotate(90deg); }
	.nc-bolum { padding: 48px 16px; }
}
