/* Option 2 — Cinematic Reel */
.noor-eq-wow--cinematic {
	--eq-accent: #eb3f4b;
	background: #08080a;
	color: #fff;
	position: relative;
}

.noor-eq-cine__progress {
	position: fixed;
	right: clamp(0.75rem, 2vw, 1.5rem);
	top: 50%;
	transform: translateY(-50%);
	z-index: 50;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	pointer-events: none;
}

.noor-eq-cine__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.25);
	background: transparent;
	transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.noor-eq-cine__dot.is-active {
	background: var(--eq-accent);
	border-color: var(--eq-accent);
	transform: scale(1.35);
	box-shadow: 0 0 16px rgba(235, 63, 75, 0.65);
}

.noor-eq-cine__chapter {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: grid;
	align-items: center;
	overflow: hidden;
}

.noor-eq-cine__chapter:nth-child(even) {
	background: linear-gradient(180deg, #0c0c10 0%, #08080a 100%);
}

.noor-eq-cine__chapter-inner {
	width: min(1240px, 92%);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: center;
	padding: clamp(4rem, 8vw, 6rem) 0;
}

.noor-eq-cine__chapter:nth-child(even) .noor-eq-cine__chapter-inner {
	direction: rtl;
}

.noor-eq-cine__chapter:nth-child(even) .noor-eq-cine__chapter-inner > * {
	direction: ltr;
}

.noor-eq-cine__visual {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: 24px;
	overflow: hidden;
	box-shadow:
		0 40px 80px rgba(0, 0, 0, 0.55),
		0 0 0 1px rgba(255, 255, 255, 0.08);
	transform: translateY(var(--parallax, 0px));
	will-change: transform;
}

.noor-eq-cine__visual::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(135deg, rgba(235, 63, 75, 0.15) 0%, transparent 55%);
	pointer-events: none;
}

.noor-eq-cine__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.08);
	transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.noor-eq-cine__chapter.is-active .noor-eq-cine__visual img {
	transform: scale(1);
}

.noor-eq-cine__frame {
	position: absolute;
	inset: -1px;
	border: 2px solid rgba(235, 63, 75, 0.35);
	border-radius: 24px;
	pointer-events: none;
	z-index: 3;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.noor-eq-cine__chapter.is-active .noor-eq-cine__frame {
	opacity: 1;
}

.noor-eq-cine__num {
	position: absolute;
	bottom: -0.15em;
	right: -0.05em;
	font-family: "Outfit", system-ui, sans-serif;
	font-size: clamp(4rem, 12vw, 7rem);
	font-weight: 800;
	line-height: 1;
	color: rgba(255, 255, 255, 0.06);
	z-index: 1;
	pointer-events: none;
}

.noor-eq-cine__copy {
	opacity: 0;
	transform: translateY(48px);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.noor-eq-cine__chapter.is-active .noor-eq-cine__copy,
.noor-eq-cine__chapter:first-child .noor-eq-cine__copy {
	opacity: 1;
	transform: translateY(0);
}

.noor-eq-cine__eyebrow {
	display: inline-block;
	margin-bottom: 0.85rem;
	padding: 0.35rem 0.75rem;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--eq-accent);
	border: 1px solid rgba(235, 63, 75, 0.35);
	border-radius: 999px;
	background: rgba(235, 63, 75, 0.08);
}

.noor-eq-cine__title {
	font-family: "Outfit", system-ui, sans-serif;
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin: 0 0 1rem;
}

.noor-eq-cine__text {
	margin: 0 0 1.5rem;
	font-size: 1.02rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.58);
	max-width: 42ch;
}

.noor-eq-cine__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.4rem;
	font-weight: 700;
	font-size: 0.88rem;
	color: #fff;
	background: linear-gradient(135deg, var(--eq-accent), #c42f3a);
	border-radius: 999px;
	box-shadow: 0 12px 32px rgba(235, 63, 75, 0.35);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.noor-eq-cine__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(235, 63, 75, 0.45);
}

.noor-eq-cine__line {
	position: fixed;
	left: 0;
	top: 0;
	height: 3px;
	width: 0%;
	background: linear-gradient(90deg, var(--eq-accent), transparent);
	transition: width 0.1s linear;
	z-index: 200;
}

@media (max-width: 900px) {
	.noor-eq-cine__progress {
		display: none;
	}

	.noor-eq-cine__chapter-inner,
	.noor-eq-cine__chapter:nth-child(even) .noor-eq-cine__chapter-inner {
		grid-template-columns: 1fr;
		direction: ltr;
		padding: 3.5rem 0;
		min-height: auto;
	}

	.noor-eq-cine__chapter {
		min-height: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.noor-eq-cine__copy,
	.noor-eq-cine__visual img,
	.noor-eq-cine__visual {
		transition: none !important;
		transform: none !important;
	}

	.noor-eq-cine__chapter .noor-eq-cine__copy,
	.noor-eq-cine__chapter:first-child .noor-eq-cine__copy {
		opacity: 1;
	}
}
