:root {
  --lp-bg: #0a0f1c;
  --lp-bg-soft: #0d1424;
  --lp-surface: #121a2c;
  --lp-surface-2: #18223a;
  --lp-gold: #caa14a;
  --lp-gold-bright: #f0d488;
  --lp-gold-dim: #8a6a1f;
  --lp-urgent: #ff6a5a;
  --lp-text: #eaeef7;
  --lp-muted: #8b93ab;
  --lp-border: rgba(202, 161, 74, .18);
  --lp-radius: 20px;
  --lp-radius-sm: 12px;
  --lp-fast: .2s;
  --lp-ease: cubic-bezier(.22, .61, .36, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  touch-action: pan-y;
  line-height: 1.7;
}
h1, h2, h3, .lp-gold-font {
  font-family: "Cairo", "IBM Plex Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.lp-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.lp-section-kicker {
  display: block;
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--lp-gold);
  margin-bottom: 10px;
}
.lp-section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 800;
  margin: 0 0 14px;
}
.lp-section-sub {
  text-align: center;
  color: var(--lp-muted);
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 1rem;
  line-height: 1.8;
}
.lp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lp-gold);
  color: #1a1610;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 14px -4px rgba(202, 161, 74, .18);
  transition: transform var(--lp-fast) var(--lp-ease), box-shadow var(--lp-fast) var(--lp-ease);
}
.lp-cta:hover { transform: translateY(-3px); box-shadow: 0 6px 18px -4px rgba(202, 161, 74, .28); }
.lp-cta:active { transform: translateY(-1px); }
.lp-cta-outline {
  background: transparent;
  color: var(--lp-text);
  border: 1.5px solid var(--lp-border);
  box-shadow: none;
}
.lp-cta-outline:hover { border-color: var(--lp-gold); background: rgba(202, 161, 74, .08); }
.lp-cta-secondary { margin-top: 8px; }
.lp-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--lp-ease), transform .6s var(--lp-ease); }
.lp-reveal.lp-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .lp-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation: none !important; }
}
.lp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 24px;
  background: rgba(13, 11, 8, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lp-border);
}
.lp-brand {
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--lp-text);
  text-decoration: none;
  white-space: nowrap;
}
.lp-header-actions { display: flex; align-items: center; gap: 10px; }
.lp-header-cta {
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
  white-space: nowrap;
  transition: transform var(--lp-fast) var(--lp-ease), background var(--lp-fast) var(--lp-ease), border-color var(--lp-fast) var(--lp-ease);
}
.lp-header-browse { background: transparent; border: 1.5px solid var(--lp-border); color: var(--lp-text); }
.lp-header-browse:hover { border-color: var(--lp-gold); background: rgba(202, 161, 74, .08); }
.lp-header-start {
  background: var(--lp-gold);
  color: #1a1610;
}
.lp-header-start:hover { transform: translateY(-2px); }
.lp-hero {
  position: relative;
  padding: 64px 24px 90px;
  overflow: hidden;
}
.lp-hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(600px 380px at 50% 0%, rgba(202, 161, 74, .14), transparent 70%);
  pointer-events: none;
}
.lp-hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}
.lp-hero-kicker {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--lp-gold);
  margin: 0 0 12px;
}
.lp-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  margin: 0 0 18px;
  line-height: 1.45;
}
.lp-hero-text {
  color: var(--lp-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 0 0 32px;
  max-width: 480px;
}
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.lp-affiliate-box {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(202, 161, 74, .25);
  border-radius: 14px;
  background: rgba(202, 161, 74, .06);
  max-width: 480px;
}
.lp-affiliate-title { margin: 0 0 8px; font-weight: 800; color: var(--lp-gold-bright); }
.lp-affiliate-box p { margin: 0 0 12px; font-size: .92rem; line-height: 1.75; color: var(--lp-muted); }
.lp-affiliate-box strong { color: var(--lp-gold); }
.lp-affiliate-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--lp-gold);
  color: var(--lp-gold-bright);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: background .2s;
}
.lp-affiliate-cta:hover { background: rgba(202, 161, 74, .1); }
.lp-assembly-wrap { position: relative; display: flex; justify-content: center; padding: 20px 0; }
.lp-assembly {
  position: relative;
  width: 260px;
  padding: 36px 24px 30px;
  border-radius: var(--lp-radius);
  background: linear-gradient(180deg, var(--lp-surface) 0%, var(--lp-surface-2) 100%);
  border: 1px solid var(--lp-border);
  box-shadow: 0 30px 80px -24px rgba(0, 0, 0, .6);
  text-align: center;
  overflow: hidden;
}
.lp-assembly-glow {
  position: absolute;
  inset: -30% -20% auto -20%;
  height: 200px;
  background: radial-gradient(closest-side, rgba(202, 161, 74, .35), transparent);
  filter: blur(6px);
  animation: lp-glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
.lp-assembly-logo {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lp-gold-bright), var(--lp-gold-dim));
  color: #1a1305;
  opacity: 1;
  transform: scale(1);
}
.lp-assembly-label {
  position: relative;
  font-size: .82rem;
  font-weight: 700;
  color: var(--lp-muted);
  margin: 0 0 18px;
  opacity: 1;
  transform: translateY(0);
}
.lp-assembly-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.lp-assembly-tile {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--lp-surface-2), rgba(202, 161, 74, .16));
  border: 1px solid var(--lp-border);
  opacity: 1;
  transform: scale(1);
}
.lp-assembly-bell {
  position: absolute;
  bottom: -14px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--lp-gold);
  color: #1a1610;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .5);
  opacity: 1;
  transform: translateY(0) scale(1);
}
.lp-assembly-bell-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6a5a;
  flex-shrink: 0;
}
/* ---- تسلسل التجميع (شعار، بعده الشبكة قطعة قطعة، بعده جرس الإشعار) -
   يشتغل مرة وحدة فقط لحظة ظهور القسم على الشاشة (.lp-in تضيفها
   IntersectionObserver الموجودة أصلاً بأسفل landing.html)، وبعدها يبقى
   التركيب كامل الظهور. الحالة الافتراضية أعلاه (بلا .lp-in) هي نفسها
   الحالة النهائية بعد اكتمال الحركة، حتى تبقى الصفحة سليمة المظهر تماماً
   لمن يفعّل تقليل الحركة (prefers-reduced-motion يوقف كل animation عالمياً
   بهذا الملف، فيثبت كل عنصر عند حالته الافتراضية مباشرة بلا أي حركة). ---- */
.lp-assembly-wrap:not(.lp-in) .lp-assembly-logo,
.lp-assembly-wrap:not(.lp-in) .lp-assembly-label,
.lp-assembly-wrap:not(.lp-in) .lp-assembly-tile,
.lp-assembly-wrap:not(.lp-in) .lp-assembly-bell {
  opacity: 0;
}
.lp-assembly-wrap.lp-in .lp-assembly-logo { animation: lp-pop-in .55s var(--lp-ease) .1s both; }
.lp-assembly-wrap.lp-in .lp-assembly-label { animation: lp-fade-up .5s var(--lp-ease) .5s both; }
.lp-assembly-wrap.lp-in .lp-assembly-tile:nth-child(1) { animation: lp-pop-in .4s var(--lp-ease) .7s both; }
.lp-assembly-wrap.lp-in .lp-assembly-tile:nth-child(2) { animation: lp-pop-in .4s var(--lp-ease) .79s both; }
.lp-assembly-wrap.lp-in .lp-assembly-tile:nth-child(3) { animation: lp-pop-in .4s var(--lp-ease) .88s both; }
.lp-assembly-wrap.lp-in .lp-assembly-tile:nth-child(4) { animation: lp-pop-in .4s var(--lp-ease) .97s both; }
.lp-assembly-wrap.lp-in .lp-assembly-tile:nth-child(5) { animation: lp-pop-in .4s var(--lp-ease) 1.06s both; }
.lp-assembly-wrap.lp-in .lp-assembly-tile:nth-child(6) { animation: lp-pop-in .4s var(--lp-ease) 1.15s both; }
.lp-assembly-wrap.lp-in .lp-assembly-bell {
  animation: lp-bell-in .5s var(--lp-ease) 1.9s both, lp-bell-ring .6s ease 2.5s 2;
}
.lp-assembly-wrap.lp-in .lp-assembly-bell-dot { animation: lp-dot-pulse 1.4s ease-in-out 2.6s infinite; }
@keyframes lp-glow-pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.08); }
}
@keyframes lp-pop-in {
  from { opacity: 0; transform: scale(.5); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lp-bell-in {
  from { opacity: 0; transform: translateY(10px) scale(.7); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lp-bell-ring {
  0%, 100% { rotate: 0deg; }
  20% { rotate: -12deg; }
  40% { rotate: 10deg; }
  60% { rotate: -8deg; }
  80% { rotate: 6deg; }
}
@keyframes lp-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}
.lp-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 10px 24px 70px;
  position: relative;
  z-index: 1;
}
.lp-stat { text-align: center; }
.lp-stat-num {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--lp-gold);
  font-variant-numeric: tabular-nums;
}
.lp-stat-label { color: var(--lp-muted); font-size: .88rem; margin-top: 4px; }
.lp-section { padding: 80px 24px; }
.lp-section-alt { background: var(--lp-bg-soft); }
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-feature-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 30px 22px;
  text-align: center;
  transition: transform var(--lp-fast) var(--lp-ease), border-color var(--lp-fast) var(--lp-ease);
}
.lp-feature-card:hover { transform: translateY(-6px); border-color: var(--lp-gold); }
.lp-feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(202, 161, 74, .1);
  color: var(--lp-gold);
}
.lp-feature-icon svg { width: 26px; height: 26px; }
.lp-feature-card h3 { font-size: 1.05rem; margin: 0 0 10px; }
.lp-feature-card p { color: var(--lp-muted); font-size: .9rem; line-height: 1.75; margin: 0; }
.lp-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-showcase-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 24px 18px;
  text-align: center;
  text-decoration: none;
  color: var(--lp-text);
  transition: transform var(--lp-fast) var(--lp-ease), border-color var(--lp-fast) var(--lp-ease);
}
.lp-showcase-card:hover { transform: translateY(-6px); border-color: var(--lp-gold); }
.lp-showcase-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 2px solid var(--lp-border);
  background: var(--lp-bg-soft);
}
.lp-showcase-name { font-weight: 800; font-size: 1rem; margin-bottom: 8px; }
.lp-showcase-badge {
  display: inline-block;
  background: rgba(202, 161, 74, .12);
  color: var(--lp-gold);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
.lp-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.lp-plan-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 34px 28px;
}
.lp-plan-vip {
  background: var(--lp-surface);
  border: 1px solid var(--lp-gold);
  position: relative;
}
.lp-plan-name { font-size: 1.1rem; font-weight: 800; margin: 0 0 6px; }
.lp-plan-vip .lp-plan-name { color: var(--lp-gold); }
.lp-plan-price { font-size: 2rem; font-weight: 800; margin: 0 0 22px; }
.lp-plan-price span { font-size: .85rem; font-weight: 600; color: var(--lp-muted); }
.lp-plan-price-old { font-size: 1.1rem; font-weight: 600; color: var(--lp-muted); text-decoration: line-through; margin-inline-end: 8px; }
.lp-plan-note { font-size: .82rem; font-weight: 700; color: var(--lp-gold); margin: -12px 0 16px; }
.lp-plan-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.lp-plan-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--lp-muted); }
.lp-plan-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--lp-gold); }
.lp-plan-vip .lp-plan-list li { color: var(--lp-text); }
.lp-banner {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--lp-radius);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--lp-border);
}
.lp-banner-gold {
  background: var(--lp-surface);
}
.lp-banner h2 { font-size: 1.4rem; margin: 0 0 10px; color: var(--lp-text); }
.lp-banner p { margin: 0 0 22px; color: var(--lp-muted); }
.lp-banner .lp-cta svg { width: 18px; height: 18px; }
.lp-banner-outer { padding: 0 24px 80px; }
.lp-about { padding: 80px 24px; text-align: center; max-width: 680px; margin: 0 auto; }
.lp-about p { color: var(--lp-muted); font-size: 1rem; line-height: 1.9; margin-bottom: 26px; }
.lp-faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.lp-faq-item {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  padding: 4px 20px;
}
.lp-faq-question {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--lp-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lp-faq-question::-webkit-details-marker { display: none; }
.lp-faq-question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--lp-gold);
  transition: transform var(--lp-fast) var(--lp-ease);
}
.lp-faq-item[open] .lp-faq-question::after { transform: rotate(45deg); }
.lp-faq-answer { margin: 0 0 18px; color: var(--lp-muted); font-size: .94rem; line-height: 1.85; }
.lp-footer {
  text-align: center;
  padding: 32px 24px;
  color: var(--lp-muted);
  font-size: .85rem;
  border-top: 1px solid var(--lp-border);
}
.lp-footer-links { display: flex; justify-content: center; gap: 8px; margin-bottom: 10px; align-items: center; }
.lp-footer-links a { color: var(--lp-gold); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.lp-footer-links a svg { width: 15px; height: 15px; }
.lp-footer-links a:hover { color: var(--lp-gold-bright); }
@media (max-width: 860px) {
  .lp-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .lp-hero-text { margin-inline: auto; }
  .lp-hero-actions { justify-content: center; }
  .lp-phone { width: 220px; height: 450px; }
  .lp-stats { gap: 36px; }
}
@media (max-width: 480px) {
  .lp-header-cta { padding: 8px 13px; font-size: .78rem; }
  .lp-brand { font-size: 1rem; }
}
