/* ─── §5  Hero ─────────────────────────────────────────────────────────── */

.lp-hero {
  position: relative;
  padding: 64px 0 80px;
  z-index: 1;
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .lp-hero { padding: 36px 0 56px; }
  .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Hero pill / eyebrow */
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--hairline-2);
  border-radius: 999px;
  background: var(--surface-1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 24px;
  animation: lpFadeUp 0.7s var(--ease-soft) 0.1s both;
}
.lp-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  animation: lpPulseDot 2.4s ease-in-out infinite;
}
@keyframes lpPulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}

.lp-h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 900;
  margin-bottom: 14px;
  animation: lpFadeUp 0.8s var(--ease-soft) 0.18s both;
}
.lp-h1 .lp-h1-mark {
  background: linear-gradient(180deg, var(--text-1), color-mix(in oklab, var(--text-1) 50%, var(--primary)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.lp-h1 .lp-h1-accent {
  position: relative;
  background: linear-gradient(135deg, var(--primary-hi), var(--primary), var(--primary-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.lp-h1 .lp-h1-accent::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 99px;
  box-shadow: 0 0 14px var(--primary);
  opacity: 0.7;
  transform-origin: center;
  animation: lpUnderlineGrow 1.4s var(--ease-soft) 1s both;
}
@keyframes lpUnderlineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 0.7; }
}

.lp-tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--text-2);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  animation: lpFadeUp 0.8s var(--ease-soft) 0.26s both;
}
.lp-desc {
  font-size: 1rem;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
  animation: lpFadeUp 0.8s var(--ease-soft) 0.34s both;
}

/* CTA group */
.lp-cta-group {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
  animation: lpFadeUp 0.8s var(--ease-soft) 0.42s both;
}
.lp-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px;
  padding: 0 28px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.2s ease,
    filter 0.18s ease;
  isolation: isolate;
  overflow: hidden;
}
.lp-btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 var(--halo);
  pointer-events: none;
  transition: box-shadow 0.4s var(--ease);
  z-index: -1;
}
.lp-btn:hover { transform: translateY(-2px); filter: brightness(1.04); }
.lp-btn:hover::after { box-shadow: 0 0 0 6px color-mix(in oklab, var(--primary) 16%, transparent); }
.lp-btn:active { transform: translateY(0) scale(0.98); }

/* Primary (مضيء) */
.lp-btn-primary {
  background: linear-gradient(180deg,
    color-mix(in oklab, white 14%, var(--primary)) 0%,
    var(--primary) 55%,
    var(--primary-deep) 100%);
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -2px 0 rgba(0,0,0,0.10),
    0 14px 36px -10px var(--halo);
}
.lp-btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
  transform: skewX(-22deg);
  transition: left 0.7s var(--ease);
}
.lp-btn-primary:hover::before { left: 130%; }

/* Secondary (زجاجي) */
.lp-btn-ghost {
  background: var(--surface-1);
  color: var(--text-1);
  border: 1px solid var(--hairline-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lp-btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--primary);
}

.lp-btn .lp-btn-arrow {
  width: 18px; height: 18px;
  transition: transform 0.2s var(--ease);
}
.lp-btn:hover .lp-btn-arrow { transform: translateX(-3px); }

/* Trust keywords strip (NO numbers, NO universities — just topics) */
.lp-trust {
  display: flex; flex-wrap: wrap; gap: 8px;
  animation: lpFadeUp 0.8s var(--ease-soft) 0.5s both;
}
.lp-trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
}
.lp-trust-chip i {
  color: var(--primary);
  font-size: 0.78rem;
}


