:root {
  --bg: #08080f;
  --bg2: #0d0d1a;
  --bg3: #12121f;
  --sf: #16162a;
  --bd: rgba(255, 255, 255, 0.07);
  --bd2: rgba(255, 255, 255, 0.13);
  --tx: #f0f0ff;
  --tx2: #a8a8c8;
  --tx3: #6b6b8a;
  --pur: #8b5cf6;
  --blu: #3b82f6;
  --grad: linear-gradient(135deg, #8b5cf6, #3b82f6);
  --nav: 68px;
  --dsb: 240px;
  --navy: #1A1A3E;
  --indigo: #3B4BC8;
  --violet: #7B2FBE;
  --purple: #A855F7;
  --lilac: #C4B5FD;
  --void: #0F0C29;
  --fa: 'Vazirmatn', sans-serif;
  --en: 'Inter', sans-serif;
}

/* HERO HEADER */
#nb,
#mobMenu,
#hoor-hero {
  font-family: var(--fa);
  direction: rtl;
}
#nb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s;
}
#nb.scrolled {
  background: rgba(10, 8, 28, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}
.inner-page #landing {
  padding-top: var(--nav);
}
.nav-menu-open {
  overflow: hidden;
}
.nb-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 36px;
  direction: rtl;
}
.nb-logo img {
  height: 38px;
  filter: brightness(0) invert(1);
  display: block;
}
.nb-links {
  display: flex;
  flex-direction: row;
  direction: rtl;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nb-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(196, 181, 253, 0.72);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nb-links a:hover {
  color: #fff;
  background: rgba(139, 92, 246, 0.1);
}
.nb-links a[aria-current="page"] {
  color: #fff;
  background: rgba(139, 92, 246, 0.14);
}
.nb-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nb-btn-ghost {
  font-family: var(--fa);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--lilac);
  background: transparent;
  border: 1.5px solid rgba(139, 92, 246, 0.3);
  padding: 9px 20px;
  border-radius: 11px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}
.nb-btn-ghost:hover {
  color: #fff;
  border-color: var(--purple);
  background: rgba(139, 92, 246, 0.08);
}
.nb-btn-solid {
  font-family: var(--fa);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 11px;
  background: linear-gradient(135deg, #3B4BC8, #7B2FBE);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(123, 47, 190, 0.38);
  transition: 0.2s;
}
.nb-btn-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 28px rgba(123, 47, 200, 0.55);
  color: #fff;
}
.nb-tog {
  display: none;
  background: rgba(139, 92, 246, 0.1);
  border: 1.5px solid rgba(139, 92, 246, 0.25);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--lilac);
}
#mobMenu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 22, 0.97);
  backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
#mobMenu.open {
  display: flex;
}
#mobMenu a {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(196, 181, 253, 0.85);
  text-decoration: none;
}
.mob-x {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(139, 92, 246, 0.12);
  border: 1.5px solid rgba(139, 92, 246, 0.25);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--lilac);
}
.mob-primary-action {
  margin-top: 12px;
}

#hoor-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 80px;
  background: var(--void);
  color: #f1f0ff;
}
.h-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(59, 75, 200, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 75, 200, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 0%, transparent 75%);
}
#pc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.h-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hg1 {
  width: 980px;
  height: 820px;
  top: -270px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(123, 47, 190, 0.14) 0%, transparent 65%);
}
.hg2 {
  width: 680px;
  height: 380px;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(59, 75, 200, 0.12) 0%, transparent 65%);
}
.h-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1320px;
}
.logo-motion-wrap {
  position: relative;
  width: 560px;
  height: 325px;
  margin-bottom: 10px;
  flex-shrink: 0;
}
#circuitSvg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.logo-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img-wrap img {
  width: 400px;
  height: auto;
  filter: brightness(0) invert(1);
  animation: logoBreath 4s ease-in-out infinite;
  position: relative;
  z-index: 3;
}
.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%;
  left: 50%;
}
.lr1 {
  width: 500px;
  height: 290px;
  border-color: rgba(168, 85, 247, 0.2);
  transform: translate(-50%, -50%);
  animation: ringSpin1 18s linear infinite;
}
.lr2 {
  width: 610px;
  height: 350px;
  border-color: rgba(59, 75, 200, 0.12);
  transform: translate(-50%, -50%);
  animation: ringSpin2 26s linear infinite reverse;
}
.orb {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
}
.orb1 {
  --orbit-distance: 205px;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: #A855F7;
  box-shadow: 0 0 12px #A855F7;
  animation: orbit1 18s linear infinite;
}
.orb2 {
  --orbit-distance: 250px;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: #60a5fa;
  box-shadow: 0 0 10px #60a5fa;
  animation: orbit2 26s linear infinite reverse;
}
.orb3 {
  --orbit-distance: 160px;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: orbit3 13s linear infinite;
}
.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lilac);
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
  animation: dotPulse 2s ease-in-out infinite;
}
.h-title {
  width: 100%;
  font-size: clamp(1.75rem, 3.2vw, 3.2rem);
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  white-space: nowrap;
  animation: fadeUp 0.8s ease 0.25s both;
}
.h-title .g {
  background: linear-gradient(135deg, #A855F7 0%, #3B4BC8 55%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h-sub {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  line-height: 1.85;
  color: rgba(196, 181, 253, 0.58);
  max-width: 540px;
  margin: 0 auto 36px;
  font-weight: 400;
  animation: fadeUp 0.8s ease 0.35s both;
}
.h-sub .en {
  font-family: var(--en);
  direction: ltr;
  display: inline-block;
}
.search-wrap {
  width: 100%;
  max-width: 820px;
  margin: 0 auto 28px;
  animation: fadeUp 0.8s ease 0.45s both;
  position: relative;
}
.search-bar {
  display: flex;
  align-items: center;
  background: rgba(26, 26, 62, 0.6);
  border: 1.5px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  padding: 5px;
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(123, 47, 190, 0.08);
  transition: border-color 0.3s, box-shadow 0.3s;
  gap: 10px;
}
.search-bar:focus-within {
  border-color: rgba(168, 85, 247, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 4px rgba(139, 92, 246, 0.12),
    0 0 100px rgba(123, 47, 190, 0.12);
}
.search-icon {
  color: rgba(168, 85, 247, 0.6);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: color 0.3s;
}
.search-bar:focus-within .search-icon {
  color: var(--purple);
}
.search-input-wrap {
  flex: 1;
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
}
#searchInput {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--fa);
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
  caret-color: var(--purple);
  padding: 0;
  padding-inline-start: 18px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
#searchInput::placeholder {
  color: transparent;
}
.ph-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.ph-text {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(196, 181, 253, 0.38);
  white-space: nowrap;
  transition: opacity 0.35s, transform 0.35s;
  position: absolute;
  inset-inline-start: 18px;
}
.ph-text.ph-out {
  opacity: 0;
  transform: translateY(-14px);
}
.ph-text.ph-in {
  opacity: 1;
  transform: translateY(0);
}
.ph-text.ph-hidden {
  opacity: 0;
  transform: translateY(14px);
}
.search-submit {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fa);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3B4BC8, #7B2FBE);
  border: none;
  padding: 13px 26px;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(123, 47, 190, 0.4);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.search-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 26px rgba(123, 47, 190, 0.56);
}
.quick-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.55s both;
}
.qt-label {
  font-size: 0.75rem;
  color: rgba(196, 181, 253, 0.4);
  font-weight: 400;
}
.qt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(196, 181, 253, 0.65);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.qt:hover {
  color: #fff;
  border-color: rgba(168, 85, 247, 0.45);
  background: rgba(139, 92, 246, 0.14);
}
.qt i {
  font-size: 0.65rem;
  color: var(--purple);
  opacity: 0.7;
}
.h-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
  animation: fadeUp 0.8s ease 0.65s both;
}
.hoor-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fa);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3B4BC8, #7B2FBE);
  border: none;
  padding: 15px 32px;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(123, 47, 190, 0.42);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.hoor-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-15deg);
  transition: left 0.5s;
}
.hoor-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 38px rgba(123, 47, 190, 0.56);
  color: #fff;
}
.hoor-btn-primary:hover::before {
  left: 140%;
}
.hoor-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fa);
  font-size: 1rem;
  font-weight: 600;
  color: var(--lilac);
  background: transparent;
  border: 1.5px solid rgba(139, 92, 246, 0.32);
  padding: 14px 28px;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}
.hoor-btn-outline:hover {
  border-color: var(--purple);
  color: #fff;
  background: rgba(139, 92, 246, 0.08);
  transform: translateY(-1px);
}
.h-stats {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 18px;
  background: rgba(26, 26, 62, 0.28);
  backdrop-filter: blur(12px);
  overflow: hidden;
  animation: fadeUp 0.8s ease 0.75s both;
}
.hoor-stat {
  padding: 18px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  position: relative;
}
.hoor-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  bottom: 20%;
  right: 0;
  width: 1px;
  background: rgba(139, 92, 246, 0.16);
}
.hoor-stat-number {
  font-size: 1.7rem;
  font-weight: 900;
  background: linear-gradient(135deg, #A855F7, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.hoor-stat-label {
  font-size: 0.72rem;
  color: rgba(196, 181, 253, 0.48);
  font-weight: 400;
  white-space: nowrap;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes logoBreath {
  0%, 100% { transform: scale(1); filter: brightness(0) invert(1) drop-shadow(0 0 0 transparent); }
  50% { transform: scale(1.03); filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(168, 85, 247, 0.5)); }
}
@keyframes ringSpin1 { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes ringSpin2 { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbit1 {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(var(--orbit-distance)) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(var(--orbit-distance)) rotate(-360deg); }
}
@keyframes orbit2 {
  from { transform: translate(-50%, -50%) rotate(60deg) translateX(var(--orbit-distance)) rotate(-60deg); }
  to { transform: translate(-50%, -50%) rotate(420deg) translateX(var(--orbit-distance)) rotate(-420deg); }
}
@keyframes orbit3 {
  from { transform: translate(-50%, -50%) rotate(180deg) translateX(var(--orbit-distance)) rotate(-180deg); }
  to { transform: translate(-50%, -50%) rotate(540deg) translateX(var(--orbit-distance)) rotate(-540deg); }
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
@keyframes dashFlow {
  to { stroke-dashoffset: -200; }
}
@keyframes nodeGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@media (max-width: 768px) {
  .logo-motion-wrap { width: 320px; height: 190px; }
  .logo-img-wrap img { width: 240px; }
  .lr1 { width: 290px; height: 165px; }
  .lr2 { width: 350px; height: 200px; }
  .orb1 { --orbit-distance: 118px; }
  .orb2 { --orbit-distance: 145px; }
  .orb3 { --orbit-distance: 92px; }
  .h-title {
    font-size: clamp(1.75rem, 7.6vw, 2.35rem);
    white-space: normal;
    text-wrap: balance;
  }
  .search-bar { border-radius: 100px; padding: 4px; }
  #searchInput {
    padding-inline-start: 14px;
    font-size: 0.95rem;
  }
  .ph-text { inset-inline-start: 14px; }
  .search-submit { padding: 12px 16px; font-size: 0.82rem; }
  .hoor-stat { padding: 14px 20px; }
  .hoor-stat-number { font-size: 1.35rem; }
  .nb-links, .nb-actions { display: none; }
  .nb-tog { display: flex; }
  .h-btns { gap: 10px; }
  .hoor-btn-primary, .hoor-btn-outline { padding: 12px 22px; font-size: 0.9rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
.lm {
  --bg: #fafafe;
  --bg2: #f0f0ff;
  --bg3: #e8e8ff;
  --sf: #fff;
  --bd: rgba(99, 71, 246, 0.1);
  --bd2: rgba(99, 71, 246, 0.2);
  --tx: #0f0f1a;
  --tx2: #3d3d5c;
  --tx3: #7878a0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--tx);
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}
a {
  text-decoration: none;
  color: inherit;
}
.gt {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.slbl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pur);
  margin-bottom: 14px;
}
.slbl::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--grad);
}
.stitle {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.ssub {
  font-size: 1rem;
  color: var(--tx2);
  max-width: 560px;
}
.aur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.aur-a {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.22),
    transparent 70%
  );
}
.aur-b {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.18),
    transparent 70%
  );
}
.gc {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 18px;
  transition: 0.3s;
}
.gc:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
}
.bgrd {
  background: var(--grad);
  border: none;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  border-radius: 12px;
  transition: 0.25s;
  cursor: pointer;
}
.bgrd:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
  color: #fff;
}
.boc {
  background: transparent;
  border: 1px solid var(--bd2);
  color: var(--tx);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  border-radius: 12px;
  transition: 0.25s;
  cursor: pointer;
}
.boc:hover {
  border-color: var(--pur);
  background: rgba(139, 92, 246, 0.08);
  color: var(--tx);
}
.rv {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s, transform 0.65s;
}
.rv-ready .rv {
  opacity: 1;
  transform: translateY(26px);
}
.rv-ready .rv.in {
  opacity: 1;
  transform: none;
}
.sp {
  padding: 90px 0;
}
.auth-page {
  min-height: calc(100vh - 120px);
}
.auth-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.auth-card:hover {
  transform: translateY(-2px);
}
.auth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}
.auth-card > * {
  position: relative;
}
/* NAVBAR */
#nbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  height: var(--nav);
  background: rgba(8, 8, 15, 0.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.lm #nbar {
  background: rgba(250, 250, 254, 0.88);
}
#nbar.scr {
  background: rgba(8, 8, 15, 0.96);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
}
.lm #nbar.scr {
  background: rgba(250, 250, 254, 0.97);
}
.logo-i {
  width: 34px;
  height: 34px;
  background: var(--grad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.nav-link {
  color: var(--tx2) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: 0.2s !important;
}
.nav-link:hover {
  color: var(--tx) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}
.lm .nav-link:hover {
  background: rgba(0, 0, 0, 0.05) !important;
}
#mbmenu {
  position: fixed;
  top: var(--nav);
  left: 0;
  right: 0;
  z-index: 1049;
  background: rgba(8, 8, 15, 0.98);
  backdrop-filter: blur(20px);
  padding: 14px 20px 20px;
  border-bottom: 1px solid var(--bd);
  display: none;
}
.lm #mbmenu {
  background: rgba(250, 250, 254, 0.98);
}
#mbmenu.open {
  display: block;
}
/* HERO */
#hero {
  min-height: 100vh;
  padding-top: var(--nav);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  border-radius: 100px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  font-size: 0.78rem;
  font-weight: 600;
  color: #a78bfa;
  margin-bottom: 22px;
}
.bdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pur);
  animation: bpls 2s infinite;
  flex-shrink: 0;
}
.h1 {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.09;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.tlog {
  opacity: 0.4;
  filter: grayscale(1);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--tx2);
  transition: 0.3s;
}
.tlog:hover {
  opacity: 0.75;
  filter: none;
}
.dwrap {
  border-radius: 26px;
  overflow: hidden;
  background: var(--sf);
  border: 1px solid var(--bd2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65), 0 0 40px rgba(139, 92, 246, 0.2);
}
.dtbar {
  background: var(--bg3);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--bd);
}
.dd {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dgrid {
  display: grid;
  grid-template-columns: 185px 1fr;
}
.dside {
  background: var(--bg2);
  border-right: 1px solid var(--bd);
  padding: 14px 10px;
}
.dsi {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.81rem;
  color: var(--tx3);
  margin-bottom: 3px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  font-family: "Space Grotesk", sans-serif;
  text-align: left;
  transition: 0.2s;
}
.dsi i {
  width: 16px;
  text-align: center;
}
.dsi.on,
.dsi:hover {
  background: rgba(139, 92, 246, 0.14);
  color: #a78bfa;
}
.stpill {
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.stpill::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0.7;
}
.bbar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, #8b5cf6, #3b82f6);
  transform-origin: bottom;
  animation: bgrow 0.8s ease forwards;
}
.cbbl {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.72rem;
  line-height: 1.45;
  max-width: 88%;
}
.cbai {
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--tx2);
  align-self: flex-start;
}
.cbus {
  background: var(--grad);
  color: #fff;
  align-self: flex-end;
}
.tdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pur);
  animation: tbounce 0.9s infinite;
  display: inline-block;
}
@media (max-width: 991px) {
  .dgrid {
    grid-template-columns: 1fr;
  }
  .dside {
    display: none;
  }
}
/* PROOF */
#proof {
  background: var(--bg2);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 44px 0;
}
.pnum {
  font-size: 1.9rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.plbl {
  font-size: 0.77rem;
  color: var(--tx3);
  margin-top: 3px;
}
.lscroll {
  overflow: hidden;
  margin-top: 28px;
}
.ltrack {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: lscr 18s linear infinite;
}
.lbr {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--tx3);
  opacity: 0.5;
  white-space: nowrap;
}
/* FEATURES */
.ftico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}
.ftag {
  display: inline-block;
  margin-top: 10px;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
/* BENTO */
.bgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bs2 {
  grid-column: span 2;
}
.bt2 {
  grid-row: span 2;
}
.bvis {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg3);
}
.bvis::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.14),
    rgba(59, 130, 246, 0.08)
  );
}
@media (max-width: 767px) {
  .bgrid {
    grid-template-columns: 1fr;
  }
  .bs2,
  .bt2 {
    grid-column: span 1;
    grid-row: span 1;
  }
}
/* PRODUCT PREVIEW */
.dprev {
  background: var(--sf);
  border: 1px solid var(--bd2);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.5);
}
.dpbody {
  display: grid;
  grid-template-columns: 205px 1fr;
  min-height: 430px;
}
.dpside {
  background: var(--bg2);
  border-right: 1px solid var(--bd);
  padding: 16px 12px;
}
.dpnl {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 0.82rem;
  color: var(--tx3);
  margin-bottom: 4px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  font-family: "Space Grotesk", sans-serif;
  text-align: left;
  transition: 0.2s;
}
.dpnl i {
  width: 16px;
  text-align: center;
}
.dpnl.on,
.dpnl:hover {
  background: rgba(139, 92, 246, 0.14);
  color: #a78bfa;
}
.dpc {
  padding: 22px;
}
.dpane {
  display: none;
}
.dpane.on {
  display: block;
}
.dpst {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.dps {
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.dps::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0.6;
}
.dpsv {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.dpsl {
  font-size: 0.67rem;
  color: var(--tx3);
}
.dpsd {
  font-size: 0.67rem;
  color: #34d399;
  font-weight: 600;
}
.dpbars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 88px;
}
.dpbar {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(to top, #8b5cf6, #3b82f6);
  opacity: 0.75;
  animation: bgrow 0.7s ease forwards;
  transform-origin: bottom;
}
.arow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 0.82rem;
}
.adot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.gon {
  background: #34d399;
  box-shadow: 0 0 6px #34d399;
}
.gpu {
  background: #8b5cf6;
  box-shadow: 0 0 6px #8b5cf6;
}
.gor {
  background: #f59e0b;
}
.bst {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
}
.son {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.2);
}
.sbz {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.sid {
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.cit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 0.81rem;
}
.cav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.arl {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 0.82rem;
}
.ari {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .dpbody {
    grid-template-columns: 1fr;
  }
  .dpside {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 10px;
    border-right: none;
    border-bottom: 1px solid var(--bd);
  }
  .dpnl {
    white-space: nowrap;
    flex-shrink: 0;
    width: auto;
  }
  .dpst {
    grid-template-columns: 1fr 1fr;
  }
}
/* HOW */
.hnum {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}
/* ANALYTICS */
.anst {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 20px;
}
.atrnd {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
}
.tup {
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
}
.rtbar {
  height: 4px;
  background: var(--bg3);
  border-radius: 100px;
  overflow: hidden;
}
.rtfill {
  height: 100%;
  border-radius: 100px;
  background: var(--grad);
}
/* PRICING */
.pcard {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 18px;
  padding: 30px;
  transition: 0.3s;
  position: relative;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.pcard.pop {
  border: 1px solid rgba(139, 92, 246, 0.4);
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.06),
    rgba(59, 130, 246, 0.03)
  );
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.12);
}
.pbadge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pamt {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1;
}
.pamt sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 9px;
  display: inline-block;
}
.pfl {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 10px;
  font-size: 0.875rem;
}
.pchk {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: #34d399;
  margin-top: 1px;
}
.tav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bd2);
}
/* FAQ */
#faq {
  position: relative;
  overflow: hidden;
}
.faq-layout {
  max-width: 1140px;
  --bs-gutter-x: 3rem;
  margin-inline: auto;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.faq-layout > [class*="col-"] {
  display: flex;
}
.faq-layout .acco {
  width: 100%;
}
.acco .accordion-item {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 18px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.acco .accordion-button {
  background: var(--sf);
  color: var(--tx);
  font-family: var(--fa);
  font-weight: 500;
  font-size: 0.94rem;
  text-align: right;
  box-shadow: none;
  border-radius: 18px !important;
  padding: 20px 22px;
}
.acco .accordion-button:not(.collapsed) {
  background: rgba(139, 92, 246, 0.06);
  color: #a78bfa;
}
.acco .accordion-button::after {
  margin-right: auto;
  margin-left: 0;
  filter: invert(1) hue-rotate(220deg);
}
.lm .acco .accordion-button::after {
  filter: none;
}
.acco .accordion-body {
  color: var(--tx2);
  font-size: 0.875rem;
  line-height: 1.7;
  padding: 0 22px 18px;
}
.faq-visual {
  width: calc(100% + 24px);
  min-height: 480px;
  position: relative;
  overflow: visible;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: 24px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--fa);
  transform: translateX(-24px);
}
.faq-visual-grid {
  position: absolute;
  inset: -4% 0 8%;
  z-index: -3;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.12) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(ellipse 72% 76% at 50% 42%, #000 18%, transparent 82%);
  mask-image: radial-gradient(ellipse 72% 76% at 50% 42%, #000 18%, transparent 82%);
}
.faq-visual-glow {
  position: absolute;
  z-index: -2;
  width: 440px;
  height: 440px;
  top: -155px;
  left: -125px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.42), rgba(59, 130, 246, 0.12) 48%, transparent 72%);
  filter: blur(12px);
}
.faq-orbit {
  position: absolute;
  top: 38%;
  left: 44%;
  z-index: -1;
  border: 1px solid rgba(196, 181, 253, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.faq-orbit-outer {
  width: 390px;
  height: 390px;
  animation: faqOrbit 20s linear infinite;
}
.faq-orbit-inner {
  width: 280px;
  height: 280px;
  border-style: dashed;
  animation: faqOrbitReverse 15s linear infinite;
}
.faq-orbit span {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 18px rgba(167, 139, 250, 0.85);
}
.faq-orbit-inner span {
  top: 16%;
  right: 18px;
  width: 7px;
  height: 7px;
  background: #60a5fa;
  box-shadow: 0 0 16px rgba(96, 165, 250, 0.8);
}
.faq-symbol {
  position: absolute;
  top: 0;
  left: 36%;
  translate: -50% 0;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 181, 253, 0.24);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.26), rgba(59, 130, 246, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 45px rgba(82, 55, 170, 0.25);
  color: #c4b5fd;
  font-family: var(--fa);
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  animation: faqFloat 5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
.faq-visual-copy {
  position: relative;
  z-index: 2;
  width: 80%;
  margin-inline: auto;
}
.faq-visual-copy .slbl {
  margin-bottom: 8px;
}
.faq-visual-word {
  display: block;
  width: max-content;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5rem, 8.5vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 181, 253, 0.38);
  text-shadow: 0 0 34px rgba(139, 92, 246, 0.14);
}
.faq-visual-copy h2 {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 3.6vw, 2.65rem);
  font-weight: 800;
  color: var(--tx);
}
.faq-visual-copy p {
  max-width: 390px;
  margin: 0;
  color: var(--tx2);
  font-size: 0.94rem;
  line-height: 1.85;
}
@keyframes faqOrbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes faqOrbitReverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}
@keyframes faqFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
@media (max-width: 991.98px) {
  .faq-layout {
    --bs-gutter-x: 1.5rem;
  }
  .faq-visual {
    width: 100%;
    min-height: 450px;
    transform: none;
  }
}
@media (max-width: 575.98px) {
  .faq-visual {
    min-height: 380px;
    padding: 20px 0;
  }
  .faq-visual-copy {
    width: 100%;
  }
  .faq-symbol {
    top: 22px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    font-size: 4rem;
  }
  .faq-orbit-outer {
    width: 260px;
    height: 260px;
  }
  .faq-orbit-inner {
    width: 185px;
    height: 185px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq-orbit,
  .faq-symbol {
    animation: none;
  }
}
/* CONTACT */
#contact {
  position: relative;
  overflow: hidden;
  font-family: var(--fa);
}
.contact-layout {
  max-width: 1140px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.contact-info-column,
.contact-form-column {
  min-width: 0;
}
.contact-info-panel {
  position: relative;
  overflow: visible;
  padding: clamp(12px, 2vw, 24px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.contact-info-panel::before {
  content: none;
}
.contact-info-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-heading-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 50%;
  background: transparent;
  color: #a78bfa;
  font-size: 1.05rem;
}
.contact-info-heading h3,
.contact-form-heading h3 {
  margin: 0 0 7px;
  color: var(--tx);
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.55;
  text-wrap: balance;
}
.contact-info-heading p,
.contact-form-heading p {
  margin: 0;
  color: var(--tx2);
  font-size: 0.84rem;
  line-height: 1.8;
  overflow-wrap: break-word;
}
.contact-detail-list {
  border-top: 1px solid var(--bd);
}
.contact-detail-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  color: var(--tx);
  border-bottom: 1px solid var(--bd);
  transition: color 0.2s ease;
}
.contact-detail-row:hover {
  color: #a78bfa;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.07);
  color: #a78bfa;
}
.contact-detail-row > span:last-child,
.contact-address > span,
.contact-hours > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-detail-row small,
.contact-address small,
.contact-hours small {
  color: var(--tx3);
  font-size: 0.7rem;
}
.contact-detail-row strong,
.contact-address strong,
.contact-hours strong {
  color: inherit;
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.contact-info-empty {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--tx2);
  border-bottom: 1px solid var(--bd);
  font-size: 0.84rem;
  line-height: 1.75;
}
.contact-info-empty i {
  color: #a78bfa;
  font-size: 1rem;
}
.contact-address,
.contact-hours {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  margin-top: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--bd);
  border-radius: 0;
  background: transparent;
  color: var(--tx);
}
a.contact-address:hover {
  color: #a78bfa;
}
.contact-address > i:first-child,
.contact-hours > i {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.07);
  color: #a78bfa;
  text-align: center;
}
.contact-address em {
  color: var(--tx3);
  font-size: 0.72rem;
  font-style: normal;
}
.contact-map-arrow {
  margin: 4px auto 0 0;
  color: var(--tx3) !important;
  font-size: 0.72rem;
}
.contact-socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--bd);
  color: var(--tx3);
  font-size: 0.76rem;
}
.contact-socials > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-socials a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bd2);
  border-radius: 12px;
  color: var(--tx2);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.contact-socials a:hover {
  color: #fff;
  border-color: var(--pur);
  background: var(--pur);
}
.contact-form-panel {
  padding: clamp(24px, 3vw, 38px);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.035), transparent 48%), var(--sf);
}
.contact-form-panel.gc:hover {
  border-color: var(--bd);
  box-shadow: none;
  transform: none;
}
.contact-form-heading {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--bd);
}
.contact-form-panel label {
  display: block;
  margin-bottom: 8px;
  color: var(--tx2);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
}
.contact-form-panel form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}
.contact-form-panel form > .mb-3 {
  margin-bottom: 0 !important;
}
.contact-form-panel form > .mb-3:nth-of-type(n + 3),
.contact-form-panel form > button,
.contact-form-panel form > .alert,
.contact-form-panel form > .contact-form-error {
  grid-column: 1 / -1;
}
.contact-form-panel .oinp {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  margin-bottom: 0;
  border: 1px solid var(--bd2);
  border-radius: 12px;
  outline: none;
  background: var(--sf);
  color: var(--tx);
  font-family: var(--fa);
  font-size: 0.88rem;
  line-height: 1.6;
  text-align: right;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form-panel input[type="email"].oinp {
  direction: ltr;
  text-align: left;
}
.contact-form-panel input[type="email"].oinp:placeholder-shown {
  direction: rtl;
  text-align: right;
}
.contact-form-panel .oinp:hover {
  border-color: rgba(139, 92, 246, 0.38);
}
.contact-form-panel .oinp:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.14);
  background: var(--bg2);
}
.contact-form-panel .oinp::placeholder {
  color: var(--tx2);
  opacity: 0.9;
}
.contact-form-panel .oinp:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.contact-form-panel .text-danger {
  margin-top: 6px;
}
.contact-form-panel .bgrd {
  font-family: var(--fa);
}
.contact-form-panel textarea.oinp {
  min-height: 160px;
  resize: vertical;
}
@media (max-width: 991.98px) {
  .contact-layout {
    max-width: 720px;
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 575.98px) {
  .contact-form-panel {
    border-radius: 14px;
  }
  .contact-info-heading {
    gap: 11px;
  }
  .contact-heading-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .contact-socials {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-form-panel form {
    grid-template-columns: 1fr;
  }
  .contact-form-panel form > .mb-3 {
    grid-column: 1;
  }
}
/* CTA */
#cta {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg3);
  text-align: center;
}
/* FOOTER */
#foot {
  background: var(--bg);
  border-top: 1px solid var(--bd);
  padding: 60px 0 28px;
}
.fcol h5 {
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tx3);
  margin-bottom: 14px;
}
.fcol a {
  display: block;
  font-size: 0.875rem;
  color: var(--tx2);
  padding: 3px 0;
  transition: 0.2s;
}
.fcol a:hover {
  color: var(--pur);
}
.footer-info {
  display: block;
  font-size: 0.875rem;
  color: var(--tx2);
  padding: 3px 0;
  line-height: 1.65;
}
.footer-brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.footer-brand-logo-fallback {
  filter: brightness(0) invert(1);
}
.lm .footer-brand-logo-fallback {
  filter: none;
}
.nli {
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid var(--bd2);
  background: var(--sf);
  color: var(--tx);
  font-size: 0.83rem;
  font-family: "Space Grotesk", sans-serif;
  outline: none;
  flex: 1;
}
.nli:focus {
  border-color: var(--pur);
}
.sico {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tx3);
  transition: 0.2s;
  font-size: 0.88rem;
}
.sico:hover {
  border-color: var(--pur);
  color: var(--pur);
}
/* CONSULTATION OFFCANVAS */
#lofc {
  width: min(440px, 100vw);
  background: var(--bg2);
  border-left: 1px solid var(--bd2);
  color: var(--tx);
}
.lm #lofc {
  background: #f5f5ff;
}
.consult-offcanvas-header {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--bd);
  padding: 20px 24px;
}
.consult-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.consult-brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(139, 92, 246, .35);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(139, 92, 246, .22), rgba(59, 130, 246, .09));
  color: #c4b5fd;
  font-size: 1.05rem;
}
.consult-brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.consult-brand small {
  color: var(--tx3);
  font-size: .68rem;
}
.consult-brand strong {
  color: var(--tx);
  font-family: var(--fa);
  font-size: .88rem;
  font-weight: 700;
}
.consult-close {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid var(--bd2);
  border-radius: 12px;
  background: var(--sf);
  color: var(--tx2);
  margin-right: auto;
  margin-left: 0;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.consult-close:hover {
  border-color: rgba(139, 92, 246, .55);
  color: #c4b5fd;
  transform: rotate(6deg);
}
.consult-offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
}
.consult-intro {
  position: relative;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, .22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 0, rgba(59, 130, 246, .18), transparent 38%),
    linear-gradient(145deg, rgba(139, 92, 246, .14), rgba(139, 92, 246, .035));
}
.consult-intro::after {
  content: "";
  position: absolute;
  left: -35px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(139, 92, 246, .18);
  border-radius: 50%;
  box-shadow: 0 0 55px rgba(139, 92, 246, .14);
}
.consult-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 15px;
  padding: 5px 10px;
  border: 1px solid rgba(52, 211, 153, .2);
  border-radius: 999px;
  background: rgba(52, 211, 153, .07);
  color: #6ee7b7;
  font-size: .68rem;
  font-weight: 600;
}
.consult-kicker i {
  font-size: .38rem;
  box-shadow: 0 0 10px #34d399;
}
.consult-intro h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: var(--tx);
  font-family: var(--fa);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.65;
}
.consult-intro p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--tx2);
  font-size: .8rem;
  line-height: 1.85;
}
.consult-channel-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.consult-channel {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
  border: 1px solid var(--bd);
  border-radius: 16px;
  background: var(--sf);
  color: var(--tx);
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.consult-channel:hover {
  border-color: rgba(139, 92, 246, .48);
  background: rgba(139, 92, 246, .08);
  color: var(--tx);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  transform: translateX(-3px);
}
.consult-channel-icon {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid rgba(139, 92, 246, .24);
  border-radius: 14px;
  background: rgba(139, 92, 246, .1);
  color: #c4b5fd;
  font-size: 1.15rem;
}
.consult-channel-icon .fa-telegram { color: #38bdf8; }
.consult-channel-icon .fa-whatsapp { color: #34d399; }
.consult-channel-icon--email { color: #93c5fd; }
.consult-channel-icon--phone { color: #6ee7b7; }
.consult-channel-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}
.consult-channel-copy small {
  margin-bottom: 2px;
  color: var(--tx3);
  font-size: .68rem;
}
.consult-channel-copy strong {
  color: var(--tx);
  font-family: var(--fa);
  font-size: .88rem;
  font-weight: 700;
}
.consult-channel-copy em {
  max-width: 100%;
  overflow: hidden;
  color: var(--tx2);
  font-family: "Space Grotesk", sans-serif;
  font-size: .69rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.consult-channel-arrow {
  flex: 0 0 auto;
  color: var(--tx3);
  font-size: .72rem;
}
.consult-empty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border: 1px dashed var(--bd2);
  border-radius: 16px;
  color: var(--tx2);
}
.consult-empty i { color: #a78bfa; }
.consult-empty p {
  margin: 0;
  font-size: .76rem;
  line-height: 1.75;
}
.consult-footer {
  margin-top: auto;
  padding-top: 22px;
}
.consult-form-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 16px;
  font-family: var(--fa);
  font-size: .86rem;
  font-weight: 700;
}
.consult-footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 12px 0 0;
  color: var(--tx3);
  font-size: .7rem;
}
@media (max-width: 575.98px) {
  .consult-offcanvas-header { padding: 16px; }
  .consult-offcanvas-body { padding: 20px 16px 18px; }
  .consult-intro { padding: 18px; }
  .consult-channel { min-height: 68px; }
}
/* MAGNIFIC */
.mfp-bg {
  background: #000;
  opacity: 0.9;
}
.mfp-iframe-holder .mfp-content {
  max-width: 900px;
}
/* ======================== DASHBOARD ======================== */
#dashboard {
  display: none;
  min-height: 100vh;
  background: var(--bg);
}
/* DB TOPBAR */
.db-top {
  position: fixed;
  top: 0;
  left: var(--dsb);
  right: 0;
  height: var(--nav);
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
  z-index: 900;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 16px;
  transition: left 0.3s;
}
.lm .db-top {
  background: rgba(250, 250, 254, 0.9);
}
.db-top-search {
  flex: 1;
  max-width: 380px;
  position: relative;
}
.db-top-search input {
  width: 100%;
  padding: 8px 14px 8px 36px;
  border-radius: 10px;
  border: 1px solid var(--bd2);
  background: var(--sf);
  color: var(--tx);
  font-size: 0.85rem;
  font-family: "Space Grotesk", sans-serif;
  outline: none;
}
.db-top-search input:focus {
  border-color: var(--pur);
}
.db-top-search i {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tx3);
  font-size: 0.85rem;
}
.db-user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid var(--bd);
  cursor: pointer;
  transition: 0.2s;
}
.db-user-pill:hover {
  border-color: var(--pur);
  background: rgba(139, 92, 246, 0.06);
}
.db-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
/* DB SIDEBAR */
.db-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--dsb);
  height: 100vh;
  background: var(--bg2);
  border-right: 1px solid var(--bd);
  z-index: 950;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.3s;
}
.db-logo {
  padding: 18px 20px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tx);
}
.db-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}
.db-nav-section {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--tx3);
  padding: 0 10px;
  margin: 16px 0 8px;
}
.db-nl {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--tx2);
  margin-bottom: 3px;
  cursor: pointer;
  border: none;
  width: 100%;
  background: transparent;
  font-family: "Space Grotesk", sans-serif;
  text-align: left;
  transition: 0.2s;
  position: relative;
}
.db-nl i {
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}
.db-nl:hover {
  background: rgba(139, 92, 246, 0.1);
  color: var(--tx);
}
.db-nl.active {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  font-weight: 600;
}
.db-nl.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--grad);
  border-radius: 0 3px 3px 0;
}
.db-badge {
  margin-left: auto;
  background: var(--pur);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}
.db-bottom {
  padding: 16px 12px;
  border-top: 1px solid var(--bd);
}
/* DB MAIN */
.db-main {
  margin-left: var(--dsb);
  padding-top: var(--nav);
  min-height: 100vh;
}
.db-content {
  padding: 28px;
}
/* DB SECTIONS */
.db-section {
  display: none;
}
.db-section.active {
  display: block;
}
/* STAT CARDS */
.db-stat-card {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.db-stat-card:hover {
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.db-stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0.6;
}
.db-stat-val {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}
.db-stat-lbl {
  font-size: 0.78rem;
  color: var(--tx3);
  margin-bottom: 6px;
}
.db-stat-delta {
  font-size: 0.75rem;
  font-weight: 600;
}
.delta-up {
  color: #34d399;
}
.delta-dn {
  color: #f87171;
}
/* AI CHAT */
.chat-wrap {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  height: 520px;
  overflow: hidden;
}
.chat-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-ai-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #34d399;
  font-weight: 600;
}
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.chat-body::-webkit-scrollbar {
  width: 4px;
}
.chat-body::-webkit-scrollbar-track {
  background: transparent;
}
.chat-body::-webkit-scrollbar-thumb {
  background: var(--bd2);
  border-radius: 4px;
}
.msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.55;
  word-break: break-word;
}
.msg-ai {
  background: var(--bg3);
  border: 1px solid var(--bd);
  color: var(--tx);
  align-self: flex-start;
  border-radius: 4px 14px 14px 14px;
}
.msg-user {
  background: var(--grad);
  color: #fff;
  align-self: flex-end;
  border-radius: 14px 14px 4px 14px;
}
.msg-time {
  font-size: 0.68rem;
  color: var(--tx3);
  margin-top: 4px;
}
.typing-ind {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 4px 14px 14px 14px;
  align-self: flex-start;
  align-items: center;
}
.typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pur);
  animation: tbounce 0.9s infinite;
}
.typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}
.typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}
.chat-input-wrap {
  padding: 14px 16px;
  border-top: 1px solid var(--bd);
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.chat-inp {
  flex: 1;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--bd2);
  background: var(--bg3);
  color: var(--tx);
  font-size: 0.875rem;
  font-family: "Space Grotesk", sans-serif;
  outline: none;
  resize: none;
  max-height: 100px;
  line-height: 1.5;
  transition: 0.2s;
}
.chat-inp:focus {
  border-color: var(--pur);
}
.chat-send {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  flex-shrink: 0;
}
.chat-send:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}
.chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
/* AGENT CARD */
.agent-card {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 20px;
  transition: 0.3s;
}
.agent-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.agent-status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ag-online {
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
}
.ag-busy {
  background: #8b5cf6;
  box-shadow: 0 0 8px #8b5cf6;
}
.ag-offline {
  background: #6b6b8a;
}
/* TABLE */
.db-table {
  width: 100%;
  border-collapse: collapse;
}
.db-table th {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tx3);
  padding: 10px 16px;
  border-bottom: 1px solid var(--bd);
  text-align: left;
}
.db-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--bd);
  font-size: 0.875rem;
  color: var(--tx2);
}
.db-table tr:last-child td {
  border-bottom: none;
}
.db-table tr:hover td {
  background: rgba(139, 92, 246, 0.04);
}
/* SETTINGS */
.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--bd);
}
.setting-row:last-child {
  border-bottom: none;
}
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.toggle-thumb {
  position: absolute;
  inset: 0;
  background: var(--bd2);
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s;
}
.toggle-thumb::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-switch input:checked + .toggle-thumb {
  background: var(--grad);
}
.toggle-switch input:checked + .toggle-thumb::before {
  transform: translateX(20px);
}
/* NOTIFICATION */
.notif-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: var(--sf);
  border: 1px solid var(--bd);
  margin-bottom: 10px;
  transition: 0.2s;
}
.notif-item:hover {
  border-color: rgba(139, 92, 246, 0.2);
}
.notif-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* DROPDOWN PANELS */
.db-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 2000;
  background: var(--bg2);
  border: 1px solid var(--bd2);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  min-width: 340px;
  overflow: hidden;
  animation: fadeIn 0.2s ease;
  display: none;
}
.db-dropdown.open {
  display: block;
}
.dd-header {
  padding: 16px 18px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dd-header-title {
  font-weight: 700;
  font-size: 0.95rem;
}
.dd-close {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--bd2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tx3);
  cursor: pointer;
  font-size: 0.8rem;
  transition: 0.2s;
}
.dd-close:hover {
  border-color: var(--pur);
  color: var(--pur);
}
.dd-body {
  padding: 14px;
  max-height: 380px;
  overflow-y: auto;
}
.dd-body::-webkit-scrollbar {
  width: 4px;
}
.dd-body::-webkit-scrollbar-thumb {
  background: var(--bd2);
  border-radius: 4px;
}
.notif-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b5cf6;
  flex-shrink: 0;
  margin-top: 5px;
}
.notif-dot.read {
  background: var(--bd2);
}
.notif-unread {
  background: rgba(139, 92, 246, 0.06);
  border-color: rgba(139, 92, 246, 0.2);
}
/* PROFILE DROPDOWN */
.profile-dd {
  min-width: 260px;
}
.profile-dd-top {
  padding: 18px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--tx2);
  cursor: pointer;
  transition: 0.2s;
  border-radius: 10px;
  margin: 2px 8px;
  border: none;
  background: transparent;
  width: calc(100% - 16px);
  font-family: "Space Grotesk", sans-serif;
  text-align: left;
}
.profile-menu-item i {
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}
.profile-menu-item:hover {
  background: rgba(139, 92, 246, 0.1);
  color: var(--tx);
}
.profile-menu-item.danger:hover {
  background: rgba(248, 113, 113, 0.1);
  color: #f87171;
}
.profile-dd-footer {
  padding: 10px 8px;
  border-top: 1px solid var(--bd);
}
/* MOBILE DB */
@media (max-width: 991px) {
  .db-sidebar {
    transform: translateX(-100%);
    transition: 0.3s;
  }
  .db-sidebar.mob-open {
    transform: translateX(0);
  }
  .db-main {
    margin-left: 0;
  }
  .db-top {
    left: 0;
  }
}
/* KEYFRAMES */
@keyframes bpls {
  0%,
  100% {
    box-shadow: 0 0 6px var(--pur);
  }
  50% {
    box-shadow: 0 0 14px var(--pur);
  }
}
@keyframes bgrow {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 0.75;
  }
}
@keyframes tbounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
}
@keyframes lscr {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes fadU {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes dinI {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateX(5deg) translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.afu {
  animation: fadU 0.8s ease both;
}
.adi {
  animation: dinI 1.1s ease 0.35s both;
}
@media (max-width: 575px) {
  .h1 {
    font-size: 2.2rem;
  }
  .stitle {
    font-size: 1.8rem;
  }
  #lofc {
    width: 100%;
  }
  .db-top-search {
    display: none;
  }
  .db-content {
    padding: 16px;
  }
}

/* Home page cards and portfolio */
/* ── New Pricing Cards ── */
.npc-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--bd);
  background: var(--sf);
  transition: transform .4s cubic-bezier(.22,.8,.32,1), box-shadow .4s;
}
.npc-wrap:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(0,0,0,.35);
}
.npc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  transition: opacity .4s;
  opacity: 0;
}
.npc-wrap:hover .npc-orb,
.npc-wrap.npc-featured .npc-orb { opacity: 1; }
.npc-wrap.npc-featured {
  transform: translateY(-20px);
  border-color: rgba(139,92,246,.45);
  box-shadow: 0 4px 40px rgba(139,92,246,.15);
}
.npc-wrap.npc-featured:hover {
  transform: translateY(-28px);
}
.npc-shimmer {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,.7), transparent);
  background-size: 200% 100%;
  animation: npc-sh 2.5s ease-in-out infinite;
}
@keyframes npc-sh {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.npc-ray {
  position: absolute;
  width: 1.5px;
  top: 0;
  background: linear-gradient(to bottom, rgba(139,92,246,.7), transparent);
  animation: npc-ray 3s ease-in-out infinite;
  opacity: 0;
  pointer-events: none;
}
@keyframes npc-ray {
  0%,100% { opacity: 0; height: 0; }
  50%      { opacity: .55; height: 65%; }
}
.npc-head { padding: 24px 22px 16px; position: relative; }
.npc-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  background: var(--grad); color: #fff;
  margin-bottom: 10px;
}
.npc-name { font-size: 1rem; font-weight: 700; color: var(--tx); margin-bottom: 4px; }
.npc-desc { font-size: .75rem; color: var(--tx3); line-height: 1.5; }
.npc-price-row {
  padding: 14px 22px;
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
}
.npc-amt { font-size: 1.6rem; font-weight: 800; color: var(--tx); letter-spacing: -.02em; }
.npc-amt sup { font-size: .9rem; font-weight: 600; vertical-align: super; }
.npc-amt .npc-per { font-size: .75rem; font-weight: 400; color: var(--tx3); }
.npc-amt-custom { font-size: 1.3rem; font-weight: 700; color: var(--pur); }
.npc-cta { padding: 14px 22px; }
.npc-sep {
  margin: 0 22px 8px;
  border: none;
  border-top: 1px dashed var(--bd);
  position: relative;
}
.npc-sep-lbl {
  position: absolute;
  top: -9px; left: 50%; transform: translateX(-50%);
  font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--tx3); background: var(--sf); padding: 0 8px;
  white-space: nowrap;
}
.npc-feats { padding: 4px 22px 22px; display: flex; flex-direction: column; gap: 9px; }
.npc-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--tx2);
}
.npc-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: rgba(139,92,246,.6);
}
.npc-feat-pill {
  font-size: .6rem; font-weight: 700; padding: 2px 8px; border-radius: 100px;
  background: rgba(139,92,246,.12); color: #a78bfa;
  border: 1px solid rgba(139,92,246,.22);
  margin-right: auto;
}
/* ── Service Cards (extends npc-wrap) ── */
.svc-npc-ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px; flex-shrink: 0;
  transition: transform .3s;
}
.npc-wrap:hover .svc-npc-ico {
  transform: scale(1.08) rotate(-5deg);
}
.svc-npc-corner {
  position: absolute; top: 0; right: 0;
  pointer-events: none;
}
.svc-npc-corner::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 40px; height: 1px;
  background: linear-gradient(to left, transparent, currentColor);
  opacity: .3;
}
.svc-npc-corner::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, currentColor, transparent);
  opacity: .3;
}
.svc-npc-num {
  position: absolute; top: 16px; left: 18px;
  font-size: .6rem; font-weight: 700;
  color: rgba(255,255,255,.12);
  letter-spacing: .05em;
}
.svc-npc-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .78rem; font-weight: 700;
  transition: gap .2s;
}
.npc-wrap:hover .svc-npc-link { gap: 9px; }
.svc-npc-chip {
  font-size: .65rem; font-weight: 600;
  padding: 3px 9px; border-radius: 100px;
  border: 1px solid;
}
.feat-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}

.feature-card-grid > * {
  display: flex;
}
.feature-card-grid .npc-wrap {
  width: 100%;
  height: 100%;
}
#features .npc-name {
  margin-bottom: 10px;
}
#features .npc-desc.mt-1 {
  margin-top: 0 !important;
  color: #b9b8d2;
  font-size: 0.82rem;
  line-height: 1.7;
}
.lm #features .npc-desc.mt-1 {
  color: var(--tx2);
}

@media (max-width: 1199.98px) {
  .feature-card-grid { --bs-gutter-y: 20px; }
  #features .npc-wrap,
  #features .npc-wrap:hover,
  #features .npc-wrap.npc-featured,
  #features .npc-wrap.npc-featured:hover {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  #features .container { padding-inline: 16px; }
  .feature-card-grid {
    margin-inline: 0;
  }
  .feature-card-grid > * {
    padding-inline: 0;
  }
}

/* ── Portfolio carousel ── */
.pf-carousel {
  --pf-slide-width: calc((100% - 32px) / 2.65);
  position: relative;
}
.pf-carousel--compact { --pf-slide-width: calc((100% - 16px) / 2); }
.pf-carousel--single { --pf-slide-width: min(100%, 420px); }
.pf-carousel--single .pf-carousel-track { justify-content: center; }
.pf-carousel-viewport {
  overflow: hidden;
}
.pf-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--pf-slide-width);
  gap: 16px;
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 14px 4px 20px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}
.pf-carousel-track::-webkit-scrollbar { display: none; }
.pf-carousel-track:focus-visible {
  outline: 2px solid #a78bfa;
  outline-offset: 4px;
}
.pf-carousel-slide {
  display: flex;
  min-width: 0;
  height: auto;
  scroll-snap-align: start;
}

/* Browser frame mockup wrapping the cover image */
.pf-browser {
  position: relative;
  z-index: 1;
  margin: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: #0c0b1a;
}
.pf-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pf-dot { width: 7px; height: 7px; border-radius: 50%; }
.pf-url {
  flex: 1;
  margin-right: 8px;
  background: rgba(255,255,255,.05);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: .65rem;
  color: rgba(255,255,255,.4);
  text-align: left;
  direction: ltr;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pf-browser img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.pf-project-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.pf-portfolio-card {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.pf-portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 8px rgba(0,0,0,.24);
}
.pf-portfolio-card--featured {
  border-color: rgba(139,92,246,.52);
}
.pf-portfolio-card .npc-orb {
  top: -55px;
  right: -35px;
  width: 180px;
  height: 180px;
  background: rgba(139,92,246,.24);
}
.pf-portfolio-card .svc-npc-corner { color: #a78bfa; }
.pf-portfolio-card .pf-browser { margin: 12px; }
.pf-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.pf-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 4px 18px 18px;
}
.pf-card-meta {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.pf-category-chip,
.pf-featured-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .65rem;
  font-weight: 700;
  line-height: 1.4;
}
.pf-category-chip {
  border: 1px solid rgba(96,165,250,.24);
  background: rgba(59,130,246,.1);
  color: #93c5fd;
}
.pf-featured-chip {
  border: 1px solid rgba(139,92,246,.3);
  background: rgba(139,92,246,.14);
  color: #c4b5fd;
}
.pf-card-title {
  min-height: 1.75rem;
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.75;
  text-wrap: balance;
}
.pf-card-description {
  display: -webkit-box;
  min-height: 3.75rem;
  margin: 0;
  overflow: hidden;
  font-size: .76rem;
  line-height: 1.75;
  overflow-wrap: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.pf-card-actions {
  margin-top: auto;
  padding-top: 18px;
}

/* Tech chips inside portfolio cards */
.pf-techwrap {
  display: flex;
  min-height: 50px;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
}
.pf-techwrap .svc-npc-chip {
  border-color: rgba(139,92,246,.22);
  background: rgba(139,92,246,.1);
  color: #c4b5fd;
}

.pf-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.pf-carousel-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--bd2);
  border-radius: 50%;
  background: var(--sf);
  color: var(--tx);
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.pf-carousel-button:hover:not(:disabled) {
  border-color: #8b5cf6;
  background: #8b5cf6;
  color: #fff;
  transform: translateY(-2px);
}
.pf-carousel-button:focus-visible {
  outline: 2px solid #a78bfa;
  outline-offset: 3px;
}
.pf-carousel-button:disabled {
  cursor: default;
  opacity: .35;
}
.pf-carousel-status {
  min-width: 62px;
  color: var(--tx2);
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  direction: ltr;
}

/* Live preview + detail buttons */
.pf-btns { display: flex; gap: 8px; }
.pf-btn-live {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: .78rem; font-weight: 700; color: #fff;
  background: var(--grad);
  padding: 9px 14px; border-radius: 10px;
  text-decoration: none;
  transition: transform .2s;
}
.pf-btn-live:hover { transform: translateY(-2px); color: #fff; }
.pf-btn-detail {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: .78rem; font-weight: 700; color: var(--tx2);
  border: 1px solid var(--bd); border-radius: 10px;
  padding: 9px 14px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.pf-btn-detail:hover { border-color: rgba(139,92,246,.4); color: #a78bfa; }

@media (max-width: 575px) {
  .pf-carousel { --pf-slide-width: 88%; }
  .pf-btns { flex-direction: column; }
  .pf-card-img { height: 175px; }
}
@media (min-width: 576px) and (max-width: 991px) {
  .pf-carousel { --pf-slide-width: calc((100% - 16px) / 1.65); }
}
@media (prefers-reduced-motion: reduce) {
  .pf-carousel-track { scroll-behavior: auto; }
  .pf-portfolio-card:hover,
  .pf-carousel-button:hover:not(:disabled) { transform: none; }
}

/* Category filter pills (used on list.html) */
.pf-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px; }
.pf-filter-pill {
  font-size: .82rem; font-weight: 600;
  padding: 7px 18px; border-radius: 100px;
  border: 1px solid var(--bd);
  color: var(--tx2);
  text-decoration: none;
  transition: .2s;
}
.pf-filter-pill:hover { border-color: rgba(139,92,246,.4); color: #a78bfa; }
.pf-filter-pill.active {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}

/* Detail page gallery */
.pf-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.pf-gallery img {
  width: 100%; border-radius: 14px; border: 1px solid var(--bd);
  transition: transform .3s;
}
.pf-gallery img:hover { transform: scale(1.02); }

/* Detail page stat blocks */
.pf-stats { display: flex; gap: 24px; flex-wrap: wrap; padding: 18px 0; border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd); margin: 24px 0; }
.pf-stat-num { font-size: 1.6rem; font-weight: 800; color: #a78bfa; }
.pf-stat-lbl { font-size: .78rem; color: var(--tx3); }
