/* ============================================================
   نادي العقيق — الصفحة التعريفية
   assets/css/landing.css   (تُحمَّل بعد app.css)
   ============================================================
   ملف مستقل عن site.css عمداً: صفحات العضوة تستعمل site.css،
   وأي تغيير تجميلي هنا يجب ألا يمسّ شاشاتٍ تعمل فعلاً.

   ⚠️ كل حركة في هذا الملف مشروطة بـ prefers-reduced-motion.
      الحركة المستمرة ليست تفصيلاً تجميلياً لمن لديها حساسية
      دهليزية أو صداع نصفي — هي سبب لمغادرة الصفحة.
   ============================================================ */

.lp {
  --lp-ink: var(--ink-900);
  --lp-hero-1: #2A0A18;
  --lp-hero-2: #5E1638;
  --lp-hero-3: #9B2454;
  --lp-radius: 22px;
}

/* ============================================================
   الترويسة
   ============================================================ */
.lp-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.lp-head.is-stuck { border-bottom-color: var(--border); box-shadow: var(--sh-sm); }

.lp-head-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
}

.lp-logo { display: flex; align-items: center; gap: var(--sp-3); color: inherit; }
.lp-logo .mark {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--agate-700), var(--agate-500));
  color: #fff; font-weight: 800; font-size: 1.25rem;
  box-shadow: 0 6px 18px rgba(155, 36, 84, .32);
}
.lp-logo .n { display: block; font-weight: 800; line-height: 1.2; }
.lp-logo .s { display: block; font-size: .76rem; color: var(--text-mute); }

.lp-nav { display: flex; align-items: center; gap: var(--sp-2); }
.lp-nav a.lnk {
  padding: 8px 12px;
  border-radius: var(--r-full);
  color: var(--text-soft);
  font-size: .94rem;
  font-weight: 500;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lp-nav a.lnk:hover { background: var(--agate-50); color: var(--agate-700); }

.lp-burger { display: none; }

@media (max-width: 900px) {
  .lp-burger { display: inline-flex; }
  .lp-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-1);
    padding: var(--sp-4);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-md);
    display: none;
  }
  .lp-nav.is-open { display: flex; }
  .lp-nav a.lnk { padding: 12px; }
}

/* ============================================================
   البطل
   ============================================================ */
.lp-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(115% 115% at 88% 6%, rgba(233, 149, 178, .20) 0%, transparent 58%),
    linear-gradient(155deg, var(--lp-hero-1) 0%, var(--lp-hero-2) 52%, var(--lp-hero-3) 100%);
  padding: clamp(48px, 4vw + 32px, 96px) 0 clamp(56px, 5vw + 32px, 110px);
}

/* هالات ضوئية ناعمة — لا صور، فلا تحميل إضافي */
.lp-hero::before,
.lp-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.lp-hero::before {
  width: 460px; height: 460px;
  background: rgba(201, 164, 107, .17);
  inset-block-start: -160px; inset-inline-start: -140px;
  animation: lpFloat 17s ease-in-out infinite;
}
.lp-hero::after {
  width: 380px; height: 380px;
  background: rgba(233, 149, 178, .26);
  inset-block-end: -150px; inset-inline-end: -90px;
  animation: lpFloat 21s ease-in-out infinite reverse;
}

@keyframes lpFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(26px, -22px, 0) scale(1.09); }
}

.lp-hero-in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 940px) { .lp-hero-in { grid-template-columns: 1fr; } }

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .24);
  font-size: .86rem; font-weight: 600;
  backdrop-filter: blur(6px);
}

.lp-hero h1 {
  font-size: clamp(2rem, 1.1rem + 3.6vw, 3.55rem);
  line-height: 1.16;
  margin: var(--sp-4) 0 var(--sp-4);
  letter-spacing: -.02em;
  max-width: 15ch;              /* يمنع سطراً يتيماً بكلمة واحدة */
  text-wrap: balance;
}
.lp-hero h1 .grad {
  background: linear-gradient(100deg, var(--gold-400), #fff 45%, var(--agate-200));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lp-hero-lead {
  font-size: clamp(1rem, .95rem + .35vw, 1.2rem);
  color: rgba(255, 255, 255, .88);
  max-width: 56ch;
  margin-bottom: var(--sp-5);
}

.lp-cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.lp-trust {
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  margin-top: var(--sp-6);
  font-size: .9rem; color: rgba(255, 255, 255, .78);
}
.lp-trust span { display: inline-flex; align-items: center; gap: 7px; }

/* بطاقة زجاجية */
.lp-glass {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: var(--lp-radius);
  padding: var(--sp-5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
}
.lp-glass h3 { color: #fff; }

.lp-hours { display: grid; gap: 10px; }
.lp-hours .r {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  font-size: .92rem;
}
.lp-hours .r b { font-weight: 700; }

.lp-live {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--r-full);
  background: rgba(23, 166, 115, .22);
  border: 1px solid rgba(23, 166, 115, .45);
  font-size: .84rem;
}
.lp-live i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; display: inline-block;
  animation: lpPulse 1.9s ease-in-out infinite;
}
@keyframes lpPulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* ============================================================
   شريط الأرقام
   ============================================================ */
.lp-strip {
  position: relative;
  z-index: 3;
  margin-top: -38px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.lp-strip .it { background: var(--surface); padding: var(--sp-5) var(--sp-4); text-align: center; }
.lp-strip .v {
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.2rem);
  font-weight: 800; line-height: 1.1;
  color: var(--agate-700);
}
.lp-strip .k { font-size: .84rem; color: var(--text-mute); margin-top: 4px; }

/* ============================================================
   الأقسام
   ============================================================ */
.lp-sec { padding: clamp(52px, 5vw + 26px, 96px) 0; }
.lp-sec.alt { background: var(--surface-2); }

.lp-head-c { text-align: center; max-width: 720px; margin: 0 auto var(--sp-6); }
.lp-kicker {
  display: inline-block;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  color: var(--agate-600);
  background: var(--agate-50);
  border: 1px solid var(--agate-100);
  padding: 5px 14px; border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}
.lp-head-c h2 { margin-bottom: var(--sp-3); }
.lp-head-c p { color: var(--text-soft); margin-bottom: 0; }

.lp-grid { display: grid; gap: var(--sp-4); }
/* ⚠️ `display:grid` يتغلّب على القاعدة الافتراضية لـ [hidden]، فتظهر
   كل أيام الأسبوع معاً بدل يوم واحد. التصريح هنا يعيد إخفاءها. */
.lp-day-panel[hidden] { display: none; }
.lp-grid.c2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
/* صفّان داخل النموذج: عمود النموذج أضيق من 580px فلا يتّسع لـ c2 */
.lp-grid.c2s { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.lp-grid.c3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.lp-grid.c4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* بطاقة ميزة */
.lp-feat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--lp-radius);
  padding: var(--sp-5);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.lp-feat:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--agate-200); }
.lp-feat .ic {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: linear-gradient(140deg, var(--agate-50), var(--agate-100));
  font-size: 1.5rem;
  margin-bottom: var(--sp-3);
}
.lp-feat h3 { font-size: 1.08rem; margin-bottom: 6px; }
.lp-feat p { color: var(--text-soft); font-size: .94rem; margin-bottom: 0; }

/* ============================================================
   الباقات
   ============================================================ */
.lp-plans { display: grid; gap: var(--sp-4); grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); align-items: stretch; }

.lp-plan {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--lp-radius);
  padding: var(--sp-5);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.lp-plan:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.lp-plan.is-hot { border-color: var(--agate-500); box-shadow: 0 12px 40px rgba(155, 36, 84, .16); }

.lp-plan .badge-hot {
  position: absolute; inset-block-start: -13px; inset-inline-start: 50%;
  transform: translateX(50%);
  padding: 5px 16px; border-radius: var(--r-full);
  background: linear-gradient(120deg, var(--agate-600), var(--agate-500));
  color: #fff; font-size: .76rem; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(155, 36, 84, .34);
}
.lp-plan h3 { font-size: 1.2rem; margin-bottom: 4px; }
.lp-plan .tag { color: var(--text-mute); font-size: .88rem; min-height: 2.6em; }

.lp-price { display: flex; align-items: baseline; gap: 8px; margin: var(--sp-4) 0; }
.lp-price .n { font-size: 2.4rem; font-weight: 800; line-height: 1; color: var(--agate-700); }
.lp-price .c { font-size: .95rem; color: var(--text-mute); }
.lp-price .ask { font-size: 1.3rem; font-weight: 700; color: var(--agate-700); }

.lp-plan ul { list-style: none; padding: 0; margin: 0 0 var(--sp-5); display: grid; gap: 10px; }
.lp-plan li { display: flex; align-items: flex-start; gap: 9px; font-size: .93rem; color: var(--text-soft); }
.lp-plan li::before {
  content: "✓";
  flex: none;
  width: 20px; height: 20px; margin-top: 1px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ok-100); color: var(--ok-600);
  font-size: .72rem; font-weight: 800;
}
.lp-plan .foot { margin-top: auto; }

.lp-meta {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: var(--sp-4);
}
.lp-meta span {
  font-size: .74rem; padding: 3px 9px; border-radius: var(--r-full);
  background: var(--surface-2); color: var(--text-mute); border: 1px solid var(--border);
}

/* ============================================================
   جدول الحصص
   ============================================================ */
.lp-days { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: var(--sp-5); }
.lp-day {
  padding: 9px 18px; border-radius: var(--r-full);
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text-soft); font-weight: 600; font-size: .92rem;
  cursor: pointer;
  transition: all .22s var(--ease);
}
.lp-day:hover { border-color: var(--agate-300); color: var(--agate-700); }
.lp-day.is-on {
  background: var(--agate-700); border-color: var(--agate-700); color: #fff;
  box-shadow: 0 6px 18px rgba(122, 28, 70, .26);
}

.lp-slot {
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-4);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  transition: border-color .22s var(--ease), transform .22s var(--ease);
}
.lp-slot:hover { border-color: var(--agate-300); transform: translateX(-4px); }
.lp-slot .t {
  flex: none; min-width: 72px; text-align: center;
  font-weight: 800; font-size: 1.02rem; color: var(--agate-700);
}
.lp-slot .b { flex: 1; }
.lp-slot .b b { display: block; }
.lp-slot .b span { font-size: .86rem; color: var(--text-mute); }
.lp-slot .lvl {
  flex: none; font-size: .74rem; padding: 3px 10px;
  border-radius: var(--r-full); background: var(--agate-50); color: var(--agate-700);
}

/* ============================================================
   المدرّبات
   ============================================================ */
.lp-coach {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--lp-radius);
  padding: var(--sp-5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.lp-coach:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.lp-coach .av {
  width: 84px; height: 84px; margin: 0 auto var(--sp-3);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.9rem; font-weight: 800; color: #fff;
  background: linear-gradient(140deg, var(--agate-600), var(--agate-400));
  box-shadow: 0 8px 22px rgba(155, 36, 84, .28);
}
.lp-coach h3 { font-size: 1.05rem; margin-bottom: 2px; }
.lp-coach .job { font-size: .86rem; color: var(--agate-600); margin-bottom: var(--sp-3); }
.lp-coach .bio { font-size: .89rem; color: var(--text-soft); margin-bottom: 0; }
.lp-coach .tags { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; margin-top: var(--sp-3); }
.lp-coach .tags span {
  font-size: .72rem; padding: 3px 9px; border-radius: var(--r-full);
  background: var(--surface-2); color: var(--text-mute);
}

/* ============================================================
   الخطوات
   ============================================================ */
.lp-steps { display: grid; gap: var(--sp-4); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: st; }
.lp-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--lp-radius);
  padding: var(--sp-5);
  counter-increment: st;
}
.lp-step::before {
  content: counter(st);
  position: absolute; inset-block-start: -16px; inset-inline-start: var(--sp-5);
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--agate-700), var(--agate-500));
  color: #fff; font-weight: 800;
  box-shadow: 0 6px 16px rgba(122, 28, 70, .3);
}
.lp-step h3 { font-size: 1.02rem; margin: var(--sp-3) 0 6px; }
.lp-step p { font-size: .92rem; color: var(--text-soft); margin-bottom: 0; }

/* ============================================================
   الشهادات
   ============================================================ */
.lp-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--lp-radius);
  padding: var(--sp-5);
  position: relative;
}
.lp-quote::before {
  content: "”";
  position: absolute; inset-block-start: 4px; inset-inline-end: 18px;
  font-size: 3.6rem; line-height: 1; color: var(--agate-100);
  font-family: Georgia, serif;
}
.lp-quote .stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: var(--sp-3); }
.lp-quote p { font-size: .96rem; color: var(--text-soft); }
.lp-quote .who { font-weight: 700; font-size: .92rem; }
.lp-quote .role { font-size: .82rem; color: var(--text-mute); }

/* ============================================================
   الأسئلة
   ============================================================ */
.lp-faq {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  margin-bottom: 10px;
  overflow: hidden;
}
.lp-faq summary {
  cursor: pointer; list-style: none;
  padding: var(--sp-4) var(--sp-5);
  font-weight: 600;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+";
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--agate-50); color: var(--agate-700);
  font-weight: 800;
  transition: transform .25s var(--ease);
}
.lp-faq[open] summary::after { content: "−"; transform: rotate(180deg); }
.lp-faq .bd { padding: 0 var(--sp-5) var(--sp-4); color: var(--text-soft); font-size: .94rem; }

/* ============================================================
   نموذج الاهتمام
   ============================================================ */
.lp-join {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 0;
  border-radius: var(--lp-radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
  background: var(--surface);
}
@media (max-width: 880px) { .lp-join { grid-template-columns: 1fr; } }

.lp-join .side {
  padding: clamp(28px, 3vw, 46px);
  color: #fff;
  background:
    radial-gradient(100% 100% at 90% 10%, rgba(201, 164, 107, .22), transparent 60%),
    linear-gradient(160deg, var(--lp-hero-2), var(--lp-hero-3));
}
.lp-join .side h2 { color: #fff; }
.lp-join .side p { color: rgba(255, 255, 255, .85); }
.lp-join .side ul { list-style: none; padding: 0; margin: var(--sp-5) 0 0; display: grid; gap: 12px; }
.lp-join .side li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: rgba(255,255,255,.92); }

.lp-join .form { padding: clamp(28px, 3vw, 46px); }

.lp-hp {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}

/* ============================================================
   التذييل
   ============================================================ */
.lp-foot {
  background: var(--lp-hero-1);
  color: rgba(255, 255, 255, .72);
  padding: var(--sp-7) 0 var(--sp-5);
}
.lp-foot h4 { color: #fff; font-size: 1rem; margin-bottom: var(--sp-3); }
.lp-foot a { display: block; color: rgba(255, 255, 255, .72); padding: 4px 0; font-size: .92rem; }
.lp-foot a:hover { color: var(--gold-400); }
.lp-foot-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.lp-foot-btm {
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
  justify-content: space-between;
  font-size: .85rem;
}

/* زر واتساب عائم */
.lp-wa {
  position: fixed;
  inset-block-end: 20px; inset-inline-start: 20px;
  z-index: 70;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .42);
  transition: transform .25s var(--ease);
}
.lp-wa:hover { transform: scale(1.09); color: #fff; }

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

/* ⚠️ لا حركة لمن طلبت تقليلها — الشرط يشمل الهالات والظهور معاً */
@media (prefers-reduced-motion: reduce) {
  .lp-hero::before, .lp-hero::after { animation: none; }
  .lp-live i { animation: none; }
  .lp-reveal { opacity: 1; transform: none; transition: none; }
  .lp-feat:hover, .lp-plan:hover, .lp-coach:hover, .lp-slot:hover, .lp-wa:hover { transform: none; }
}

/* الطباعة: بلا خلفيات داكنة تبتلع الحبر */
@media print {
  .lp-head, .lp-wa, .lp-join, .lp-days { display: none !important; }
  .lp-hero { background: none !important; color: #000 !important; }
}
