/* =========================================================
   landing.css — الصفحة التعريفية (/) وصفحة التسجيل (/register)
   وصفحة «المنيوهات الحيّة» (/examples).

   الاتجاه البصري: واجهة أولى داكنة بلون البُنّ مع توهّج برتقالي دافئ،
   ثم تنفتح الصفحة على خلفية فاتحة دافئة وبطاقات بيضاء بحدود رفيعة.
   اللون الأساسي هو برتقالي الرائد نفسه المستعمل في المنيو (#DA5F00).

   ملاحظة: أصناف lp-* و sc-* مشتركة مع Register.tsx و Showcase.tsx،
   فأي تغيير هنا ينعكس على الصفحات الثلاث — وهذا مقصود ليبقى الموقع موحّداً.
   ========================================================= */

.lp, .lp-register, .lp-showcase {
	/* الأسطح */
	--lp-canvas: #FBFAF8;
	--lp-surface: #FFFFFF;
	--lp-surface-2: #F6F3EF;
	--lp-line: #EBE4DC;
	--lp-line-strong: #DDD3C8;

	/* الحبر */
	--lp-text: #1A1512;
	--lp-text-soft: #4A423C;
	--lp-muted: #7A716A;

	/* الداكن (الواجهة الأولى والشريط الختامي) */
	--lp-ink: #171310;
	--lp-ink-2: #241C16;
	--lp-ink-line: rgba(255, 255, 255, .12);
	--lp-ink-text: #FBF7F3;
	--lp-ink-muted: #B6A99E;

	/* اللون الأساسي والدلالات */
	--lp-accent: #DA5F00;
	--lp-accent-2: #FF8A3D;
	--lp-accent-soft: #FDF0E4;
	--lp-accent-ring: rgba(218, 95, 0, .18);
	--lp-green: #12A67C;
	--lp-green-soft: #E6F7F1;

	/* الشكل */
	--lp-r-sm: 10px;
	--lp-r: 16px;
	--lp-r-lg: 22px;
	--lp-r-xl: 28px;
	--lp-shadow: 0 1px 2px rgba(26, 21, 18, .04), 0 2px 8px rgba(26, 21, 18, .05);
	--lp-shadow-md: 0 10px 30px rgba(26, 21, 18, .09);
	--lp-shadow-lg: 0 30px 70px rgba(26, 21, 18, .16);
	--lp-ease: cubic-bezier(.4, 0, .2, 1);

	font-family: "Cairo-Medium", "Cairo", system-ui, sans-serif;
	background: var(--lp-canvas);
	color: var(--lp-text);
	min-height: 100vh;
	line-height: 1.75;
	overflow-x: hidden;
}

	.lp *, .lp-register *, .lp-showcase * {
		box-sizing: border-box;
	}

/* :where() بلا وزن نوعي عمداً — لولاه لتغلّبت هذه القاعدة على ألوان الأزرار
   (.lp-btn-ghost وغيرها) فيرث الزر لون النص من الحاوية ويختفي نصه. */
:where(.lp, .lp-register, .lp-showcase) a {
	color: inherit;
	text-decoration: none;
}

	.lp h1, .lp h2, .lp h3 {
		margin: 0;
		font-family: "Cairo-Bold", "Cairo", sans-serif;
		font-weight: 400;
		letter-spacing: -.015em;
		line-height: 1.22;
		color: var(--lp-text);
	}

	.lp h2 {
		font-size: clamp(1.75rem, 3.6vw, 2.75rem);
	}

		.lp h2 em, .lp h1 em {
			font-style: normal;
			color: var(--lp-accent);
		}

	.lp p {
		margin: 0;
	}

/* عنوان صغير فوق كل قسم — شارة صغيرة بدل نص مفرَّق */
.lp .lp-kicker {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 5px 13px;
	border-radius: 999px;
	background: var(--lp-accent-soft);
	color: var(--lp-accent);
	font-family: "Cairo-Bold", sans-serif;
	font-size: .75rem;
	letter-spacing: .02em;
	margin-bottom: 16px;
}

	.lp .lp-kicker::before {
		content: "";
		width: 5px;
		height: 5px;
		border-radius: 50%;
		background: currentColor;
	}

.lp .lp-sub {
	color: var(--lp-muted);
	max-width: 620px;
	margin-top: 14px;
	font-size: 1.02rem;
}

.lp-sec {
	padding: clamp(60px, 8vw, 104px) clamp(16px, 5vw, 72px);
	max-width: 1220px;
	margin: 0 auto;
}

/* ظهور العناصر عند التمرير */
.lp-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .6s var(--lp-ease), transform .6s var(--lp-ease);
}

	.lp-reveal.is-in {
		opacity: 1;
		transform: none;
	}

/* =========================================================
   الأزرار
   ========================================================= */

.lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 20px;
	border-radius: var(--lp-r-sm);
	font-family: "Cairo-Bold", sans-serif;
	font-weight: 400;
	font-size: .92rem;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .14s var(--lp-ease), background-color .18s var(--lp-ease), border-color .18s var(--lp-ease), box-shadow .18s var(--lp-ease), color .18s var(--lp-ease);
	white-space: nowrap;
	min-height: 44px;
}

	.lp-btn:active {
		transform: translateY(1px);
	}

	.lp-btn:focus-visible {
		outline: 2px solid var(--lp-accent);
		outline-offset: 3px;
	}

.lp-btn-primary {
	background: var(--lp-accent);
	color: #fff;
	box-shadow: 0 6px 18px rgba(218, 95, 0, .28);
}

	.lp-btn-primary:hover {
		background: #C25400;
		box-shadow: 0 10px 26px rgba(218, 95, 0, .34);
	}

.lp-btn-ghost {
	background: var(--lp-surface);
	border-color: var(--lp-line-strong);
	color: var(--lp-text);
}

	.lp-btn-ghost:hover {
		border-color: var(--lp-text);
	}

.lp-btn-lg {
	padding: 14px 28px;
	font-size: 1.02rem;
	border-radius: 13px;
	min-height: 52px;
}

.lp-btn-block {
	width: 100%;
}

.lp-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #3ED598;
	box-shadow: 0 0 0 4px rgba(62, 213, 152, .2);
}

/* الأزرار فوق الخلفية الداكنة */
.lp-on-dark .lp-btn-ghost,
.lp-hero .lp-btn-ghost,
.lp-cta .lp-btn-ghost {
	background: rgba(255, 255, 255, .08);
	border-color: rgba(255, 255, 255, .22);
	color: #fff;
}

	.lp-on-dark .lp-btn-ghost:hover,
	.lp-hero .lp-btn-ghost:hover,
	.lp-cta .lp-btn-ghost:hover {
		background: rgba(255, 255, 255, .16);
		border-color: rgba(255, 255, 255, .45);
	}

/* =========================================================
   الشريط العلوي
   ========================================================= */

.lp-nav {
	position: sticky;
	top: 0;
	z-index: 60;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 12px clamp(16px, 5vw, 72px);
	background: rgba(251, 250, 248, .82);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--lp-line);
	transition: background-color .25s var(--lp-ease), border-color .25s var(--lp-ease), color .25s var(--lp-ease);
}

/* فوق الواجهة الأولى الداكنة: شفاف تماماً حتى يبدأ التمرير */
.lp-nav-over {
	background: transparent;
	border-bottom-color: transparent;
	color: #fff;
}

	.lp-nav-over .lp-links a {
		color: rgba(255, 255, 255, .78);
	}

		.lp-nav-over .lp-links a:hover {
			color: #fff;
		}

	.lp-nav-over .lp-brand {
		color: #fff;
	}

	.lp-nav-over .lp-nav-toggle {
		color: #fff;
		border-color: rgba(255, 255, 255, .25);
	}

	/* الزر الثانوي فوق الواجهة الداكنة: شفاف بحدّ فاتح بدل الأبيض المصمت */
	.lp-nav-over .lp-btn-ghost {
		background: rgba(255, 255, 255, .1);
		border-color: rgba(255, 255, 255, .28);
		color: #fff;
	}

		.lp-nav-over .lp-btn-ghost:hover {
			background: rgba(255, 255, 255, .18);
			border-color: rgba(255, 255, 255, .5);
		}

.lp-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: "Cairo-Bold", sans-serif;
	font-size: 1.05rem;
	color: var(--lp-text);
}

	.lp-brand img {
		width: 36px;
		height: 36px;
		object-fit: contain;
		border-radius: 10px;
		background: #fff;
		padding: 5px;
		box-shadow: var(--lp-shadow);
	}

.lp-links {
	display: flex;
	gap: 4px;
	margin-inline-start: 22px;
	font-family: "Cairo-SemiBold", sans-serif;
	font-size: .92rem;
}

	.lp-links a {
		color: var(--lp-text-soft);
		padding: 7px 12px;
		border-radius: 8px;
		transition: background-color .16s var(--lp-ease), color .16s var(--lp-ease);
	}

		.lp-links a:hover {
			background: rgba(0, 0, 0, .05);
			color: var(--lp-text);
		}

.lp-nav-actions {
	margin-inline-start: auto;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* زر القائمة على الجوال + اللوح المنسدل */
.lp-nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: var(--lp-r-sm);
	border: 1px solid var(--lp-line-strong);
	background: transparent;
	color: var(--lp-text);
	font-size: 1.05rem;
	cursor: pointer;
}

.lp-drawer {
	position: fixed;
	inset: 0;
	z-index: 70;
	background: rgba(23, 19, 16, .55);
	backdrop-filter: blur(3px);
	display: flex;
	justify-content: flex-start;
}

.lp[dir="rtl"] .lp-drawer {
	justify-content: flex-end;
}

.lp-drawer-panel {
	width: min(320px, 86vw);
	background: var(--lp-surface);
	height: 100%;
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	box-shadow: var(--lp-shadow-lg);
}

	.lp-drawer-panel a {
		padding: 13px 14px;
		border-radius: var(--lp-r-sm);
		font-family: "Cairo-SemiBold", sans-serif;
		color: var(--lp-text-soft);
	}

		.lp-drawer-panel a:hover {
			background: var(--lp-surface-2);
			color: var(--lp-text);
		}

.lp-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.lp-drawer-close {
	width: 40px;
	height: 40px;
	border-radius: var(--lp-r-sm);
	border: 1px solid var(--lp-line);
	background: transparent;
	color: var(--lp-text);
	cursor: pointer;
}

.lp-drawer-cta {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* مبدّل اللغة داخل الشريط */
.lp .mnew-lang-btn,
.lp-showcase .mnew-lang-btn,
.lp-register .mnew-lang-btn {
	background: var(--lp-surface);
	border-color: var(--lp-line-strong);
	color: var(--lp-text);
}

.lp-nav-over .mnew-lang-btn {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .25);
	color: #fff;
}

.lp .mnew-lang-menu {
	background: var(--lp-surface);
	border-color: var(--lp-line);
	box-shadow: var(--lp-shadow-md);
}

.lp .mnew-lang-item {
	color: var(--lp-text-soft);
}

	.lp .mnew-lang-item:hover {
		background: var(--lp-surface-2);
	}

	.lp .mnew-lang-item.active {
		color: var(--lp-accent);
	}

@media (max-width: 980px) {
	.lp-links {
		display: none;
	}

	.lp-nav-actions .lp-btn-ghost {
		display: none;
	}

	.lp-nav-toggle {
		display: inline-flex;
	}
}

/* =========================================================
   الواجهة الأولى (داكنة)
   ========================================================= */

.lp-hero-wrap {
	position: relative;
	background: var(--lp-ink);
	color: var(--lp-ink-text);
	overflow: hidden;
	isolation: isolate;
	border-end-start-radius: 34px;
	border-end-end-radius: 34px;
}

	/* توهّج دافئ خلف المحتوى */
	.lp-hero-wrap::before {
		content: "";
		position: absolute;
		inset: -20% -10% auto -10%;
		height: 760px;
		background:
			radial-gradient(620px 420px at 78% 8%, rgba(255, 138, 61, .28), transparent 62%),
			radial-gradient(520px 380px at 12% 42%, rgba(218, 95, 0, .18), transparent 65%);
		z-index: -2;
	}

	/* شبكة خفيفة تعطي إحساس المنتج */
	.lp-hero-wrap::after {
		content: "";
		position: absolute;
		inset: 0;
		background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
		background-size: 56px 56px;
		mask-image: radial-gradient(70% 60% at 50% 0%, #000, transparent 75%);
		-webkit-mask-image: radial-gradient(70% 60% at 50% 0%, #000, transparent 75%);
		z-index: -1;
	}

.lp-hero {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 48px;
	align-items: center;
	padding: clamp(40px, 6vw, 76px) clamp(16px, 5vw, 72px) clamp(56px, 7vw, 92px);
	max-width: 1220px;
	margin: 0 auto;
}

.lp-badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 7px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	color: #F4E9E0;
	font-size: .8rem;
	font-family: "Cairo-SemiBold", sans-serif;
	backdrop-filter: blur(6px);
}

.lp-hero h1 {
	font-size: clamp(2.25rem, 5.4vw, 4.15rem);
	margin: 22px 0 18px;
	color: #fff;
	letter-spacing: -.03em;
}

	.lp-hero h1 em {
		font-style: normal;
		background: linear-gradient(100deg, var(--lp-accent-2), #FFC48C);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
	}

.lp-hero .lp-lead,
.lp-lead {
	color: var(--lp-ink-muted);
	font-size: 1.08rem;
	max-width: 560px;
}

.lp-hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.lp-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	list-style: none;
	padding: 0;
	margin: 26px 0 0;
	color: var(--lp-ink-muted);
	font-size: .86rem;
	font-family: "Cairo-SemiBold", sans-serif;
}

	.lp-trust li {
		display: inline-flex;
		align-items: center;
		gap: 7px;
	}

		.lp-trust li::before {
			content: "\f00c";
			font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
			font-weight: 900;
			color: var(--lp-accent-2);
			font-size: .7rem;
		}

@media (max-width: 960px) {
	.lp-hero {
		grid-template-columns: 1fr;
		gap: 36px;
	}

		.lp-hero .lp-lead {
			max-width: none;
		}
}

/* --- مجسّم الهاتف --- */
.lp-hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	padding: 14px 0;
}

.lp-phone {
	width: 292px;
	border-radius: 46px;
	padding: 10px;
	background: #0D0A08;
	border: 1px solid rgba(255, 255, 255, .16);
	box-shadow: 0 50px 100px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .05);
	position: relative;
	animation: lp-float 7s ease-in-out infinite;
}

@keyframes lp-float {
	0%, 100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}
}

.lp-phone-notch {
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: 92px;
	height: 24px;
	border-radius: 999px;
	background: #0D0A08;
	z-index: 3;
}

.lp-phone-screen {
	border-radius: 36px;
	overflow: hidden;
	background: #fff;
	color: #1C1A17;
	height: 576px;
	display: flex;
	flex-direction: column;
	direction: rtl;
}

.lp[dir="ltr"] .lp-phone-screen {
	direction: ltr;
}

.lp-m-cover {
	position: relative;
	height: 176px;
	padding: 44px 16px 14px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: #fff;
	background-size: cover !important;
	background-position: center;
}

	.lp-m-cover::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(to top, rgba(0, 0, 0, .72), transparent 62%);
	}

	.lp-m-cover > * {
		position: relative;
		z-index: 1;
	}

	.lp-m-cover b {
		font-family: "Cairo-Bold", sans-serif;
		font-size: 1.15rem;
	}

	.lp-m-cover small {
		font-size: .62rem;
		opacity: .88;
		letter-spacing: .08em;
	}

.lp-m-star {
	position: absolute;
	top: 44px;
	inset-inline-start: 14px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	color: #1C1A17;
	display: grid;
	place-items: center;
	font-size: .7rem;
	z-index: 2;
}

.lp-m-lang {
	position: absolute;
	top: 44px;
	inset-inline-end: 14px;
	z-index: 2;
	font-size: .62rem;
	font-family: "Cairo-Bold", sans-serif;
	padding: 4px 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .92);
	color: #1C1A17;
}

.lp-m-cats {
	display: flex;
	gap: 6px;
	padding: 12px 12px 8px;
	overflow: hidden;
}

	.lp-m-cats span {
		font-size: .66rem;
		font-family: "Cairo-SemiBold", sans-serif;
		padding: 6px 12px;
		border-radius: 999px;
		background: #F4F1ED;
		color: #4A423C;
		white-space: nowrap;
	}

		.lp-m-cats span.on {
			background: var(--lp-accent);
			color: #fff;
		}

.lp-m-track {
	height: 4px;
	margin: 0 14px 6px;
	border-radius: 2px;
	background: #F0ECE7;
	position: relative;
}

	.lp-m-track::after {
		content: "";
		position: absolute;
		inset: 0 auto 0 0;
		width: 55%;
		border-radius: 2px;
		background: #D8CFC6;
	}

.lp-m-items {
	padding: 4px 14px;
	display: flex;
	flex-direction: column;
}

.lp-m-item {
	display: flex;
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid #F1EDE8;
	align-items: flex-start;
}

.lp-m-img {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	flex-shrink: 0;
}

/* صور أطباق حقيقية مقصوصة مسبقاً إلى 240×240، لا تدرّجات لونية.
   الملفات مصغّرة عمداً (نحو 20 كيلوبايت) لأنها تُعرض بحجم 56 بكسل في
   الواجهة الأولى، فلا يصحّ تحميل صورة بعرض 1200 من أجلها. */
.lp-m-img-0 {
	background: #EAE4DD url('/assets/images/landing/dish-grill.jpg') center/cover no-repeat;
}

.lp-m-img-1 {
	background: #EAE4DD url('/assets/images/landing/dish-burger.jpg') center/cover no-repeat;
}

.lp-m-img-2 {
	background: #EAE4DD url('/assets/images/landing/dish-pizza.jpg') center/cover no-repeat;
}

/* حدّ داخلي رفيع يفصل الصورة عن خلفية البطاقة البيضاء */
.lp-m-img,
.lp-t-img {
	box-shadow: inset 0 0 0 1px rgba(23, 19, 16, .08);
}

.lp-m-body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
	flex: 1;
}

	.lp-m-body b {
		font-family: "Cairo-SemiBold", sans-serif;
		font-size: .8rem;
	}

	.lp-m-body small {
		font-size: .62rem;
		color: #8A8078;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

.lp-m-tag {
	align-self: flex-start;
	font-size: .58rem;
	font-family: "Cairo-Bold", sans-serif;
	padding: 2px 8px;
	border-radius: 6px;
	background: var(--lp-green-soft);
	color: #0B6B50;
}

.lp-m-price {
	font-size: .74rem;
	font-family: "Cairo-Bold", sans-serif;
	color: #1C1A17;
	white-space: nowrap;
	padding-top: 2px;
	font-variant-numeric: tabular-nums;
}

/* --- مجسّم التابلت: نفس المنيو بتخطيط شبكي، والهاتف يتقدّمه --- */
.lp-devices {
	position: relative;
	width: 100%;
	max-width: 560px;
	margin-inline: auto;
	padding-bottom: 46px;
}

.lp-tablet {
	width: min(408px, 78%);
	border-radius: 30px;
	padding: 12px;
	background: #0D0A08;
	border: 1px solid rgba(255, 255, 255, .14);
	box-shadow: 0 46px 90px rgba(0, 0, 0, .58);
	transform: rotate(-2deg);
}

.lp-tablet-screen {
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	color: #1C1A17;
	height: 512px;
	display: flex;
	flex-direction: column;
	direction: rtl;
}

.lp[dir="ltr"] .lp-tablet-screen {
	direction: ltr;
}

.lp-t-cover {
	position: relative;
	height: 148px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: #fff;
	background-size: cover !important;
	background-position: center;
}

	.lp-t-cover::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(to top, rgba(0, 0, 0, .72), transparent 62%);
	}

	.lp-t-cover > * {
		position: relative;
		z-index: 1;
	}

	.lp-t-cover b {
		font-family: "Cairo-Bold", sans-serif;
		font-size: 1.05rem;
	}

	.lp-t-cover small {
		font-size: .6rem;
		opacity: .88;
		letter-spacing: .08em;
	}

	.lp-t-cover .lp-m-lang {
		top: 14px;
	}

.lp-t-cats {
	display: flex;
	gap: 6px;
	padding: 12px 14px 10px;
	overflow: hidden;
}

	.lp-t-cats span {
		font-size: .64rem;
		font-family: "Cairo-SemiBold", sans-serif;
		padding: 6px 12px;
		border-radius: 999px;
		background: #F4F1ED;
		color: #4A423C;
		white-space: nowrap;
	}

		.lp-t-cats span.on {
			background: var(--lp-accent);
			color: #fff;
		}

.lp-t-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 4px 14px 14px;
}

.lp-t-card {
	border: 1px solid #F1EDE8;
	border-radius: 13px;
	padding: 9px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

	.lp-t-card b {
		font-family: "Cairo-SemiBold", sans-serif;
		font-size: .72rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

.lp-t-img {
	height: 62px;
	border-radius: 9px;
}

/* الهاتف يتقدّم التابلت في الزاوية السفلية */
.lp-devices .lp-phone {
	position: absolute;
	inset-block-end: 0;
	inset-inline-end: 0;
	width: 228px;
	z-index: 3;
	transform: rotate(1.5deg);
	animation: none;
}

	.lp-devices .lp-phone .lp-phone-screen {
		height: 452px;
		border-radius: 28px;
	}

	.lp-devices .lp-phone .lp-phone-notch {
		width: 74px;
		height: 19px;
		top: 14px;
	}

	.lp-devices .lp-phone .lp-m-cover {
		height: 140px;
		padding-top: 36px;
	}

	.lp-devices .lp-phone .lp-m-star,
	.lp-devices .lp-phone .lp-m-lang {
		top: 36px;
	}

@media (max-width: 1100px) {
	.lp-tablet {
		width: min(360px, 76%);
	}

	.lp-devices .lp-phone {
		width: 206px;
	}

		.lp-devices .lp-phone .lp-phone-screen {
			height: 412px;
		}
}

/* على الشاشات الضيّقة يبقى الهاتف وحده في المنتصف */
@media (max-width: 680px) {
	.lp-tablet {
		display: none;
	}

	.lp-devices {
		padding-bottom: 0;
		display: flex;
		justify-content: center;
	}

		.lp-devices .lp-phone {
			position: static;
			width: 262px;
			transform: none;
			animation: lp-float 7s ease-in-out infinite;
		}

			.lp-devices .lp-phone .lp-phone-screen {
				height: 520px;
			}
}

/* =========================================================
   شريط الأرقام + شريط أسماء المشتركين
   ========================================================= */

.lp-stats {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 clamp(16px, 5vw, 72px);
	margin-top: -42px;
	position: relative;
	z-index: 5;
}

.lp-stats-inner {
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	border-radius: var(--lp-r-lg);
	box-shadow: var(--lp-shadow-md);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	overflow: hidden;
}

.lp-stat {
	padding: 22px 18px;
	text-align: center;
	border-inline-end: 1px solid var(--lp-line);
}

	.lp-stat:last-child {
		border-inline-end: 0;
	}

	.lp-stat b {
		display: block;
		font-family: "Cairo-Bold", sans-serif;
		font-size: clamp(1.5rem, 3vw, 2.1rem);
		line-height: 1.15;
		color: var(--lp-text);
		font-variant-numeric: tabular-nums;
	}

	.lp-stat small {
		display: block;
		color: var(--lp-muted);
		font-size: .82rem;
		margin-top: 2px;
	}

@media (max-width: 720px) {
	.lp-stats-inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.lp-stat:nth-child(2) {
		border-inline-end: 0;
	}

	.lp-stat:nth-child(-n+2) {
		border-bottom: 1px solid var(--lp-line);
	}
}

.lp-marquee {
	max-width: 1220px;
	margin: 0 auto;
	padding: 54px clamp(16px, 5vw, 72px) 0;
}

.lp-marquee-title {
	text-align: center;
	color: var(--lp-muted);
	font-size: .82rem;
	font-family: "Cairo-SemiBold", sans-serif;
	letter-spacing: .04em;
	margin-bottom: 16px;
}

.lp-marquee-inner {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.lp-marquee-track {
	display: flex;
	gap: 14px;
	width: max-content;
	animation: lp-marquee 44s linear infinite;
}

	.lp-marquee-track span {
		color: var(--lp-text-soft);
		font-size: .9rem;
		font-family: "Cairo-SemiBold", sans-serif;
		white-space: nowrap;
		padding: 9px 18px;
		border-radius: 999px;
		background: var(--lp-surface);
		border: 1px solid var(--lp-line);
	}

@keyframes lp-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(50%);
	}
}

.lp[dir="ltr"] .lp-marquee-track {
	animation-name: lp-marquee-ltr;
}

@keyframes lp-marquee-ltr {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* =========================================================
   رحلة الزبون — أربع لحظات بخيط يربطها
   ========================================================= */

.lp-journey {
	list-style: none;
	padding: 0;
	margin: 38px 0 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	position: relative;
}

	/* الخيط الواصل بين الأيقونات */
	.lp-journey::before {
		content: "";
		position: absolute;
		top: 27px;
		inset-inline: 10%;
		height: 2px;
		background: repeating-linear-gradient(90deg, var(--lp-line-strong) 0 7px, transparent 7px 14px);
		z-index: 0;
	}

.lp-j {
	position: relative;
	z-index: 1;
	padding-top: 4px;
}

.lp-j-icon {
	width: 54px;
	height: 54px;
	border-radius: 17px;
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	box-shadow: var(--lp-shadow);
	color: var(--lp-accent);
	display: grid;
	place-items: center;
	font-size: 1.25rem;
	margin-bottom: 16px;
}

.lp-j-num {
	position: absolute;
	top: 0;
	inset-inline-start: 42px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--lp-accent);
	color: #fff;
	display: grid;
	place-items: center;
	font-family: "Cairo-Bold", sans-serif;
	font-size: .7rem;
	box-shadow: 0 4px 10px rgba(218, 95, 0, .35);
}

.lp-j b {
	display: block;
	font-family: "Cairo-Bold", sans-serif;
	font-size: 1.05rem;
	margin-bottom: 6px;
}

.lp-j p {
	color: var(--lp-muted);
	font-size: .91rem;
}

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

		.lp-journey::before {
			display: none;
		}
}

@media (max-width: 560px) {
	.lp-journey {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   قوالب المنيو — معاينات مرسومة بـ CSS
   ========================================================= */

.lp-tpl-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 38px;
}

.lp-tpl {
	border-radius: var(--lp-r-lg);
	border: 1px solid var(--lp-line);
	background: var(--lp-surface);
	box-shadow: var(--lp-shadow);
	overflow: hidden;
	transition: transform .2s var(--lp-ease), box-shadow .2s var(--lp-ease), border-color .2s var(--lp-ease);
}

	.lp-tpl:hover {
		transform: translateY(-4px);
		box-shadow: var(--lp-shadow-md);
		border-color: var(--lp-line-strong);
	}

	.lp-tpl b {
		display: block;
		font-family: "Cairo-Bold", sans-serif;
		font-size: 1rem;
		padding: 16px 18px 0;
	}

	.lp-tpl p {
		color: var(--lp-muted);
		font-size: .86rem;
		padding: 5px 18px 20px;
		line-height: 1.6;
	}

/* لوح المعاينة المشترك */
.lp-tpl-prev {
	height: 186px;
	background: #F7F4F0;
	border-bottom: 1px solid var(--lp-line);
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lp-tpl-bar {
	display: block;
	height: 44px;
	border-radius: 9px;
	background: linear-gradient(135deg, #C9BCB0, #8E7E71);
	flex: 0 0 auto;
}

.lp-tpl-rows {
	display: grid;
	gap: 8px;
	flex: 1;
	min-height: 0;
}

	.lp-tpl-rows i {
		border-radius: 7px;
		background: #fff;
		border: 1px solid #E7E0D8;
	}

/* الكلاسيكي: شبكة بطاقات بعمودين */
.lp-tpl-classic .lp-tpl-rows {
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}

/* الأنيق: خلفية كريمية وصفوف أفقية عريضة */
.lp-tpl-elegant .lp-tpl-prev {
	background: #F6EFE4;
	padding-inline: 26px;
}

.lp-tpl-elegant .lp-tpl-bar {
	height: 32px;
	border-radius: 999px;
}

.lp-tpl-elegant .lp-tpl-rows {
	grid-template-rows: repeat(4, 1fr);
}

	.lp-tpl-elegant .lp-tpl-rows i {
		border-radius: 999px;
	}

/* الورقي: بلا صور، أسطر نصية بخط منقّط */
.lp-tpl-editorial .lp-tpl-prev {
	background: #FBF8F2;
	gap: 12px;
}

.lp-tpl-editorial .lp-tpl-bar {
	height: 10px;
	width: 55%;
	margin-inline: auto;
	border-radius: 3px;
	background: #7A6A58;
}

.lp-tpl-editorial .lp-tpl-rows {
	grid-template-rows: repeat(4, 1fr);
	gap: 14px;
}

	.lp-tpl-editorial .lp-tpl-rows i {
		background: transparent;
		border: 0;
		border-bottom: 2px dotted #C9BCA8;
		border-radius: 0;
		align-self: end;
		height: 10px;
	}

/* العرض: صور كبيرة بعرض اللوح */
.lp-tpl-showcase .lp-tpl-prev {
	padding: 0;
	gap: 0;
}

.lp-tpl-showcase .lp-tpl-bar {
	height: 96px;
	border-radius: 0;
}

.lp-tpl-showcase .lp-tpl-rows {
	grid-template-rows: 1fr;
	gap: 0;
}

	.lp-tpl-showcase .lp-tpl-rows i:nth-child(n+3) {
		display: none;
	}

	.lp-tpl-showcase .lp-tpl-rows i {
		border-radius: 0;
		border: 0;
		border-top: 1px solid #E7E0D8;
		background: linear-gradient(135deg, #E3D8CC, #BFAE9E);
	}

	.lp-tpl-showcase .lp-tpl-rows {
		grid-template-columns: 1fr 1fr;
	}

.lp-tpl-note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	color: var(--lp-muted);
	font-size: .88rem;
}

	.lp-tpl-note i {
		color: var(--lp-accent);
	}

@media (max-width: 1000px) {
	.lp-tpl-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.lp-tpl-grid {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   الخطوات
   ========================================================= */

.lp-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 34px;
	position: relative;
}

.lp-step {
	border-radius: var(--lp-r-lg);
	border: 1px solid var(--lp-line);
	background: var(--lp-surface);
	box-shadow: var(--lp-shadow);
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .2s var(--lp-ease), box-shadow .2s var(--lp-ease);
}

	.lp-step:hover {
		transform: translateY(-4px);
		box-shadow: var(--lp-shadow-md);
	}

.lp-step-img {
	height: 168px;
	background: #EAE4DD center/cover no-repeat;
	order: 10;
	margin-top: auto;
}

.lp-step-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 22px 0;
	margin-bottom: 12px;
}

.lp-step-n {
	width: 42px;
	height: 42px;
	border-radius: 13px;
	background: var(--lp-accent-soft);
	color: var(--lp-accent);
	display: grid;
	place-items: center;
	font-family: "Cairo-Bold", sans-serif;
	font-size: 1.05rem;
}

.lp-step-time {
	font-size: .72rem;
	padding: 4px 11px;
	border-radius: 999px;
	background: var(--lp-surface-2);
	color: var(--lp-muted);
	font-family: "Cairo-SemiBold", sans-serif;
}

.lp-step b {
	font-family: "Cairo-Bold", sans-serif;
	font-size: 1.08rem;
	display: block;
	margin-bottom: 7px;
	padding-inline: 22px;
}

.lp-step p {
	color: var(--lp-muted);
	font-size: .91rem;
	padding: 0 22px 22px;
}

@media (max-width: 880px) {
	.lp-steps {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   الميزات (شبكة بنتو)
   ========================================================= */

.lp-bento {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 34px;
}

.lp-feat {
	position: relative;
	border-radius: var(--lp-r-lg);
	border: 1px solid var(--lp-line);
	background: var(--lp-surface);
	box-shadow: var(--lp-shadow);
	padding: 0;
	overflow: hidden;
	transition: transform .2s var(--lp-ease), box-shadow .2s var(--lp-ease);
}

	.lp-feat:hover {
		transform: translateY(-4px);
		box-shadow: var(--lp-shadow-md);
	}

.lp-feat-wide {
	grid-column: span 2;
}

.lp-feat-img {
	height: 162px;
	background: #EAE4DD center/cover no-repeat;
	position: relative;
}

.lp-feat-wide .lp-feat-img {
	height: 222px;
}

.lp-feat-icon {
	position: absolute;
	margin: -30px 22px 0;
	width: 52px;
	height: 52px;
	border-radius: 15px;
	background: var(--lp-accent);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 1.25rem;
	box-shadow: 0 10px 24px rgba(218, 95, 0, .34);
	z-index: 1;
}

.lp-feat b {
	display: block;
	font-family: "Cairo-Bold", sans-serif;
	font-size: 1.08rem;
	padding: 24px 22px 0;
}

.lp-feat p {
	color: var(--lp-muted);
	font-size: .91rem;
	padding: 6px 22px 22px;
}

.lp-flags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	padding: 0 22px 22px;
}

	.lp-flags span {
		font-size: .76rem;
		font-family: "Cairo-SemiBold", sans-serif;
		padding: 5px 12px;
		border-radius: 999px;
		background: var(--lp-surface-2);
		border: 1px solid var(--lp-line);
		color: var(--lp-text-soft);
	}

@media (max-width: 880px) {
	.lp-bento {
		grid-template-columns: 1fr;
	}

	.lp-feat-wide {
		grid-column: auto;
	}
}

/* =========================================================
   الربط مع نظام الرائد للكاشير — شريط داكن يفصل بين الأقسام الفاتحة
   ========================================================= */

.lp-integ-wrap {
	position: relative;
	margin: clamp(40px, 6vw, 72px) clamp(16px, 5vw, 72px);
	border-radius: var(--lp-r-xl);
	background: var(--lp-ink);
	color: var(--lp-ink-text);
	overflow: hidden;
	isolation: isolate;
}

	.lp-integ-wrap::before {
		content: "";
		position: absolute;
		inset: -40% -20% auto -20%;
		height: 520px;
		background:
			radial-gradient(520px 340px at 76% 0%, rgba(255, 138, 61, .26), transparent 64%),
			radial-gradient(420px 300px at 16% 30%, rgba(218, 95, 0, .16), transparent 66%);
		z-index: -1;
	}

.lp-integ {
	padding: clamp(40px, 5.5vw, 68px) clamp(20px, 4vw, 56px);
	max-width: 1120px;
	margin: 0 auto;
}

	/* قلب ألوان العناوين داخل الشريط الداكن */
	.lp-integ .lp-kicker {
		background: rgba(255, 138, 61, .16);
		color: var(--lp-accent-2);
	}

	.lp-integ h2 {
		color: #fff;
		max-width: 720px;
	}

		.lp-integ h2 em {
			color: var(--lp-accent-2);
		}

	.lp-integ .lp-sub {
		color: var(--lp-ink-muted);
		max-width: 680px;
	}

/* مسار الطلب: أربع محطات يربطها خيط */
.lp-flow {
	list-style: none;
	padding: 0;
	margin: 40px 0 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	position: relative;
}

	.lp-flow::before {
		content: "";
		position: absolute;
		top: 26px;
		inset-inline: 11%;
		height: 2px;
		background: repeating-linear-gradient(90deg, rgba(255,255,255,.22) 0 7px, transparent 7px 14px);
		z-index: 0;
	}

.lp-flow-step {
	position: relative;
	z-index: 1;
}

.lp-flow-icon {
	width: 54px;
	height: 54px;
	border-radius: 17px;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .16);
	color: var(--lp-accent-2);
	display: grid;
	place-items: center;
	font-size: 1.3rem;
	margin-bottom: 16px;
	backdrop-filter: blur(6px);
}

.lp-flow-n {
	position: absolute;
	top: -4px;
	inset-inline-start: 42px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--lp-accent);
	color: #fff;
	display: grid;
	place-items: center;
	font-family: "Cairo-Bold", sans-serif;
	font-size: .7rem;
	box-shadow: 0 4px 10px rgba(218, 95, 0, .4);
}

.lp-flow-step b {
	display: block;
	font-family: "Cairo-Bold", sans-serif;
	font-size: 1.02rem;
	color: #fff;
	margin-bottom: 6px;
}

.lp-flow-step p {
	color: var(--lp-ink-muted);
	font-size: .9rem;
}

/* ما الذي يتزامن */
.lp-integ-foot {
	margin-top: 38px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.lp-integ-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: "Cairo-Bold", sans-serif;
	font-size: .88rem;
	color: #fff;
	white-space: nowrap;
}

	.lp-integ-label i {
		color: var(--lp-accent-2);
	}

.lp-integ-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

	.lp-integ-tags span {
		font-size: .8rem;
		font-family: "Cairo-SemiBold", sans-serif;
		padding: 6px 13px;
		border-radius: 999px;
		background: rgba(255, 255, 255, .07);
		border: 1px solid rgba(255, 255, 255, .14);
		color: #F0E7E0;
	}

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

		.lp-flow::before {
			display: none;
		}
}

@media (max-width: 560px) {
	.lp-flow {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   لوحة التحكم (معاينة)
   ========================================================= */

.lp-dash-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 44px;
	align-items: center;
}

.lp-checks {
	list-style: none;
	padding: 0;
	margin: 22px 0 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
	color: var(--lp-text-soft);
	font-family: "Cairo-SemiBold", sans-serif;
}

	.lp-checks li {
		display: flex;
		align-items: center;
		gap: 11px;
	}

		.lp-checks li::before {
			content: "\f00c";
			font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
			font-weight: 900;
			display: inline-grid;
			place-items: center;
			width: 24px;
			height: 24px;
			border-radius: 50%;
			background: var(--lp-green-soft);
			color: var(--lp-green);
			font-size: .68rem;
			flex: 0 0 auto;
		}

.lp-dash {
	border-radius: var(--lp-r-lg);
	border: 1px solid var(--lp-line);
	background: var(--lp-surface);
	overflow: hidden;
	box-shadow: var(--lp-shadow-lg);
}

.lp-dash-tabs {
	display: flex;
	gap: 4px;
	padding: 12px;
	border-bottom: 1px solid var(--lp-line);
	overflow: hidden;
	background: var(--lp-surface-2);
}

	.lp-dash-tabs span {
		font-size: .72rem;
		font-family: "Cairo-SemiBold", sans-serif;
		padding: 6px 11px;
		border-radius: 999px;
		color: var(--lp-muted);
		white-space: nowrap;
	}

		.lp-dash-tabs span.on {
			background: var(--lp-surface);
			color: var(--lp-accent);
			box-shadow: var(--lp-shadow);
		}

.lp-dash-body {
	display: flex;
	min-height: 268px;
}

.lp-dash-side {
	width: 66px;
	border-inline-end: 1px solid var(--lp-line);
	padding: 16px 12px;
	display: flex;
	flex-direction: column;
	gap: 13px;
}

	.lp-dash-side i {
		height: 10px;
		border-radius: 5px;
		background: var(--lp-surface-2);
	}

		.lp-dash-side i:first-child {
			background: var(--lp-accent);
		}

.lp-dash-main {
	flex: 1;
	padding: 16px;
}

.lp-dash-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

	.lp-dash-cards > div {
		border-radius: 13px;
		background: var(--lp-surface-2);
		border: 1px solid var(--lp-line);
		padding: 13px;
		display: flex;
		flex-direction: column;
	}

	.lp-dash-cards b {
		font-family: "Cairo-Bold", sans-serif;
		font-size: 1.35rem;
		color: var(--lp-text);
	}

	.lp-dash-cards small {
		color: var(--lp-muted);
		font-size: .7rem;
	}

.lp-dash-rows {
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

	.lp-dash-rows i {
		height: 36px;
		border-radius: 11px;
		background: var(--lp-surface-2);
		border: 1px solid var(--lp-line);
	}

@media (max-width: 880px) {
	.lp-dash-grid {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   المنيوهات الحيّة داخل الصفحة التعريفية
   ========================================================= */

.lp-live-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

.lp-live-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
	gap: 18px;
	margin-top: 34px;
}

.lp-live {
	border-radius: var(--lp-r-lg);
	border: 1px solid var(--lp-line);
	background: var(--lp-surface);
	box-shadow: var(--lp-shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .2s var(--lp-ease), box-shadow .2s var(--lp-ease), border-color .2s var(--lp-ease);
}

	.lp-live:hover {
		transform: translateY(-4px);
		box-shadow: var(--lp-shadow-md);
		border-color: var(--lp-line-strong);
	}

.lp-live-cover {
	height: 132px;
	background: #EAE4DD center/cover no-repeat;
	position: relative;
}

.lp-live-logo {
	position: absolute;
	inset-block-end: -22px;
	inset-inline-start: 16px;
	width: 52px;
	height: 52px;
	border-radius: 15px;
	background: #fff;
	border: 3px solid var(--lp-surface);
	box-shadow: var(--lp-shadow);
	overflow: hidden;
	display: grid;
	place-items: center;
	font-family: "Cairo-Bold", sans-serif;
	color: var(--lp-accent);
	font-size: 1.2rem;
}

	.lp-live-logo img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.lp-live-body {
	padding: 30px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}

	.lp-live-body b {
		font-family: "Cairo-Bold", sans-serif;
		font-size: .98rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.lp-live-body small {
		color: var(--lp-muted);
		font-size: .8rem;
	}

.lp-live-meta {
	margin-top: 10px;
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

	.lp-live-meta span {
		font-size: .72rem;
		font-family: "Cairo-SemiBold", sans-serif;
		padding: 4px 10px;
		border-radius: 999px;
		background: var(--lp-surface-2);
		color: var(--lp-text-soft);
	}

/* =========================================================
   الأسعار
   ========================================================= */

.lp-plans {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 34px;
	max-width: 920px;
}

.lp-plan {
	border-radius: var(--lp-r-xl);
	padding: 28px;
	border: 1px solid var(--lp-line);
	background: var(--lp-surface);
	box-shadow: var(--lp-shadow);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lp-plan-trial {
	border-color: var(--lp-accent);
	box-shadow: 0 0 0 4px var(--lp-accent-ring), var(--lp-shadow-md);
}

.lp-plan-name {
	font-size: .82rem;
	font-family: "Cairo-Bold", sans-serif;
	color: var(--lp-accent);
	letter-spacing: .04em;
}

.lp-plan-price {
	font-family: "Cairo-Bold", sans-serif;
	font-size: 2.5rem;
	line-height: 1.1;
	color: var(--lp-text);
}

.lp-plan-price-sm {
	font-size: 1.05rem;
	color: var(--lp-muted);
	font-family: "Cairo-SemiBold", sans-serif;
}

.lp-plan-lines {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 1.15rem;
	font-family: "Cairo-Bold", sans-serif;
}

.lp-plan small {
	color: var(--lp-muted);
}

.lp-plan ul {
	list-style: none;
	padding: 0;
	margin: 14px 0 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: .92rem;
	color: var(--lp-text-soft);
}

.lp-plan li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

	.lp-plan li::before {
		content: "\f00c";
		font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
		font-weight: 900;
		color: var(--lp-green);
		font-size: .72rem;
		margin-top: .45em;
		flex: 0 0 auto;
	}

.lp-plan .lp-btn {
	margin-top: auto;
}

@media (max-width: 780px) {
	.lp-plans {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   الأسئلة الشائعة
   ========================================================= */

.lp-faq {
	margin-top: 30px;
	max-width: 840px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lp-faq-item {
	border-radius: var(--lp-r);
	border: 1px solid var(--lp-line);
	background: var(--lp-surface);
	overflow: hidden;
	transition: border-color .18s var(--lp-ease), box-shadow .18s var(--lp-ease);
}

	.lp-faq-item.open {
		border-color: var(--lp-line-strong);
		box-shadow: var(--lp-shadow);
	}

	.lp-faq-item button {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 12px;
		padding: 17px 20px;
		background: transparent;
		border: 0;
		color: var(--lp-text);
		font-family: "Cairo-Bold", sans-serif;
		font-size: 1rem;
		cursor: pointer;
		text-align: start;
		min-height: 56px;
	}

		.lp-faq-item button i {
			transition: transform .25s var(--lp-ease);
			color: var(--lp-accent);
			flex: 0 0 auto;
		}

	.lp-faq-item.open button i {
		transform: rotate(45deg);
	}

.lp-faq-a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .28s var(--lp-ease);
}

.lp-faq-item.open .lp-faq-a {
	grid-template-rows: 1fr;
}

.lp-faq-a p {
	overflow: hidden;
	padding: 0 20px;
	color: var(--lp-muted);
	font-size: .94rem;
}

.lp-faq-item.open .lp-faq-a p {
	padding-bottom: 18px;
}

/* =========================================================
   النداء الأخير والتذييل
   ========================================================= */

.lp-cta {
	margin: 20px clamp(16px, 5vw, 72px) 0;
	padding: clamp(46px, 6vw, 72px) 24px;
	border-radius: var(--lp-r-xl);
	text-align: center;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background-size: cover;
	background-position: center;
	color: #fff;
}

	.lp-cta::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(135deg, rgba(23, 19, 16, .93), rgba(60, 28, 6, .86));
		z-index: -1;
	}

	.lp-cta h2 {
		font-size: clamp(1.7rem, 3.6vw, 2.6rem);
		color: #fff;
	}

	.lp-cta p {
		color: rgba(255, 255, 255, .8);
		margin-top: 12px;
	}

	.lp-cta .lp-hero-cta {
		justify-content: center;
	}

.lp-footer {
	padding: 52px clamp(16px, 5vw, 72px) 30px;
	margin-top: 40px;
	border-top: 1px solid var(--lp-line);
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 26px;
	color: var(--lp-muted);
	font-size: .9rem;
}

.lp-footer-brand p {
	margin-top: 14px;
	max-width: 420px;
}

.lp-footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	align-content: start;
	font-family: "Cairo-SemiBold", sans-serif;
}

	.lp-footer-links a:hover {
		color: var(--lp-accent);
	}

.lp-footer-copy {
	grid-column: 1 / -1;
	font-size: .8rem;
	opacity: .75;
	padding-top: 16px;
	border-top: 1px solid var(--lp-line);
}

@media (max-width: 780px) {
	.lp-footer {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   صفحة التسجيل
   ========================================================= */

.lp-register {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 60px;
}

.lp-reg-top {
	width: 100%;
	max-width: 1100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px clamp(16px, 4vw, 40px);
}

.lp-reg-card {
	width: min(640px, calc(100% - 32px));
	margin-top: 16px;
	padding: 32px;
	border-radius: var(--lp-r-xl);
	background: var(--lp-surface);
	border: 1px solid var(--lp-line);
	box-shadow: var(--lp-shadow-md);
}

	.lp-reg-card h1 {
		font-family: "Cairo-Bold", sans-serif;
		font-size: 1.7rem;
		margin: 0 0 6px;
		color: var(--lp-text);
	}

.lp-reg-sub {
	color: var(--lp-muted);
	margin-bottom: 24px;
}

.lp-reg-closed {
	padding: 13px 15px;
	border-radius: var(--lp-r-sm);
	background: #FDECEF;
	border: 1px solid rgba(224, 53, 90, .25);
	color: #A52240;
	margin-bottom: 16px;
	font-family: "Cairo-SemiBold", sans-serif;
}

form.is-disabled {
	opacity: .5;
	pointer-events: none;
}

.lp-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 18px;
}

	.lp-field > span {
		font-family: "Cairo-SemiBold", sans-serif;
		font-size: .9rem;
		color: var(--lp-text-soft);
	}

	.lp-field small {
		color: var(--lp-muted);
		font-size: .78rem;
	}

	.lp-field input,
	.lp-field select {
		width: 100%;
		padding: 12px 14px;
		border-radius: var(--lp-r-sm);
		border: 1px solid var(--lp-line-strong);
		background: var(--lp-surface);
		color: var(--lp-text);
		font-family: inherit;
		font-size: .95rem;
		outline: none;
		min-height: 46px;
		transition: border-color .16s var(--lp-ease), box-shadow .16s var(--lp-ease);
	}

		.lp-field input::placeholder {
			color: #B3A99F;
		}

		.lp-field input:focus,
		.lp-field select:focus {
			border-color: var(--lp-accent);
			box-shadow: 0 0 0 3px var(--lp-accent-ring);
		}

.lp-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

@media (max-width: 560px) {
	.lp-row {
		grid-template-columns: 1fr;
	}
}

.lp-url-wrap {
	display: flex;
	align-items: center;
	border-radius: var(--lp-r-sm);
	border: 1px solid var(--lp-line-strong);
	background: var(--lp-surface);
	overflow: hidden;
}

	.lp-url-wrap:focus-within {
		border-color: var(--lp-accent);
		box-shadow: 0 0 0 3px var(--lp-accent-ring);
	}

.lp-url-prefix {
	padding: 12px;
	color: var(--lp-muted);
	font-size: .85rem;
	background: var(--lp-surface-2);
	border-inline-end: 1px solid var(--lp-line);
	white-space: nowrap;
}

.lp-url-wrap input {
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.lp-lang-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.lp-chip {
	padding: 8px 15px;
	border-radius: 999px;
	border: 1px solid var(--lp-line-strong);
	background: var(--lp-surface);
	color: var(--lp-text-soft);
	font-family: "Cairo-SemiBold", sans-serif;
	font-size: .85rem;
	cursor: pointer;
	min-height: 40px;
}

	.lp-chip.on {
		border-color: var(--lp-accent);
		background: var(--lp-accent-soft);
		color: var(--lp-accent);
	}

	.lp-chip.src {
		opacity: .75;
		cursor: default;
	}

.lp-reg-err {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #A52240;
	background: #FDECEF;
	border: 1px solid rgba(224, 53, 90, .25);
	border-radius: var(--lp-r-sm);
	padding: 11px 14px;
	font-family: "Cairo-SemiBold", sans-serif;
	font-size: .9rem;
	margin: 4px 0 14px;
}

/* الحقل الذي أوقف الإرسال — يُلوَّن حتى يعدّله المستخدم */
.lp-field .is-bad,
.lp-url-wrap.is-bad {
	border-color: var(--lp-danger, #E0355A) !important;
	box-shadow: 0 0 0 3px rgba(224, 53, 90, .16) !important;
}

.lp-reg-terms {
	color: var(--lp-muted);
	font-size: .78rem;
	margin-top: 14px;
	text-align: center;
}

.lp-reg-login {
	text-align: center;
	margin-top: 10px;
	color: var(--lp-muted);
	font-size: .9rem;
}

	.lp-reg-login a {
		color: var(--lp-accent);
		font-family: "Cairo-Bold", sans-serif;
	}

.lp-reg-success {
	text-align: center;
	padding: 20px 0;
}

.lp-reg-success-icon {
	width: 76px;
	height: 76px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: var(--lp-green-soft);
	color: var(--lp-green);
	display: grid;
	place-items: center;
	font-size: 2rem;
	font-weight: 900;
}

.lp-reg-success p {
	color: var(--lp-muted);
	margin-top: 8px;
}

/* =========================================================
   صفحة «المنيوهات الحيّة»
   ========================================================= */

.sc-head {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 44px;
	align-items: center;
	padding-bottom: 24px;
}

	.sc-head h1 {
		font-family: "Cairo-Bold", sans-serif;
		font-size: clamp(2rem, 4.6vw, 3.2rem);
		margin: 18px 0 14px;
		color: var(--lp-text);
		letter-spacing: -.02em;
	}

.sc-bullets {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

	.sc-bullets li {
		display: flex;
		flex-direction: column;
		gap: 2px;
		padding-inline-start: 18px;
		border-inline-start: 2px solid var(--lp-accent);
	}

	.sc-bullets b {
		font-family: "Cairo-Bold", sans-serif;
		font-size: 1rem;
	}

	.sc-bullets span {
		color: var(--lp-muted);
		font-size: .9rem;
	}

@media (max-width: 880px) {
	.sc-head {
		grid-template-columns: 1fr;
	}
}

.sc-body {
	padding-top: 10px;
}

.sc-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.sc-search {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 240px;
	max-width: 420px;
	padding: 0 14px;
	height: 46px;
	border-radius: var(--lp-r-sm);
	border: 1px solid var(--lp-line-strong);
	background: var(--lp-surface);
	color: var(--lp-muted);
}

	.sc-search:focus-within {
		border-color: var(--lp-accent);
		box-shadow: 0 0 0 3px var(--lp-accent-ring);
	}

	.sc-search input {
		flex: 1;
		background: transparent;
		border: 0;
		outline: none;
		color: var(--lp-text);
		font-family: inherit;
		font-size: .95rem;
	}

.sc-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.sc-chip {
	padding: 9px 15px;
	border-radius: 999px;
	border: 1px solid var(--lp-line-strong);
	background: var(--lp-surface);
	color: var(--lp-text-soft);
	font-family: "Cairo-SemiBold", sans-serif;
	font-size: .82rem;
	cursor: pointer;
	min-height: 38px;
}

	.sc-chip.on {
		background: var(--lp-accent);
		border-color: var(--lp-accent);
		color: #fff;
	}

.sc-count {
	margin-inline-start: auto;
	color: var(--lp-muted);
	font-size: .85rem;
	font-family: "Cairo-SemiBold", sans-serif;
}

.sc-loading {
	display: flex;
	justify-content: center;
	padding: 60px 0;
}

.sc-empty {
	color: var(--lp-muted);
	text-align: center;
	padding: 60px 0;
}

.sc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(348px, 1fr));
	gap: 18px;
}

@media (max-width: 420px) {
	.sc-grid {
		grid-template-columns: 1fr;
	}
}

.sc-card {
	border-radius: var(--lp-r-lg);
	border: 1px solid var(--lp-line);
	background: var(--lp-surface);
	box-shadow: var(--lp-shadow);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .2s var(--lp-ease), border-color .2s var(--lp-ease), box-shadow .2s var(--lp-ease);
}

	.sc-card:hover {
		transform: translateY(-4px);
		border-color: var(--lp-line-strong);
		box-shadow: var(--lp-shadow-md);
	}

.sc-cover {
	display: block;
	position: relative;
	height: 168px;
	background: #EAE4DD center/cover no-repeat;
}

.sc-cover-fallback {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-size: 4rem;
	font-weight: 900;
	color: rgba(255, 255, 255, .22);
	background: url('/assets/images/landing/cover-fallback.jpg') center/cover no-repeat;
}

.sc-cover::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(255, 255, 255, .96), transparent 55%);
}

.sc-cover-badge {
	position: absolute;
	top: 12px;
	inset-inline-start: 12px;
	z-index: 1;
	font-size: .7rem;
	font-family: "Cairo-Bold", sans-serif;
	padding: 5px 11px;
	border-radius: 999px;
	background: rgba(23, 19, 16, .6);
	color: #fff;
	backdrop-filter: blur(6px);
}

.sc-body-card {
	padding: 0 18px 18px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.sc-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: -26px;
	position: relative;
	z-index: 1;
}

.sc-logo {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: #fff;
	border: 3px solid var(--lp-surface);
	box-shadow: var(--lp-shadow-md);
	overflow: hidden;
	display: grid;
	place-items: center;
	font-family: "Cairo-Bold", sans-serif;
	color: var(--lp-accent);
	font-size: 1.3rem;
	flex-shrink: 0;
}

	.sc-logo img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.sc-title-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1;
	padding-top: 22px;
}

	.sc-title-text b {
		font-family: "Cairo-Bold", sans-serif;
		font-size: 1.05rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.sc-title-text small {
		color: var(--lp-muted);
		font-size: .8rem;
	}

.sc-qr {
	width: 40px;
	height: 40px;
	border-radius: 11px;
	border: 1px solid var(--lp-line-strong);
	display: grid;
	place-items: center;
	color: var(--lp-muted);
	margin-top: 22px;
}

	.sc-qr:hover {
		color: var(--lp-accent);
		border-color: var(--lp-accent);
	}

.sc-desc {
	color: var(--lp-muted);
	font-size: .88rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.sc-stats {
	display: flex;
	gap: 8px;
	color: var(--lp-muted);
	font-size: .78rem;
	font-family: "Cairo-SemiBold", sans-serif;
}

.sc-sample {
	border-top: 1px solid var(--lp-line);
	padding-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

	.sc-sample > small {
		color: var(--lp-muted);
		font-size: .72rem;
		font-family: "Cairo-Bold", sans-serif;
		letter-spacing: .04em;
	}

.sc-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.sc-item-img {
	width: 42px;
	height: 42px;
	border-radius: 11px;
	flex-shrink: 0;
	background: var(--lp-surface-2) center/cover no-repeat;
}

.sc-item-name {
	flex: 1;
	font-size: .9rem;
	font-family: "Cairo-SemiBold", sans-serif;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sc-item-price {
	font-size: .8rem;
	color: var(--lp-accent);
	font-family: "Cairo-Bold", sans-serif;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.sc-foot {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-top: 1px solid var(--lp-line);
	padding-top: 13px;
}

.sc-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	min-width: 0;
}

	.sc-cats span {
		font-size: .68rem;
		font-family: "Cairo-SemiBold", sans-serif;
		padding: 4px 10px;
		border-radius: 999px;
		background: var(--lp-surface-2);
		color: var(--lp-muted);
		white-space: nowrap;
	}

.sc-open {
	color: var(--lp-accent);
	font-family: "Cairo-Bold", sans-serif;
	font-size: .88rem;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.lp[dir="ltr"] .sc-arrow,
.lp-showcase[dir="ltr"] .sc-arrow {
	transform: scaleX(-1);
}

/* =========================================================
   تفضيل تقليل الحركة
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
	.lp-phone {
		animation: none;
	}

	.lp-marquee-track {
		animation: none;
	}

	.lp-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.lp-tpl,
	.lp-step,
	.lp-feat,
	.lp-live,
	.sc-card,
	.lp-btn {
		transition: none;
	}

		.lp-tpl:hover,
		.lp-step:hover,
		.lp-feat:hover,
		.lp-live:hover,
		.sc-card:hover {
			transform: none;
		}
}
