﻿/* Homepage ? premium industrial / SaaS 2026 */

.noor-home {
	--home-hero-min: min(90vh, 920px);
}

/* ?? Hero ?? */
.noor-hero--premium {
	position: relative;
	min-height: var(--home-hero-min);
	display: flex;
	align-items: center;
	padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4.5rem);
	overflow: hidden;
	background: linear-gradient(165deg, #fafbfc 0%, #ffffff 42%, #f4f6f8 100%);
}

.noor-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.noor-hero__bg > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.07;
}

.noor-hero__mesh {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 65% 55% at 88% 15%, rgba(235, 63, 75, 0.14), transparent 58%),
		radial-gradient(ellipse 45% 40% at 8% 85%, rgba(136, 18, 24, 0.08), transparent 52%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
}

.noor-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.55;
	animation: noor-float 14s ease-in-out infinite;
}

.noor-hero__orb--1 {
	width: 320px;
	height: 320px;
	top: -80px;
	right: 8%;
	background: rgba(235, 63, 75, 0.18);
}

.noor-hero__orb--2 {
	width: 240px;
	height: 240px;
	bottom: 10%;
	left: -40px;
	background: rgba(0, 0, 0, 0.06);
	animation-delay: -4s;
}

.noor-hero__grid-lines {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
	opacity: 0.5;
}

@keyframes noor-float {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(12px, -18px); }
}

.noor-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}

.noor-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1.35rem;
	padding: 0.5rem 1.1rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent-deep);
	background: var(--accent-soft);
	border: 1px solid rgba(235, 63, 75, 0.18);
	border-radius: 999px;
}

.noor-pill::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 4px rgba(235, 63, 75, 0.2);
	animation: noor-pulse 2.2s ease infinite;
}

@keyframes noor-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.55; transform: scale(0.92); }
}

.noor-hero--premium .noor-hero__title {
	font-size: clamp(2.4rem, 5.5vw, 3.75rem);
	font-weight: 800;
	margin: 0 0 1.35rem;
	max-width: 14ch;
	line-height: 1.06;
	color: #000000;
	letter-spacing: -0.03em;
}

.noor-hero--premium .noor-hero__lead {
	font-size: clamp(1.05rem, 1.45vw, 1.22rem);
	color: var(--text-muted);
	max-width: 44ch;
	margin: 0 0 2.25rem;
	line-height: 1.75;
}

.noor-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.noor-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 2.25rem 0 0;
	padding: 0;
	list-style: none;
}

.noor-hero__badges li {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-muted);
	padding: 0.45rem 0.95rem;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid var(--border);
	border-radius: 999px;
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(8px);
}

.noor-hero__visual {
	position: relative;
}

.noor-hero__frame {
	position: relative;
	border-radius: calc(var(--radius-lg) + 4px);
	overflow: hidden;
	aspect-ratio: 4 / 3.15;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
	background: #fff;
}

.noor-hero__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.noor-hero__frame:hover img {
	transform: scale(1.05);
}

.noor-hero__frame-accent {
	position: absolute;
	inset: auto 0 0 0;
	height: 35%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
	pointer-events: none;
}

.noor-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin-top: 1.1rem;
}

.noor-stat-card {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.05rem 1.15rem;
	box-shadow: var(--shadow-sm);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.noor-stat-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
	border-color: rgba(235, 63, 75, 0.2);
}

.noor-stat-card strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--accent);
	line-height: 1.1;
	margin-bottom: 0.3rem;
}

.noor-stat-card span {
	font-size: 0.76rem;
	color: var(--text-muted);
	line-height: 1.45;
}

/* ?? Sections ?? */
.noor-home .noor-section {
	padding: var(--section-pad) 0;
	background: var(--surface);
}

.noor-section__footer {
	text-align: center;
	margin-top: 2.75rem;
}

/* ?? About ?? */
.noor-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 5vw, 5rem);
	align-items: center;
}

.noor-about-grid__media {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.noor-about-grid__media::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
	pointer-events: none;
}

.noor-about-grid__media img {
	width: 100%;
	aspect-ratio: 5 / 4;
	object-fit: cover;
	transition: transform 0.75s ease;
}

.noor-about-grid__media:hover img {
	transform: scale(1.04);
}

.noor-about-grid__float {
	position: absolute;
	bottom: 1.5rem;
	right: 1.5rem;
	max-width: 200px;
	padding: 1.1rem 1.25rem;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(12px);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	animation: noor-float 8s ease-in-out infinite;
}

.noor-about-grid__float-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 0.65rem;
	border-radius: 12px;
	background: var(--accent-soft);
	color: var(--accent);
}

.noor-about-grid__float strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.05rem;
	color: #000;
	margin-bottom: 0.2rem;
}

.noor-about-grid__float span {
	font-size: 0.78rem;
	color: var(--text-muted);
	line-height: 1.4;
}

.noor-about-grid__content .noor-heading {
	font-size: clamp(1.85rem, 3.2vw, 2.5rem);
	margin-bottom: 1.25rem;
}

.noor-about-grid__content .noor-lead {
	margin-bottom: 2rem;
}

/* ?? Equipment section (premium fleet) ?? */
.noor-equipment-section {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 38%, #f4f6f9 100%);
}

.noor-equipment-section__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.noor-equipment-section__mesh {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 50% at 92% 8%, rgba(235, 63, 75, 0.12), transparent 55%),
		radial-gradient(ellipse 50% 45% at 4% 92%, rgba(136, 18, 24, 0.07), transparent 50%);
}

.noor-equipment-section__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(72px);
	opacity: 0.5;
	animation: noor-float 16s ease-in-out infinite;
}

.noor-equipment-section__orb--1 {
	width: 380px;
	height: 380px;
	top: -120px;
	right: -60px;
	background: rgba(235, 63, 75, 0.16);
}

.noor-equipment-section__orb--2 {
	width: 280px;
	height: 280px;
	bottom: -80px;
	left: -40px;
	background: rgba(0, 0, 0, 0.05);
	animation-delay: -5s;
}

.noor-equipment-section__grid-lines {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 85% 75% at 50% 30%, #000 15%, transparent 72%);
	opacity: 0.55;
}

.noor-equipment-section__accent-line {
	position: absolute;
	top: 18%;
	left: 0;
	width: 42%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(235, 63, 75, 0.35), transparent);
	opacity: 0.6;
}

.noor-equipment-section__inner {
	position: relative;
	z-index: 1;
}

/* Header */
.noor-equipment-head {
	display: grid;
	grid-template-columns: 1.15fr 1fr auto;
	gap: clamp(1.25rem, 3vw, 2.5rem);
	align-items: end;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.noor-equipment-head__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.2vw, 3.15rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: #000000;
	margin: 0;
	max-width: 16ch;
}

.noor-equipment-head__lead {
	margin: 0;
	font-size: clamp(1rem, 1.35vw, 1.15rem);
	line-height: 1.75;
	color: var(--text-muted);
	max-width: 38ch;
	align-self: end;
	padding-bottom: 0.35rem;
}

.noor-equipment-head__badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 108px;
	padding: 1.15rem 1.35rem;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.35s ease;
}

.noor-equipment-head__badge:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: rgba(235, 63, 75, 0.22);
}

.noor-equipment-head__badge strong {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	color: var(--accent);
	margin-bottom: 0.25rem;
}

.noor-equipment-head__badge span {
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	text-align: center;
}

/* Bento fleet grid */
.noor-fleet-showcase {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-rows: minmax(200px, auto);
	gap: clamp(1rem, 2vw, 1.35rem);
}

.noor-fleet-card {
	--mx: 0px;
	--my: 0px;
	position: relative;
	min-height: 260px;
}

.noor-fleet-card--hero {
	grid-column: span 7;
	grid-row: span 2;
	min-height: 440px;
}

.noor-fleet-card:nth-child(2) {
	grid-column: span 5;
	min-height: 210px;
}

.noor-fleet-card:nth-child(3),
.noor-fleet-card:nth-child(4) {
	grid-column: span 6;
	min-height: 280px;
}

.noor-fleet-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	border-radius: calc(var(--radius-lg) + 2px);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	background: #0a0a0a;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow:
		0 4px 24px rgba(0, 0, 0, 0.06),
		0 0 0 1px rgba(255, 255, 255, 0.04) inset;
	transition:
		transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		box-shadow 0.5s ease,
		border-color 0.35s ease;
	transform: translate(var(--mx), var(--my));
}

.noor-fleet-card__link:hover,
.noor-fleet-card__link:focus-visible {
	transform: translate(var(--mx), calc(var(--my) - 8px));
	box-shadow:
		0 28px 56px rgba(0, 0, 0, 0.18),
		0 0 0 1px rgba(235, 63, 75, 0.2),
		0 0 40px rgba(235, 63, 75, 0.12);
	border-color: rgba(235, 63, 75, 0.35);
	outline: none;
}

.noor-fleet-card__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.noor-fleet-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.noor-fleet-card__link:hover .noor-fleet-card__media img {
	transform: scale(1.08);
}

.noor-fleet-card__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(165deg, rgba(0, 0, 0, 0.15) 0%, transparent 42%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 38%, transparent 72%);
	transition: opacity 0.45s ease;
}

.noor-fleet-card__link:hover .noor-fleet-card__overlay {
	background:
		linear-gradient(165deg, rgba(136, 18, 24, 0.25) 0%, transparent 45%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 75%);
}

.noor-fleet-card__shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		transparent 40%,
		rgba(255, 255, 255, 0.12) 50%,
		transparent 60%
	);
	transform: translateX(-120%);
	transition: transform 0.75s ease;
	pointer-events: none;
}

.noor-fleet-card__link:hover .noor-fleet-card__shine {
	transform: translateX(120%);
}

.noor-fleet-card__index {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	z-index: 2;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.55);
	padding: 0.4rem 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.noor-fleet-card__link:hover .noor-fleet-card__index {
	color: #ffffff;
	border-color: rgba(235, 63, 75, 0.45);
	background: rgba(136, 18, 24, 0.55);
}

.noor-fleet-card__body {
	position: relative;
	z-index: 2;
	margin-top: auto;
	padding: clamp(1.35rem, 2.5vw, 2rem);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.noor-fleet-card--hero .noor-fleet-card__body {
	padding: clamp(1.75rem, 3vw, 2.5rem);
}

.noor-fleet-card__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.02em;
	line-height: 1.2;
	transition: color 0.3s ease;
}

.noor-fleet-card--hero .noor-fleet-card__title {
	font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.noor-fleet-card__text {
	margin: 0;
	font-size: clamp(0.82rem, 1.1vw, 0.92rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
	max-width: 42ch;
	opacity: 0.92;
	transition: color 0.3s ease, opacity 0.3s ease;
}

.noor-fleet-card__link:hover .noor-fleet-card__text {
	color: rgba(255, 255, 255, 0.92);
}

.noor-fleet-card__action {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin-top: 0.65rem;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--accent);
	transition: gap 0.35s ease, color 0.3s ease;
}

.noor-fleet-card__link:hover .noor-fleet-card__action {
	gap: 0.95rem;
	color: #ffffff;
}

.noor-fleet-card__action-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(235, 63, 75, 0.2);
	border: 1px solid rgba(235, 63, 75, 0.35);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.35s ease;
}

.noor-fleet-card__link:hover .noor-fleet-card__action-icon {
	transform: translateX(4px);
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
	border-color: transparent;
	color: #ffffff;
}

.noor-fleet-card__glow {
	position: absolute;
	inset: auto 1.5rem 1.5rem 1.5rem;
	height: 40%;
	border-radius: 50%;
	background: radial-gradient(ellipse at center, rgba(235, 63, 75, 0.35), transparent 70%);
	opacity: 0;
	filter: blur(24px);
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.noor-fleet-card__link:hover .noor-fleet-card__glow {
	opacity: 1;
}

/* Footer CTA */
.noor-equipment-footer {
	display: flex;
	justify-content: center;
	margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

.btn-equipment-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem 1rem 2.15rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: #ffffff;
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 40%, #881218 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	box-shadow:
		0 8px 28px rgba(0, 0, 0, 0.2),
		0 0 0 1px rgba(235, 63, 75, 0.15);
	transition:
		transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		box-shadow 0.4s ease,
		background 0.4s ease;
}

.btn-equipment-cta svg {
	transition: transform 0.35s ease;
}

.btn-equipment-cta:hover {
	color: #ffffff;
	transform: translateY(-3px);
	background: linear-gradient(135deg, #881218 0%, #eb3f4b 55%, #881218 100%);
	box-shadow:
		0 16px 40px rgba(136, 18, 24, 0.35),
		0 0 32px rgba(235, 63, 75, 0.2);
}

.btn-equipment-cta:hover svg {
	transform: translateX(4px);
}

/* ?? Why Us ? cinematic trust flow (not card grid) ?? */
.noor-why-cinema {
	--why-bg: #08080b;
	--why-surface: rgba(255, 255, 255, 0.04);
	--why-glass: rgba(255, 255, 255, 0.06);
	--why-text: rgba(255, 255, 255, 0.92);
	--why-muted: rgba(255, 255, 255, 0.55);
	--px: 0%;
	--py: 0%;
	position: relative;
	overflow: hidden;
	padding: clamp(5rem, 10vw, 7.5rem) 0;
	background: var(--why-bg);
	color: var(--why-text);
}

.noor-home .noor-why-cinema.noor-section {
	background: var(--why-bg);
}

/* Atmospheric layers */
.noor-why-cinema__atmosphere {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	transform: translate(calc(var(--px) * 0.4), calc(var(--py) * 0.35));
	transition: transform 0.2s ease-out;
}

.noor-why-cinema__particles {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.7;
}

.noor-why-cinema__gradient {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at calc(20% + var(--px)) calc(15% + var(--py)), rgba(136, 18, 24, 0.22), transparent 55%),
		radial-gradient(ellipse 70% 55% at calc(85% + var(--px)) calc(75% + var(--py)), rgba(235, 63, 75, 0.14), transparent 52%),
		linear-gradient(180deg, #0c0c10 0%, #08080b 45%, #0e0e12 100%);
	animation: noor-why-gradient-shift 14s ease-in-out infinite alternate;
}

@keyframes noor-why-gradient-shift {
	0% { filter: hue-rotate(0deg) brightness(1); }
	100% { filter: hue-rotate(8deg) brightness(1.05); }
}

.noor-why-cinema__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 5%, transparent 72%);
	opacity: 0.45;
}

.noor-why-cinema__beam {
	position: absolute;
	width: 2px;
	height: 140%;
	top: -20%;
	background: linear-gradient(180deg, transparent, rgba(235, 63, 75, 0.5), transparent);
	opacity: 0.35;
	filter: blur(1px);
	animation: noor-why-beam-drift 9s ease-in-out infinite;
}

.noor-why-cinema__beam--1 {
	left: 18%;
	transform: rotate(12deg);
}

.noor-why-cinema__beam--2 {
	right: 22%;
	transform: rotate(-8deg);
	animation-delay: -4s;
	animation-duration: 11s;
}

@keyframes noor-why-beam-drift {
	0%, 100% { opacity: 0.2; transform: rotate(12deg) translateY(0); }
	50% { opacity: 0.5; transform: rotate(12deg) translateY(8%); }
}

.noor-why-cinema__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	animation: noor-float 20s ease-in-out infinite;
}

.noor-why-cinema__orb--1 {
	width: 480px;
	height: 480px;
	top: -160px;
	right: -80px;
	background: rgba(235, 63, 75, 0.12);
}

.noor-why-cinema__orb--2 {
	width: 360px;
	height: 360px;
	bottom: -120px;
	left: -60px;
	background: rgba(136, 18, 24, 0.1);
	animation-delay: -8s;
}

.noor-why-cinema__shapes span {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 4px;
	animation: noor-why-shape-float 16s ease-in-out infinite;
}

.noor-why-cinema__shapes span:nth-child(1) { width: 48px; height: 48px; top: 12%; left: 8%; animation-delay: 0s; }
.noor-why-cinema__shapes span:nth-child(2) { width: 24px; height: 24px; top: 28%; right: 12%; animation-delay: -2s; border-radius: 50%; }
.noor-why-cinema__shapes span:nth-child(3) { width: 64px; height: 12px; bottom: 35%; left: 15%; animation-delay: -4s; }
.noor-why-cinema__shapes span:nth-child(4) { width: 32px; height: 32px; top: 55%; right: 8%; animation-delay: -6s; transform: rotate(45deg); }
.noor-why-cinema__shapes span:nth-child(5) { width: 20px; height: 20px; bottom: 18%; right: 28%; animation-delay: -8s; border-radius: 50%; }
.noor-why-cinema__shapes span:nth-child(6) { width: 40px; height: 40px; top: 8%; right: 35%; animation-delay: -10s; }

@keyframes noor-why-shape-float {
	0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.35; }
	50% { transform: translateY(-14px) rotate(8deg); opacity: 0.7; }
}

.noor-why-cinema__vignette {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 85% 75% at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
}

.noor-why-cinema__inner {
	position: relative;
	z-index: 1;
}

/* Split layout */
.noor-why-cinema__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
}

/* Header column */
.noor-why-cinema__head {
	position: relative;
}

.noor-why-cinema__head-glow {
	position: absolute;
	top: -20%;
	left: -10%;
	width: 70%;
	height: 80%;
	background: radial-gradient(ellipse at center, rgba(235, 63, 75, 0.15), transparent 68%);
	filter: blur(40px);
	pointer-events: none;
	animation: noor-why-glow-pulse 5s ease-in-out infinite;
}

@keyframes noor-why-glow-pulse {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

.noor-why-cinema__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1.25rem;
	padding: 0.4rem 0.9rem;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.75);
	background: var(--why-glass);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.noor-why-cinema__eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #eb3f4b;
	box-shadow: 0 0 12px rgba(235, 63, 75, 0.8);
	animation: noor-pulse-dot 2s ease-in-out infinite;
}

.noor-why-cinema__title {
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 4.8vw, 3.5rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: #ffffff;
	margin: 0;
	max-width: 12ch;
}

.noor-why-cinema__title-accent {
	background: linear-gradient(135deg, #ffffff 0%, #eb3f4b 55%, #881218 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.noor-why-cinema__lead {
	margin: 1.25rem 0 0;
	font-size: clamp(0.95rem, 1.25vw, 1.08rem);
	line-height: 1.75;
	color: var(--why-muted);
	max-width: 38ch;
}

.noor-why-cinema__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 1.75rem;
}

.noor-why-cinema__badge {
	display: inline-flex;
	padding: 0.45rem 0.85rem;
	font-size: 0.72rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.8);
	background: var(--why-glass);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 999px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
	animation: noor-why-badge-float 6s ease-in-out infinite;
}

.noor-why-cinema__badge:nth-child(2) { animation-delay: -1.5s; }
.noor-why-cinema__badge:nth-child(3) { animation-delay: -3s; }

@keyframes noor-why-badge-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

.noor-why-cinema__badge:hover {
	border-color: rgba(235, 63, 75, 0.35);
	box-shadow: 0 0 20px rgba(235, 63, 75, 0.15);
	transform: translateY(-2px);
}

/* Premium vertical trust spine (right column) */
.noor-trust-spine {
	position: relative;
	padding: 0.25rem 0 0.5rem;
	min-height: 100%;
}

.noor-trust-spine__track {
	position: absolute;
	left: 1.35rem;
	top: 0.5rem;
	bottom: 0.5rem;
	width: 5rem;
	pointer-events: none;
	z-index: 0;
}

.noor-trust-spine__grid-glow {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 220px;
	height: 220px;
	transform: translate(-50%, -50%);
	background:
		radial-gradient(circle, rgba(235, 63, 75, 0.12) 0%, transparent 68%),
		repeating-radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px);
	border-radius: 50%;
	opacity: 0.85;
	animation: noor-spine-glow-pulse 6s ease-in-out infinite;
}

@keyframes noor-spine-glow-pulse {
	0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
	50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

.noor-trust-spine__svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.noor-trust-spine__path-active {
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	transition: stroke-dashoffset 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	filter: drop-shadow(0 0 8px rgba(235, 63, 75, 0.55));
}

.noor-trust-spine__list {
	list-style: none;
	margin: 0;
	padding: 0 0 0 0.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	position: relative;
	z-index: 1;
}

/* Trust item ? glass chevron bar */
.noor-trust-item {
	margin: 0;
	opacity: 0.82;
	transition: opacity 0.4s ease;
}

.noor-trust-item.is-active {
	opacity: 1;
}

.noor-trust-item__btn {
	display: grid;
	grid-template-columns: 4.25rem minmax(0, 1fr);
	align-items: stretch;
	gap: 0.85rem;
	width: 100%;
	padding: 0;
	border: none;
	background: transparent;
	color: inherit;
	cursor: pointer;
	text-align: left;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}

.noor-trust-item__hex {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	width: 4.25rem;
	height: 4.25rem;
	flex-shrink: 0;
}

.noor-trust-item__hex-ring {
	position: absolute;
	inset: 0;
	clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
	background: linear-gradient(145deg, rgba(235, 63, 75, 0.45), rgba(136, 18, 24, 0.2));
	opacity: 0.35;
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.noor-trust-item__hex-core {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.35rem;
	height: 3.35rem;
	clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
	background: linear-gradient(160deg, rgba(18, 18, 22, 0.95) 0%, rgba(30, 10, 14, 0.9) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow:
		0 8px 24px rgba(0, 0, 0, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease, box-shadow 0.4s ease;
}

.noor-trust-item__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.88);
	transition: color 0.35s ease, transform 0.4s ease;
}

.noor-trust-item__spine-dot {
	position: absolute;
	left: calc(50% - 40px);
	top: 50%;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 0 0 0 rgba(235, 63, 75, 0.5);
	transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.noor-trust-item__panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.75rem;
	min-height: 4.5rem;
	padding: 0.85rem 3.25rem 0.85rem 1.15rem;
	background: linear-gradient(105deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 55%, rgba(136, 18, 24, 0.06) 100%);
	border: 1px solid rgba(255, 255, 255, 0.09);
	clip-path: polygon(0 0, calc(100% - 2rem) 0, 100% 50%, calc(100% - 2rem) 100%, 0 100%);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	transition:
		transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		border-color 0.4s ease,
		box-shadow 0.45s ease,
		background 0.45s ease;
	overflow: hidden;
}

.noor-trust-item__panel-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.14) 50%, transparent 65%);
	transform: translateX(-120%);
	transition: transform 0.75s ease;
	pointer-events: none;
}

.noor-trust-item__content {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	position: relative;
	z-index: 1;
}

.noor-trust-item__title {
	font-family: var(--font-display);
	font-size: clamp(0.82rem, 1.15vw, 0.95rem);
	font-weight: 700;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.94);
	letter-spacing: -0.01em;
	transition: color 0.35s ease;
}

.noor-trust-item__desc {
	font-size: clamp(0.72rem, 0.95vw, 0.8rem);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.48);
	transition: color 0.35s ease, opacity 0.35s ease;
}

.noor-trust-item__step {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 2.8vw, 2.35rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	color: rgba(255, 255, 255, 0.07);
	align-self: center;
	padding-right: 0.15rem;
	transition: color 0.45s ease, text-shadow 0.45s ease;
}

/* Active + hover states */
.noor-trust-item.is-active .noor-trust-item__hex-ring,
.noor-trust-item__btn:hover .noor-trust-item__hex-ring,
.noor-trust-item__btn:focus-visible .noor-trust-item__hex-ring {
	opacity: 1;
	transform: scale(1.06);
}

.noor-trust-item.is-active .noor-trust-item__hex-core,
.noor-trust-item__btn:hover .noor-trust-item__hex-core,
.noor-trust-item__btn:focus-visible .noor-trust-item__hex-core {
	border-color: rgba(235, 63, 75, 0.55);
	box-shadow:
		0 12px 32px rgba(0, 0, 0, 0.4),
		0 0 28px rgba(235, 63, 75, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
	transform: scale(1.05);
}

.noor-trust-item.is-active .noor-trust-item__icon,
.noor-trust-item__btn:hover .noor-trust-item__icon {
	color: #ffffff;
	transform: scale(1.06);
}

.noor-trust-item.is-active .noor-trust-item__spine-dot,
.noor-trust-item__btn:hover .noor-trust-item__spine-dot,
.noor-trust-item__btn:focus-visible .noor-trust-item__spine-dot {
	background: #eb3f4b;
	border-color: rgba(255, 255, 255, 0.6);
	box-shadow: 0 0 0 6px rgba(235, 63, 75, 0.25), 0 0 18px rgba(235, 63, 75, 0.65);
	transform: scale(1.2);
	animation: noor-spine-dot-pulse 2.2s ease-out infinite;
}

@keyframes noor-spine-dot-pulse {
	0% { box-shadow: 0 0 0 0 rgba(235, 63, 75, 0.45), 0 0 18px rgba(235, 63, 75, 0.65); }
	70% { box-shadow: 0 0 0 12px rgba(235, 63, 75, 0), 0 0 18px rgba(235, 63, 75, 0.4); }
	100% { box-shadow: 0 0 0 0 rgba(235, 63, 75, 0), 0 0 18px rgba(235, 63, 75, 0.65); }
}

.noor-trust-item.is-active .noor-trust-item__panel,
.noor-trust-item__btn:hover .noor-trust-item__panel,
.noor-trust-item__btn:focus-visible .noor-trust-item__panel {
	transform: translateX(6px);
	border-color: rgba(235, 63, 75, 0.35);
	background: linear-gradient(105deg, rgba(255, 255, 255, 0.1) 0%, rgba(235, 63, 75, 0.08) 50%, rgba(136, 18, 24, 0.1) 100%);
	box-shadow:
		0 12px 36px rgba(0, 0, 0, 0.28),
		0 0 32px rgba(235, 63, 75, 0.12);
}

.noor-trust-item.is-active .noor-trust-item__panel-shine,
.noor-trust-item__btn:hover .noor-trust-item__panel-shine {
	transform: translateX(120%);
}

.noor-trust-item.is-active .noor-trust-item__title {
	color: #ffffff;
}

.noor-trust-item.is-active .noor-trust-item__desc,
.noor-trust-item__btn:hover .noor-trust-item__desc {
	color: rgba(255, 255, 255, 0.68);
}

.noor-trust-item.is-active .noor-trust-item__step {
	color: rgba(235, 63, 75, 0.22);
	text-shadow: 0 0 40px rgba(235, 63, 75, 0.35);
}

#why-us .js-why-reveal {
	opacity: 0;
	transform: translateY(28px);
}

#why-us.reveal.is-visible .js-why-reveal {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#why-us .noor-trust-spine__list .js-why-reveal:nth-child(2) { transition-delay: 0.06s; }
#why-us .noor-trust-spine__list .js-why-reveal:nth-child(3) { transition-delay: 0.12s; }
#why-us .noor-trust-spine__list .js-why-reveal:nth-child(4) { transition-delay: 0.18s; }
#why-us .noor-trust-spine__list .js-why-reveal:nth-child(5) { transition-delay: 0.24s; }
#why-us .noor-trust-spine__list .js-why-reveal:nth-child(6) { transition-delay: 0.3s; }

/* ?? Why cinema responsive ?? */
@media (max-width: 1100px) {
	.noor-why-cinema__layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.noor-why-cinema__title {
		max-width: none;
	}

	.noor-trust-spine__track {
		left: 1rem;
	}

	.noor-trust-item__panel {
		clip-path: none;
		padding-right: 1.15rem;
	}

	.noor-trust-item__step {
		display: none;
	}
}

@media (max-width: 768px) {
	.noor-trust-item__btn {
		grid-template-columns: 3.5rem minmax(0, 1fr);
		gap: 0.65rem;
	}

	.noor-trust-item__hex {
		width: 3.5rem;
		height: 3.5rem;
	}

	.noor-trust-item__hex-core {
		width: 2.85rem;
		height: 2.85rem;
	}

	.noor-trust-item__panel {
		min-height: 4rem;
		padding: 0.75rem 1rem;
	}
}

@media (max-width: 520px) {
	.noor-trust-spine__track {
		display: none;
	}

	.noor-trust-spine__list {
		padding-left: 0;
		gap: 0.55rem;
	}

	.noor-trust-item__spine-dot {
		display: none;
	}

	.noor-trust-item__btn {
		grid-template-columns: 3.25rem minmax(0, 1fr);
	}
}

/* Services showcase — reference layout */
.noor-home .noor-svc-showcase.noor-section {
	padding: clamp(3.5rem, 6.5vw, 5.25rem) 0 clamp(3rem, 5vw, 4.5rem);
	background: linear-gradient(180deg, #f4f5f7 0%, #fafbfc 42%, #f2f4f7 100%);
	overflow: hidden;
}

.noor-svc-showcase {
	position: relative;
	isolation: isolate;
}

.noor-svc-showcase__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.noor-svc-showcase__dots {
	position: absolute;
	width: 200px;
	height: 200px;
	background-image: radial-gradient(rgba(235, 63, 75, 0.45) 1.5px, transparent 1.5px);
	background-size: 12px 12px;
}

.noor-svc-showcase__dots--tl {
	top: 2rem;
	left: 0;
	opacity: 0.55;
	mask-image: radial-gradient(circle at top left, #000 20%, transparent 72%);
}

.noor-svc-showcase__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	pointer-events: none;
}

.noor-svc-showcase__glow--1 {
	width: 380px;
	height: 380px;
	top: 4%;
	right: 6%;
	background: rgba(235, 63, 75, 0.1);
}

.noor-svc-showcase__glow--2 {
	width: 280px;
	height: 280px;
	bottom: 12%;
	left: 38%;
	background: rgba(235, 63, 75, 0.06);
}

.noor-svc-showcase__rings {
	position: absolute;
	left: -8rem;
	bottom: -6rem;
	width: min(480px, 42vw);
	height: auto;
	opacity: 0.7;
	pointer-events: none;
}

.noor-svc-showcase__arc {
	position: absolute;
	left: 28%;
	top: -8%;
	width: min(580px, 52%);
	height: auto;
	max-height: 105%;
	pointer-events: none;
	opacity: 0.85;
}

.noor-svc-showcase__wrap {
	position: relative;
	z-index: 2;
}

.noor-svc-showcase__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
	gap: clamp(2.25rem, 4.5vw, 3.75rem);
	align-items: start;
}

/* —— Intro column —— */
.noor-svc-showcase__intro {
	position: relative;
	display: flex;
	flex-direction: column;
	padding-bottom: 0.5rem;
}

.noor-svc-showcase__eyebrow {
	margin: 0 0 0.85rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	font-family: var(--font-display);
}

.noor-svc-showcase__eyebrow-mark {
	color: var(--accent);
	margin-right: 0.15rem;
	font-weight: 800;
}

.noor-svc-showcase__title {
	margin: 0 0 1.15rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(2.75rem, 5.2vw, 4.25rem);
	line-height: 0.95;
	letter-spacing: -0.04em;
	color: #000000;
}

.noor-svc-showcase__title-line,
.noor-svc-showcase__title-accent {
	display: block;
}

.noor-svc-showcase__title-accent {
	color: var(--accent);
	margin-top: 0.02em;
}

.noor-svc-showcase__lead {
	margin: 0 0 1.5rem;
	max-width: 32ch;
	font-size: 0.92rem;
	line-height: 1.65;
	color: var(--text-muted);
}

.noor-svc-showcase__stat {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.75rem 1.15rem 0.75rem 0.75rem;
	background: #ffffff;
	border-radius: 12px;
	box-shadow:
		0 12px 32px rgba(15, 23, 42, 0.07),
		0 0 0 1px rgba(15, 23, 42, 0.04);
	max-width: 100%;
	align-self: flex-start;
	position: relative;
	z-index: 2;
}

.noor-svc-showcase__stat-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #ffffff;
	background: var(--accent);
	box-shadow: 0 6px 16px rgba(235, 63, 75, 0.28);
}

.noor-svc-showcase__stat-copy {
	min-width: 0;
}

.noor-svc-showcase__stat-value {
	margin: 0;
	font-size: 0.88rem;
	font-weight: 700;
	color: #0a0a0a;
	line-height: 1.25;
	display: flex;
	align-items: baseline;
	gap: 0.3rem;
	flex-wrap: wrap;
}

.noor-svc-showcase__stat-value strong {
	color: var(--accent);
	font-size: 1.2rem;
	font-weight: 800;
	font-family: var(--font-display);
	letter-spacing: -0.02em;
}

.noor-svc-showcase__stat-value span {
	font-weight: 800;
	color: #0a0a0a;
}

.noor-svc-showcase__stat-sub {
	margin: 0.25rem 0 0;
	font-size: 0.7rem;
	font-weight: 500;
	color: var(--text-muted);
	line-height: 1.35;
}

.noor-svc-showcase__machine {
	position: relative;
	margin-top: 1.75rem;
	width: 100%;
	min-height: 200px;
	pointer-events: none;
	z-index: 1;
}

.noor-svc-showcase__machine-bg {
	position: absolute;
	left: -4%;
	right: 0;
	bottom: 8%;
	height: 72%;
	overflow: hidden;
	border-radius: 12px;
	opacity: 0.42;
	mask-image: linear-gradient(105deg, transparent 0%, #000 28%, #000 88%, transparent 100%);
	-webkit-mask-image: linear-gradient(105deg, transparent 0%, #000 28%, #000 88%, transparent 100%);
}

.noor-svc-showcase__machine-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	filter: grayscale(0.15) brightness(1.08);
}

.noor-svc-showcase__machine-fg {
	position: relative;
	z-index: 2;
	width: min(440px, 108%);
	margin-left: -8%;
	height: auto;
	display: block;
	filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.14));
}

/* —— Service cards stack —— */
.noor-svc-showcase__cards {
	display: flex;
	flex-direction: column;
	gap: clamp(1rem, 1.8vw, 1.35rem);
	padding-left: 2.5rem;
	padding-top: 0.25rem;
}

.noor-svc-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	gap: 0;
	min-height: 168px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow:
		0 16px 40px rgba(15, 23, 42, 0.06),
		0 0 0 1px rgba(15, 23, 42, 0.035);
	transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
	isolation: isolate;
}

.noor-svc-card::before {
	content: "";
	position: absolute;
	inset: -8px -4px -8px -32px;
	z-index: -1;
	border-radius: 24px;
	background: radial-gradient(ellipse at 4% 50%, rgba(235, 63, 75, 0.14) 0%, transparent 58%);
	filter: blur(16px);
	opacity: 0.75;
	pointer-events: none;
}

.noor-svc-card:hover,
.noor-svc-card:focus-within,
.noor-svc-card.is-hovered {
	transform: translateY(-3px);
	box-shadow:
		0 22px 44px rgba(15, 23, 42, 0.1),
		0 0 0 1px rgba(235, 63, 75, 0.1);
}

.noor-svc-card__badge {
	position: absolute;
	left: -2.35rem;
	top: 50%;
	transform: translateY(-50%);
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--accent);
	background: #ffffff;
	box-shadow:
		0 10px 24px rgba(235, 63, 75, 0.2),
		0 0 0 1px rgba(15, 23, 42, 0.05);
	z-index: 4;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noor-svc-card__badge::after {
	content: "";
	position: absolute;
	inset: -12px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(235, 63, 75, 0.18) 0%, transparent 68%);
	filter: blur(10px);
	z-index: -1;
}

.noor-svc-card:hover .noor-svc-card__badge,
.noor-svc-card.is-hovered .noor-svc-card__badge {
	transform: translateY(-50%) scale(1.04);
	box-shadow:
		0 14px 30px rgba(235, 63, 75, 0.26),
		0 0 0 1px rgba(15, 23, 42, 0.05);
}

.noor-svc-card__body {
	position: relative;
	padding: 1.35rem 1rem 1.35rem 3.85rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.noor-svc-card__index {
	font-family: var(--font-display);
	font-size: clamp(2.15rem, 3.2vw, 2.85rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.05em;
	color: rgba(15, 23, 42, 0.08);
	margin-bottom: 0.35rem;
}

.noor-svc-card__title {
	margin: 0 0 0.55rem;
	font-family: var(--font-display);
	font-size: clamp(1.05rem, 1.45vw, 1.3rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: #000000;
}

.noor-svc-card__rule {
	display: block;
	width: 38px;
	height: 3px;
	border-radius: 2px;
	background: var(--accent);
	margin-bottom: 0.65rem;
}

.noor-svc-card__text {
	margin: 0;
	font-size: 0.84rem;
	line-height: 1.5;
	color: var(--text-muted);
	max-width: 36ch;
}

.noor-svc-card__media {
	position: relative;
	overflow: hidden;
	border-radius: 0 16px 16px 0;
	min-height: 168px;
}

.noor-svc-card__media img {
	width: 100%;
	height: 100%;
	min-height: 168px;
	object-fit: cover;
	object-position: center;
	clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
	transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.noor-svc-card:hover .noor-svc-card__media img,
.noor-svc-card.is-hovered .noor-svc-card__media img {
	transform: scale(1.04);
}

.noor-svc-card__cta {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 2;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent);
	color: #ffffff;
	border-radius: 6px;
	box-shadow: 0 6px 16px rgba(235, 63, 75, 0.32);
	transition: transform 0.25s ease, background 0.25s ease;
}

.noor-svc-card__cta:hover {
	background: var(--accent-deep);
	color: #ffffff;
	transform: translateX(2px);
}

/* —— Bottom highlight bar —— */
.noor-svc-showcase__bar-wrap {
	display: flex;
	justify-content: center;
	margin-top: clamp(2.25rem, 3.5vw, 3rem);
}

.noor-svc-showcase__bar {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	padding: 0.55rem 0.35rem;
	background: #ffffff;
	border-radius: 10px;
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.noor-svc-showcase__bar-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 1.35rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: #3d3d3d;
	white-space: nowrap;
}

.noor-svc-showcase__bar-item + .noor-svc-showcase__bar-item {
	border-left: 1px solid rgba(15, 23, 42, 0.12);
}

.noor-svc-showcase__bar-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	flex-shrink: 0;
}

/* Services reveal — driven by .is-visible (no GSAP) */
#services.reveal.is-visible .reveal-stagger {
	opacity: 1;
	transform: translateY(0);
}

#services .noor-svc-showcase__intro.reveal-stagger.is-visible {
	transition-delay: 0.05s;
}

#services .noor-svc-showcase__cards .reveal-stagger:nth-child(1).is-visible {
	transition-delay: 0.1s;
}

#services .noor-svc-showcase__cards .reveal-stagger:nth-child(2).is-visible {
	transition-delay: 0.2s;
}

#services .noor-svc-showcase__cards .reveal-stagger:nth-child(3).is-visible {
	transition-delay: 0.3s;
}

#services .noor-svc-showcase__bar.reveal-stagger.is-visible {
	transition-delay: 0.4s;
}

/* —— Responsive —— */
@media (max-width: 1100px) {
	.noor-svc-showcase__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.noor-svc-showcase__machine {
		display: none;
	}

	.noor-svc-showcase__rings {
		opacity: 0.35;
		left: auto;
		right: -6rem;
	}

	.noor-svc-showcase__arc {
		opacity: 0.35;
		left: auto;
		right: -8%;
	}

	.noor-svc-showcase__cards {
		padding-left: 2.25rem;
	}
}

@media (max-width: 700px) {
	.noor-svc-card {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.noor-svc-card__media {
		min-height: 150px;
		border-radius: 0 0 16px 16px;
		order: 2;
	}

	.noor-svc-card__media img {
		min-height: 150px;
		clip-path: none;
	}

	.noor-svc-card__body {
		padding: 1.15rem 1rem 0.85rem 3rem;
		order: 1;
	}

	.noor-svc-showcase__cards {
		padding-left: 1.65rem;
	}

	.noor-svc-card__badge {
		left: -1.5rem;
		width: 62px;
		height: 62px;
	}

	.noor-svc-showcase__title {
		font-size: clamp(2.25rem, 9vw, 2.85rem);
	}

	.noor-svc-showcase__bar {
		flex-direction: column;
		border-radius: 12px;
		padding: 0.5rem;
		width: 100%;
		max-width: 320px;
	}

	.noor-svc-showcase__bar-item {
		width: 100%;
		justify-content: center;
		padding: 0.5rem 1rem;
	}

	.noor-svc-showcase__bar-item + .noor-svc-showcase__bar-item {
		border-left: 0;
		border-top: 1px solid rgba(15, 23, 42, 0.1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.noor-svc-card,
	.noor-svc-card__badge,
	.noor-svc-card__media img,
	.noor-svc-card__cta {
		transition-duration: 0.01ms;
	}
}

/* ?? CTA ?? */
.noor-cta--premium {
	position: relative;
	width: 100%;
	max-width: none;
	margin-inline: 0;
	padding: clamp(4rem, 9vw, 6rem) 0;
	overflow: hidden;
	background: #000000;
}

.noor-cta--premium::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--cta-bg);
	background-size: cover;
	background-position: center;
	opacity: 0.22;
}

.noor-cta--premium::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, rgba(0, 0, 0, 0.92) 0%, rgba(136, 18, 24, 0.75) 55%, rgba(235, 63, 75, 0.35) 100%);
}

.noor-cta__shell {
	position: relative;
	z-index: 2;
}

.noor-cta--premium .noor-cta__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: clamp(2.25rem, 4vw, 3.25rem);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: calc(var(--radius-lg) + 4px);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.noor-cta--premium .noor-cta__content {
	max-width: 620px;
}

.noor-cta--premium .noor-cta__content h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.6rem);
	margin: 0 0 0.85rem;
	color: #ffffff;
	letter-spacing: -0.02em;
}

.noor-cta--premium .noor-cta__content p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.08rem;
	line-height: 1.7;
}

.noor-eyebrow--light {
	color: var(--accent) !important;
}

.noor-eyebrow--light::before {
	background: var(--accent);
}

/* ?? Contact bar ?? */
.noor-contact-bar {
	width: 100%;
	max-width: none;
	margin-inline: 0;
	padding: 2.5rem 0 3rem;
	background: linear-gradient(180deg, #f1f4f8 0%, #ffffff 100%);
	border-top: 1px solid var(--border);
}

.noor-contact-bar__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem 2rem;
}

.noor-contact-bar__item {
	padding: 1.35rem 1.5rem;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.noor-contact-bar__item:hover {
	box-shadow: var(--shadow);
	border-color: rgba(235, 63, 75, 0.2);
	transform: translateY(-3px);
}

.noor-contact-bar__label {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent);
	margin-bottom: 0.5rem;
	font-family: var(--font-display);
}

.noor-contact-bar__value {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text);
	line-height: 1.6;
}

.noor-contact-bar__value a {
	color: var(--text);
	transition: color 0.2s ease;
}

.noor-contact-bar__value a:hover {
	color: var(--accent);
}

.noor-contact-bar__sep {
	margin: 0 0.35rem;
	color: var(--text-soft);
	font-weight: 400;
}

/* ?? Reveal ?? */
.reveal-stagger {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-stagger.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.noor-fleet-showcase .reveal-stagger:nth-child(2) { transition-delay: 0.08s; }
.noor-fleet-showcase .reveal-stagger:nth-child(3) { transition-delay: 0.14s; }
.noor-fleet-showcase .reveal-stagger:nth-child(4) { transition-delay: 0.2s; }
.noor-equipment-head .reveal-stagger:nth-child(2) { transition-delay: 0.06s; }
.noor-equipment-head .reveal-stagger:nth-child(3) { transition-delay: 0.12s; }

/* ?? Responsive ?? */
@media (max-width: 1024px) {
	.noor-equipment-head {
		grid-template-columns: 1fr 1fr;
	}

	.noor-equipment-head__badge {
		grid-column: 1 / -1;
		flex-direction: row;
		gap: 0.75rem;
		justify-content: flex-start;
		width: fit-content;
	}

	.noor-fleet-card--hero {
		grid-column: span 12;
		grid-row: span 1;
		min-height: 360px;
	}

	.noor-fleet-card:nth-child(2),
	.noor-fleet-card:nth-child(3),
	.noor-fleet-card:nth-child(4) {
		grid-column: span 6;
	}
}

@media (max-width: 900px) {
	.noor-hero__grid {
		grid-template-columns: 1fr;
	}

	.noor-equipment-head {
		grid-template-columns: 1fr;
	}

	.noor-equipment-head__title {
		max-width: none;
	}

	.noor-equipment-head__lead {
		max-width: none;
	}

	.noor-hero__visual {
		order: -1;
		max-width: 540px;
		margin-inline: auto;
		width: 100%;
	}

	.noor-hero--premium .noor-hero__title {
		max-width: none;
	}

	.noor-about-grid {
		grid-template-columns: 1fr;
	}

	.noor-contact-bar__grid {
		grid-template-columns: 1fr;
	}

	.noor-cta--premium .noor-cta__inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 768px) {
	.noor-fleet-showcase {
		grid-template-columns: 1fr;
	}

	.noor-fleet-card--hero,
	.noor-fleet-card:nth-child(2),
	.noor-fleet-card:nth-child(3),
	.noor-fleet-card:nth-child(4) {
		grid-column: span 1;
		min-height: 300px;
	}

	.noor-fleet-card--hero {
		min-height: 340px;
	}

	.noor-hero__stats {
		grid-template-columns: 1fr;
	}

	.noor-hero__actions .btn {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 600px) {
	.noor-about-grid__float {
		right: 1rem;
		bottom: 1rem;
		max-width: 170px;
		padding: 0.9rem 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.noor-hero__orb,
	.noor-equipment-section__orb,
	.noor-why-cinema__orb,
	.noor-why-cinema__beam,
	.noor-why-cinema__gradient,
	.noor-why-cinema__badge,
	.noor-why-cinema__shapes span,
	.noor-why-cinema__head-glow,
	.noor-trust-spine__grid-glow,
	.noor-trust-item__spine-dot,
	.noor-about-grid__float,
	.noor-pill::before {
		animation: none;
	}

	#services.reveal,
	#services .reveal-stagger {
		opacity: 1;
		transform: none;
	}

	.reveal-stagger,
	.noor-hero__frame img,
	.noor-fleet-card__link,
	.noor-fleet-card__media img,
	.noor-trust-item__panel,
	.noor-trust-item__hex-core,
	.noor-stat-card {
		transition: none;
	}

	.noor-fleet-card__link,
	.noor-fleet-card__link:hover {
		transform: none;
	}
}
