/* MorPay Landing — Dark Neon Grid (هوية بنفسجي + أصفر نيون) */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap");

body.lp {
  --mp-neon: #fdd100;
  --mp-purple: #6b2bff;
  --mp-grid: rgba(186, 160, 255, 0.14);
  --mp-bg-deep: #060010;
  margin: 0;
  font-family: "Cairo", sans-serif;
  color: #fff;
  background-color: var(--mp-bg-deep);
  background-image:
    /* Soft Neon Grid — شبكة مربعة */
    linear-gradient(var(--mp-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--mp-grid) 1px, transparent 1px),
    /* نيون أصفر أعلى يمين (مفهوم A) */
    radial-gradient(ellipse 48% 38% at 88% 8%, rgba(253, 209, 0, 0.28), transparent 62%),
    /* هالة بنفسجية مركزية خلف الهيرو */
    radial-gradient(ellipse 72% 52% at 50% 22%, rgba(107, 43, 255, 0.42), transparent 64%),
    /* وهج بنفسجي ثانوي يسار */
    radial-gradient(ellipse 42% 36% at 12% 48%, rgba(138, 43, 226, 0.22), transparent 68%),
    /* لمسة ذهبية خفيفة يمين وسط */
    radial-gradient(ellipse 36% 30% at 94% 58%, rgba(253, 209, 0, 0.1), transparent 70%),
    /* قاعدة الهوية */
    linear-gradient(180deg, #0b021c 0%, #12062e 42%, #060010 100%);
  background-size:
    48px 48px,
    48px 48px,
    auto,
    auto,
    auto,
    auto,
    auto;
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* تدرج حواف غامق عشان الشبكة تبقى ناعمة مش حادة */
body.lp::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(6, 0, 16, 0.55), transparent 55%),
    linear-gradient(180deg, rgba(6, 0, 16, 0.28) 0%, transparent 16%, transparent 78%, rgba(6, 0, 16, 0.68) 100%);
}

/* المحتوى فوق طبقة الخلفية — بدون كسر العناصر الثابتة (واتساب / دعم / float-bg) */
body.lp > *:not(.mp-fc-stack):not(.mp-fc-panel):not(.mp-fc-nudge):not(.mp-float-bg) {
  position: relative;
  z-index: 1;
}

body.lp > .mp-fc-stack,
body.lp > .mp-fc-panel,
body.lp > .mp-fc-nudge {
  position: fixed;
  z-index: 9991;
}

body.lp > .mp-float-bg {
  position: fixed;
  z-index: 0;
}

.lp * { box-sizing: border-box; }

/* شريط الإعلانات المتحرك */
.lp-ticker {
  position: relative;
  z-index: 60;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(253, 209, 0, 0.06), transparent 18%, transparent 82%, rgba(253, 209, 0, 0.06)),
    linear-gradient(180deg, #16082c 0%, #0f041f 100%);
  border-bottom: 1px solid rgba(253, 209, 0, 0.18);
  direction: ltr;
  user-select: none;
}

.lp-ticker-fade {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    #0f041f 0%,
    transparent 8%,
    transparent 92%,
    #0f041f 100%
  );
}

.lp-ticker-track {
  display: flex;
  width: max-content;
  animation: lp-ticker-scroll 32s linear infinite;
}

.lp-ticker:hover .lp-ticker-track {
  animation-play-state: paused;
}

.lp-ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2.4rem;
  padding: 0.55rem 1.2rem;
}

.lp-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fdd100;
  direction: rtl;
}

.lp-ticker-item b {
  color: #fff;
  background: rgba(253, 209, 0, 0.16);
  border: 1px solid rgba(253, 209, 0, 0.35);
  border-radius: 8px;
  padding: 0.08rem 0.45rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  direction: ltr;
}

.lp-ticker-check {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: #fdd100;
  box-shadow: 0 0 10px rgba(253, 209, 0, 0.35);
  position: relative;
}

.lp-ticker-check::after {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.2rem;
  width: 0.28rem;
  height: 0.48rem;
  border: solid #1a1200;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@keyframes lp-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.lp-wrap {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Nav — القديم (يُستبدل بـ site-header) */
.lp-nav { display: none !important; }

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  position: relative;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.3rem;
}

.lp-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.lp-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.lp-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  position: relative;
}

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

.lp-links a.is-on {
  color: #fff;
}

.lp-links a.is-on::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  left: 0.75rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 2px;
  background: #fdd100;
}

/* روابط الدخول تظهر في قائمة الموبايل فقط */
.lp-mobile-auth { display: none !important; }

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, filter 0.15s ease, background 0.15s ease;
}

.lp-btn:active { transform: scale(0.98); }

.lp-btn-yellow {
  background: #fdd100;
  color: #1a1200;
  box-shadow: 0 0 24px rgba(253, 209, 0, 0.35);
}

.lp-btn-yellow:hover {
  filter: brightness(1.05);
  color: #1a1200;
}

.lp-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.lp-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.lp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lp-profile {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
}

.lp-menu-btn {
  display: none;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
}

/* Hero */
.lp-hero {
  padding: 3.4rem 0 2.8rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.lp-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  line-height: 1.28;
  font-weight: 800;
  margin: 0 0 0.9rem;
}

.lp-hero h1 span {
  color: #fdd100;
  text-shadow: 0 0 28px rgba(253, 209, 0, 0.35);
}

.lp-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 36ch;
  margin-bottom: 1.45rem;
}

.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.lp-visual {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.lp-orbit {
  width: min(100%, 440px);
  aspect-ratio: 1;
  position: relative;
  direction: ltr;
}

.lp-orbit::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px dashed rgba(253, 209, 0, 0.25);
  box-shadow: 0 0 40px rgba(138, 43, 226, 0.15);
}

.lp-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #2a1148, #12002b 70%);
  border: 3px solid rgba(253, 209, 0, 0.85);
  color: #fdd100;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow:
    0 0 0 10px rgba(253, 209, 0, 0.12),
    0 0 40px rgba(107, 43, 255, 0.45),
    0 0 50px rgba(253, 209, 0, 0.35);
  z-index: 3;
}

.lp-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50%;
  transform: scale(1.02);
}

.lp-node {
  position: absolute;
  width: 168px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(18, 8, 40, 0.95);
  border: 1px solid rgba(253, 209, 0, 0.35);
  border-radius: 14px;
  padding: 0.55rem 0.65rem;
  box-shadow:
    0 0 18px rgba(253, 209, 0, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.35);
  animation: lp-float 5.5s ease-in-out infinite;
  text-align: right;
  direction: rtl;
}

.lp-node-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-node-text {
  min-width: 0;
  flex: 1;
}

.lp-node::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.lp-node:nth-child(2) { top: 6%; right: 10%; animation-delay: 0s; }
.lp-node:nth-child(3) { top: 16%; left: 0; animation-delay: 0.5s; }
.lp-node:nth-child(4) { bottom: 12%; right: 2%; animation-delay: 1s; }
.lp-node:nth-child(5) { bottom: 6%; left: 10%; animation-delay: 1.5s; }

.lp-node strong {
  display: block;
  font-size: 0.84rem;
  margin-bottom: 0.3rem;
  color: #fff;
  line-height: 1.25;
}

.lp-node span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: #4ade80;
  font-weight: 700;
  background: rgba(74, 222, 128, 0.12);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
}

.lp-node span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

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

/* Sections */
.lp-section { padding: 2.8rem 0; }

.lp-section-head {
  text-align: center;
  margin-bottom: 1.6rem;
}

.lp-section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: #fff;
}

.lp-section-head h2 em {
  font-style: normal;
  color: #fdd100;
}

.lp-section-head p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 42ch;
  margin-inline: auto;
}

/* إطار مشترك لأقسام الخدمات */
.lp-services-frame,
.lp-digital {
  position: relative;
  margin-top: 0.35rem;
  padding: 1.75rem 1.35rem 1.55rem;
  border-radius: 32px;
  border: 1.5px solid rgba(253, 209, 0, 0.32);
  background:
    radial-gradient(720px 260px at 50% -10%, rgba(253, 209, 0, 0.12), transparent 58%),
    radial-gradient(520px 280px at 100% 100%, rgba(124, 58, 237, 0.16), transparent 55%),
    radial-gradient(420px 240px at 0% 80%, rgba(59, 130, 246, 0.1), transparent 50%),
    rgba(12, 4, 32, 0.78);
  box-shadow:
    0 0 0 1px rgba(253, 209, 0, 0.08),
    0 0 48px rgba(124, 58, 237, 0.16),
    0 22px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.lp-services-frame::before,
.lp-digital::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 0;
}

.lp-services-frame > *,
.lp-digital > * {
  position: relative;
  z-index: 1;
}

.lp-services-frame .lp-section-head {
  margin-bottom: 1.45rem;
}

.lp-services-frame .lp-section-head h2 {
  background: linear-gradient(105deg, #fff 8%, #fdd100 45%, #fff8c4 70%, #fdd100 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
  padding-bottom: 0.55rem;
}

.lp-services-frame .lp-section-head h2 em {
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-services-frame .lp-section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 3.4rem;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #fdd100, transparent);
  box-shadow: 0 0 14px rgba(253, 209, 0, 0.55);
}

.lp-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.lp-service {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  border-radius: 24px;
  padding: 0;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lp-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  color: #fff;
}

.lp-service:hover .lp-service-img {
  transform: scale(1.06);
}

.lp-service-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
  z-index: 0;
}

.lp-service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 28%,
    rgba(8, 2, 24, 0.55) 62%,
    rgba(8, 2, 24, 0.92) 100%
  );
  pointer-events: none;
}

.lp-service::after {
  content: "←";
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  font-size: 1rem;
  z-index: 2;
}

.lp-service-body {
  position: relative;
  z-index: 2;
  padding: 1.15rem 1.15rem 1.25rem;
  padding-left: 3.4rem;
}

.lp-service h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 0.3rem;
  max-width: 14ch;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.lp-service p {
  opacity: 0.92;
  font-size: 0.88rem;
  max-width: 16ch;
  margin: 0;
}

.lp-s1 { background: linear-gradient(145deg, #ff7a3d, #f15a24 55%, #d44512); }
.lp-s2 { background: linear-gradient(145deg, #3a245c, #2e1a47 60%, #1a0f2e); }
.lp-s3 { background: linear-gradient(145deg, #8b2be2, #6a0dad 55%, #4b0082); }
.lp-s4 { background: linear-gradient(145deg, #7c5cff, #5b3df5 50%, #3f2ad1); }

/* Steps */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.6rem;
  position: relative;
}

.lp-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 1.35rem 1.15rem;
  text-align: center;
}

.lp-step-num {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: #fdd100;
  color: #1a1200;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(253, 209, 0, 0.35);
}

.lp-step h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

.lp-step p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.lp-cta-band {
  text-align: center;
  padding: 2rem 1.4rem;
  border-radius: 24px;
  background:
    radial-gradient(500px 160px at 50% 0%, rgba(253, 209, 0, 0.12), transparent 60%),
    linear-gradient(135deg, #1a0a3a, #12062e 50%, #0d0221);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lp-cta-band h2 {
  font-size: 1.55rem;
  margin-bottom: 0.45rem;
}

.lp-cta-band p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.1rem;
}

/* Footer */
.lp-footer {
  margin-top: 2rem;
  padding: 2.6rem 0 1.4rem;
  background: #070114;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
}

.lp-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.lp-footer a:hover { color: #fdd100; }

.lp-footer-tag {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 1.35rem;
  margin-bottom: 1.5rem;
}

.lp-footer h4 {
  color: #fff;
  margin-bottom: 0.8rem;
  font-size: 0.98rem;
}

.lp-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.lp-pay-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.75rem;
  max-width: 340px;
}

.lp-pay {
  background: #fff;
  color: #1a1200;
  border-radius: 12px;
  padding: 0.45rem 0.5rem;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.lp-pay img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.lp-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 960px) {
  .lp-wrap {
    width: min(1140px, calc(100% - 1.25rem));
  }

  .lp-nav-inner {
    gap: 0.45rem;
    min-height: 64px;
  }

  .lp-brand {
    font-size: 1.1rem;
    gap: 0.45rem;
    min-width: 0;
  }

  .lp-brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 42vw;
  }

  .lp-brand img {
    width: 34px;
    height: 34px;
  }

  .lp-nav-actions {
    gap: 0.35rem;
    flex-shrink: 0;
  }

  /* الأزرار النصية بتقطع الشاشة على الموبايل */
  .lp-nav-actions .lp-btn-ghost,
  .lp-nav-actions .lp-btn-yellow {
    display: none;
  }

  .lp-hero,
  .lp-services,
  .lp-steps,
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    padding: 1.25rem 0 2rem;
    gap: 1.25rem;
  }

  .lp-hero h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.35;
  }

  .lp-hero p {
    font-size: 0.95rem;
  }

  .lp-hero-ctas {
    gap: 0.55rem;
  }

  .lp-hero-ctas .lp-btn {
    flex: 1 1 calc(50% - 0.35rem);
    justify-content: center;
    min-height: 46px;
    padding: 0.7rem 0.85rem;
    font-size: 0.9rem;
  }

  .lp-links { display: none; }

  .lp-links.is-open {
    display: flex;
    position: absolute;
    inset: 68px 0.75rem auto;
    background: #16082f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.75rem;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    z-index: 60;
  }

  .lp-links.is-open .lp-mobile-auth {
    display: block !important;
    margin-top: 0.25rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lp-links.is-open .lp-mobile-auth-primary {
    background: #fdd100 !important;
    color: #1a1200 !important;
    font-weight: 800;
    border: none;
  }

  .lp-links.is-open .lp-mobile-auth-primary::after {
    display: none;
  }

  .lp-menu-btn { display: grid; place-items: center; }

  .lp-visual {
    min-height: 300px;
    order: -1;
    width: 100%;
    overflow: visible;
  }

  .lp-orbit {
    width: min(100%, 320px);
  }

  .lp-orbit::before {
    inset: 22%;
  }

  .lp-core {
    width: 72px;
    height: 72px;
  }

  .lp-node {
    width: 118px;
    padding: 0.35rem 0.4rem;
    gap: 0.3rem;
    border-radius: 12px;
  }

  .lp-node-img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .lp-node strong {
    font-size: 0.68rem;
    margin-bottom: 0.15rem;
  }

  .lp-node span {
    font-size: 0.58rem;
    padding: 0.1rem 0.35rem;
  }

  .lp-node span::before {
    width: 6px;
    height: 6px;
  }

  .lp-node:nth-child(2) { top: 4%; right: 4%; }
  .lp-node:nth-child(3) { top: 14%; left: -2%; }
  .lp-node:nth-child(4) { bottom: 10%; right: -2%; }
  .lp-node:nth-child(5) { bottom: 4%; left: 4%; }

  .lp-services {
    gap: 0.75rem;
  }

  .lp-service {
    min-height: auto;
  }

  .lp-section {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  body.lp {
    overflow-x: hidden;
  }

  .lp-wrap {
    width: calc(100% - 1rem);
  }

  .lp-nav-inner {
    min-height: 58px;
  }

  .lp-profile {
    width: 36px;
    height: 36px;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
  }

  .lp-visual {
    min-height: 280px;
  }

  .lp-orbit {
    width: min(100%, 290px);
  }

  .lp-core {
    width: 64px;
    height: 64px;
    border-width: 2px;
    box-shadow:
      0 0 0 6px rgba(253, 209, 0, 0.1),
      0 0 28px rgba(107, 43, 255, 0.4);
  }

  /* كروت أصغر عشان متتقاطعش */
  .lp-node {
    width: 102px;
    padding: 0.3rem 0.35rem;
  }

  .lp-node-img {
    width: 24px;
    height: 24px;
  }

  .lp-node strong {
    font-size: 0.62rem;
  }

  .lp-node span {
    display: none; /* يخفف الزحمة على الشاشات الضيقة */
  }

  .lp-hero-ctas .lp-btn {
    flex: 1 1 100%;
  }

  .lp-cta-band {
    padding: 1.25rem;
  }
}

/* —— الخدمات الرقمية —— */
.lp-digital {
  margin-top: 0.5rem;
}

.lp-digital-head {
  text-align: center;
  margin-bottom: 1.35rem;
}

.lp-digital-head h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(105deg, #fff 10%, #fdd100 48%, #fff8c4 72%, #fdd100 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
  padding-bottom: 0.55rem;
}

.lp-digital-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 3.2rem;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #fdd100, transparent);
  box-shadow: 0 0 12px rgba(253, 209, 0, 0.55);
}

.lp-digital-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

/* بطاقات وشحن على اللاندنج */
.lp-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 0.85rem;
}
.lp-cat-card {
  --dig: #a78bfa;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 1rem 0.65rem 0.9rem;
  border-radius: 20px;
  border: 1.5px solid color-mix(in srgb, var(--dig) 70%, #fff 8%);
  background:
    radial-gradient(90px 70px at 50% 18%, color-mix(in srgb, var(--dig) 22%, transparent), transparent 70%),
    rgba(10, 4, 28, 0.94);
  box-shadow: 0 0 22px color-mix(in srgb, var(--dig) 22%, transparent), 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.lp-cat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(253, 209, 0, 0.55);
}
.lp-cat-card img,
.lp-cat-ico {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 0.55rem;
  background: rgba(255, 255, 255, 0.04);
}
.lp-cat-ico {
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  background: rgba(107, 43, 255, 0.28);
}
.lp-cat-card strong {
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}
.lp-cat-card span {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}
.lp-cards-more {
  text-align: center;
  margin: 1.1rem 0 0;
}

.lp-digital-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.lp-dcard {
  --dig: #a78bfa;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.35rem 0.9rem 1.05rem;
  border-radius: 22px;
  background:
    radial-gradient(120px 90px at 50% 18%, color-mix(in srgb, var(--dig) 22%, transparent), transparent 70%),
    rgba(10, 4, 28, 0.94);
  border: 1.5px solid color-mix(in srgb, var(--dig) 75%, #fff 10%);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--dig) 18%, transparent),
    0 0 28px color-mix(in srgb, var(--dig) 28%, transparent),
    0 14px 32px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  color: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  min-height: 340px;
  overflow: hidden;
}

.lp-dcard:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--dig) 35%, transparent),
    0 0 36px color-mix(in srgb, var(--dig) 42%, transparent),
    0 18px 40px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.lp-dcard.is-oos {
  opacity: 0.72;
  filter: grayscale(0.25);
}

.lp-dcard-logo {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  overflow: hidden;
  margin: 0.15rem 0 1rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 0 28px color-mix(in srgb, var(--dig) 55%, transparent),
    0 10px 24px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

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

.lp-dcard h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.lp-dcard .sub {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
}

.lp-dcard-price {
  font-weight: 800;
  color: #fdd100;
  font-size: 0.92rem;
  margin: 0 0 0.25rem;
}

.lp-dcard-stock {
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: #86efac;
}

.lp-dcard-stock.oos {
  color: #fca5a5;
}

.lp-dbadges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.lp-dbadge {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--dig) 16%, rgba(255, 255, 255, 0.04));
  color: color-mix(in srgb, var(--dig) 75%, #fff);
  border: 1px solid color-mix(in srgb, var(--dig) 35%, transparent);
}

.lp-dbadge.warr,
.lp-dbadge.inst {
  color: color-mix(in srgb, var(--dig) 70%, #fff);
  background: color-mix(in srgb, var(--dig) 16%, rgba(255, 255, 255, 0.04));
}

.lp-dcard-cta {
  margin-top: auto;
  width: 100%;
  border-radius: 14px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  border: 1.5px solid color-mix(in srgb, var(--dig) 85%, #fff);
  box-shadow: 0 0 18px color-mix(in srgb, var(--dig) 35%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: filter 0.15s ease, background 0.15s ease;
}

.lp-dcard-cta:hover {
  background: color-mix(in srgb, var(--dig) 18%, rgba(0, 0, 0, 0.2));
  color: #fff;
}

.lp-dcard-cta svg {
  width: 17px;
  height: 17px;
  stroke: var(--dig);
  fill: none;
  stroke-width: 1.8;
}

.lp-dcard.is-oos .lp-dcard-cta {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.lp-dcard.is-oos .lp-dcard-cta svg {
  stroke: rgba(255, 255, 255, 0.4);
}

.lp-digital-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-digital-foot span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 960px) {
  .lp-digital-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .lp-digital,
  .lp-services-frame {
    padding: 1.15rem 0.8rem 1.05rem;
    border-radius: 22px;
  }
  .lp-digital-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .lp-dcard {
    min-height: 300px;
    padding: 1.05rem 0.7rem 0.9rem;
  }
  .lp-dcard-logo {
    width: 92px;
    height: 92px;
    border-radius: 22px;
  }
}


