/* iTask — shared landing shell (nav, footer, assistant FAB) */
body.lp-landing {
  font-family: "Vazirmatn", "Tahoma", sans-serif;
  background: #0a0a1a;
  color: #f1f5f9;
  overflow-x: hidden;
  margin: 0;
}

.lp-landing-main {
  padding-top: 5.25rem;
  min-height: 50vh;
}

/* ─── NAV (match home) ─── */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 26, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, border-color 0.3s;
}
.lp-nav.scrolled {
  background: rgba(10, 10, 26, 0.96);
  border-bottom-color: rgba(99, 102, 241, 0.22);
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
}
.lp-brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #6366f1, #7c3aed);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
  margin-left: 2rem;
}
[dir="rtl"] .lp-nav-links {
  margin-right: 2rem;
  margin-left: auto;
}
.lp-nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.18s, background 0.18s;
}
.lp-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.lp-nav-link.lp-nav-active {
  color: #fff;
  background: rgba(99, 102, 241, 0.28);
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.35);
}
.lp-nav-cta {
  background: linear-gradient(135deg, #6366f1, #7c3aed);
  color: #fff !important;
  padding: 0.45rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.lp-nav-cta:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.45);
  color: #fff;
}
@media (max-width: 768px) {
  .lp-nav-links {
    display: none;
  }
}

/* ─── FOOTER ─── */
.lp-footer {
  background: #06060f;
  padding: 3.5rem 2rem 2rem;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(99, 102, 241, 0.12);
  margin-top: 0;
}
.lp-footer-tagline {
  text-align: center;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 45%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.lp-footer-tagline-sub {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.lp-footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-footer-h {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}
.lp-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-footer ul li {
  margin-bottom: 0.55rem;
}
.lp-footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.15s;
}
.lp-footer a:hover {
  color: #a5b4fc;
}
.lp-footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  margin: 2.25rem 0 1.5rem;
}
.lp-footer-badge {
  min-width: 100px;
  max-width: 140px;
  min-height: 88px;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: border-color 0.2s, transform 0.2s;
}
.lp-footer-badge:hover {
  border-color: rgba(129, 140, 248, 0.45);
  transform: translateY(-2px);
}
.lp-footer-badge .lp-fb-ico {
  font-size: 1.35rem;
  opacity: 0.9;
}
.lp-footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 2rem 0 1.25rem;
}
.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ─── Assistant FAB ─── */
.lp-assistant-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(4px);
  z-index: 10040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s, visibility 0.28s;
}
.lp-assistant-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.lp-assistant-fab {
  position: fixed;
  left: 1.15rem;
  bottom: 1.15rem;
  right: auto;
  z-index: 10050;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #6366f1, #7c3aed 55%, #a21caf);
  box-shadow: 0 10px 36px rgba(99, 102, 241, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-assistant-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 44px rgba(124, 58, 237, 0.55);
}
.lp-assistant-fab:focus-visible {
  outline: 2px solid #a5b4fc;
  outline-offset: 3px;
}
.lp-assistant-fab svg {
  width: 28px;
  height: 28px;
  display: block;
}
@keyframes lp-assist-wiggle {
  0%,
  88%,
  100% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(-8deg);
  }
  92% {
    transform: rotate(8deg);
  }
  94% {
    transform: rotate(-5deg);
  }
  96% {
    transform: rotate(5deg);
  }
}
.lp-assistant-fab .lp-assist-icon-wrap {
  animation: lp-assist-wiggle 5s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-assistant-panel {
  position: fixed;
  left: 1rem;
  right: auto;
  bottom: 5.5rem;
  z-index: 10055;
  width: min(400px, calc(100vw - 2rem));
  max-height: min(78vh, 560px);
  overflow-y: auto;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(30, 27, 75, 0.98), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(129, 140, 248, 0.35);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  padding: 1.35rem 1.35rem 1.15rem;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.28s, visibility 0.28s;
}
.lp-assistant-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lp-assistant-panel h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lp-assistant-panel .lp-ap-badge {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.2);
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.35);
}
.lp-assistant-panel p {
  margin: 0 0 0.85rem;
  font-size: 0.84rem;
  line-height: 1.85;
  color: rgba(226, 232, 240, 0.88);
}
.lp-assistant-panel .lp-ap-highlight {
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  color: #e0e7ff;
  line-height: 1.75;
}
.lp-assistant-panel .lp-ap-steps {
  margin: 0 0 0.85rem;
  padding: 0 1rem 0 0;
  font-size: 0.8rem;
  color: rgba(203, 213, 225, 0.95);
  line-height: 1.75;
}
.lp-assistant-panel .lp-ap-steps li {
  margin-bottom: 0.35rem;
}
.lp-assistant-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  left: auto;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.15s;
}
.lp-assistant-close:hover {
  background: rgba(255, 255, 255, 0.16);
}
.lp-assistant-panel .lp-ap-cta {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff !important;
  margin-top: 0.25rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.lp-assistant-panel .lp-ap-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45);
  color: #fff;
}

/* Inner content cards on dark landing */
.lp-glass-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}
.lp-glass-card h1,
.lp-glass-card h2 {
  color: #f8fafc;
}
.lp-glass-card .text-muted {
  color: rgba(203, 213, 225, 0.75) !important;
}
.lp-glass-card a {
  color: #a5b4fc;
}
