/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --dark-bg: #050510;
  --dark-el: #0a0a1e;
  --primary: #c12de0;
  --primary-dark: #7817b6;
  --primary-light: #e67dfa;
  --glow: rgba(193, 45, 224, 0.4);
  --text-light: #f8fafc;
  --text-gray: #94a3b8;
  --text-faint: #4a5568;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(193, 45, 224, 0.25);
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --r-sm: 0.375rem;
  --r-md: 0.5rem;
  --r-lg: 0.75rem;
  --r-xl: 1rem;
  --r-full: 9999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --s4: 1rem;
  --s6: 1.5rem;
  --s8: 2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  background: var(--dark-bg);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ─── GALAXY BACKGROUND ──────────────────────────────── */
#galaxy-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.aurora {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.aurora-1 {
  width: 70vw;
  height: 70vh;
  top: -20%;
  left: -15%;
  background: radial-gradient(circle, var(--primary-dark) 0%, transparent 70%);
  animation: drift1 18s ease-in-out infinite alternate;
}
.aurora-2 {
  width: 60vw;
  height: 60vh;
  bottom: -15%;
  right: -10%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  animation: drift2 22s ease-in-out infinite alternate;
}
.aurora-3 {
  width: 40vw;
  height: 40vh;
  top: 40%;
  left: 40%;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0.2;
  animation: drift3 14s ease-in-out infinite alternate;
}
@keyframes drift1 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    transform: translate(8%, 12%) scale(1.1) rotate(2deg);
  }
}
@keyframes drift2 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    transform: translate(-8%, -10%) scale(1.15) rotate(-1.5deg);
  }
}
@keyframes drift3 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-5%, 8%) rotate(3deg);
  }
}

/* ─── NAV ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1.5rem, 5vw, 4rem);
  background: rgba(5, 5, 16, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(193, 45, 224, 0.1);
  transition: all 0.3s;
}
.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.logo-text-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light);
  border: 1px solid var(--glass-border);
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-full);
  opacity: 0.85;
}
.nav-links {
  display: flex;
  gap: var(--s8);
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text-light);
}
.nav-cta {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  padding: 0.55rem 1.4rem;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 0 18px var(--glow);
  transition:
    box-shadow 0.3s,
    transform 0.2s;
}
.nav-cta:hover {
  box-shadow: 0 0 28px rgba(193, 45, 224, 0.65);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(6rem, 10vw, 10rem) clamp(1.5rem, 5vw, 4rem) var(--s16);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  border: 1px solid var(--glass-border);
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  background: rgba(193, 45, 224, 0.08);
  margin-bottom: var(--s6);
  opacity: 0;
}
.hero-eyebrow i {
  font-size: 0.75rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: var(--s6);
  opacity: 0;
}
.hero h1 .gradient-word {
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary),
    var(--primary-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-gray);
  max-width: 55ch;
  margin: 0 auto var(--s10);
  line-height: 1.7;
  opacity: 0;
}
.hero-actions {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
}
.btn-primary {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  padding: 0.85rem 2rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 0 24px var(--glow);
  transition:
    box-shadow 0.3s,
    transform 0.2s;
}
.btn-primary:hover {
  box-shadow: 0 0 36px rgba(193, 45, 224, 0.7);
  transform: translateY(-2px);
}
.btn-ghost {
  padding: 0.85rem 2rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.btn-ghost:hover {
  background: rgba(193, 45, 224, 0.1);
  border-color: var(--primary);
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  animation: bounce 2s ease-in-out infinite 3s;
}
.scroll-hint i {
  font-size: 0.85rem;
  color: var(--primary);
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}
.hero-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    rgba(120, 23, 182, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ─── SECTION COMMONS ─────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
}
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-sub {
  color: var(--text-gray);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 55ch;
  line-height: 1.7;
}
.text-center {
  text-align: center;
}
.mx-auto {
  margin-inline: auto;
}
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  filter: blur(4px);
  will-change: opacity, transform, filter;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

/* ─── ABOUT / WHO WE ARE ──────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-tag-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: var(--s8);
}
.about-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-full);
  background: rgba(193, 45, 224, 0.1);
  border: 1px solid var(--glass-border);
  color: var(--primary-light);
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
}
.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--s6) var(--s8);
  backdrop-filter: blur(16px);
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-top: 0.25rem;
}

/* ─── PLATFORMS ──────────────────────────────────────── */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  max-width: 1000px;
  margin: var(--s12) auto 0;
}
.platform-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  padding: var(--s10) var(--s8);
  text-align: center;
  backdrop-filter: blur(16px);
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.35s;
  cursor: default;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.platform-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(193, 45, 224, 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.platform-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(193, 45, 224, 0.5);
  box-shadow: 0 24px 64px rgba(120, 23, 182, 0.28);
}
.platform-card:hover::before {
  opacity: 1;
}
.platform-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s6);
  box-shadow: 0 0 30px var(--glow);
  font-size: 1.9rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.platform-card:hover .platform-icon-wrap {
  transform: scale(1.1);
  box-shadow: 0 0 44px rgba(193, 45, 224, 0.6);
}
.platform-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.platform-card p {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.65;
}
.platform-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light);
  border: 1px solid rgba(193, 45, 224, 0.3);
  border-radius: var(--r-full);
  padding: 0.2rem 0.7rem;
  margin-top: 0.8rem;
}

/* ─── PROCESS / MARKET RESEARCH ──────────────────────── */
.process-steps {
  max-width: 900px;
  margin: var(--s12) auto 0;
  display: grid;
  gap: var(--s6);
}
.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s6);
  align-items: start;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  padding: var(--s6) var(--s8);
  backdrop-filter: blur(14px);
  transition:
    border-color 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
  will-change: transform;
}
.process-step:hover {
  border-color: rgba(193, 45, 224, 0.5);
  transform: translateX(8px);
  box-shadow: -8px 0 32px rgba(120, 23, 182, 0.12);
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 0 20px var(--glow);
  flex-shrink: 0;
}
.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.65;
}
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-top: 0.6rem;
}
.step-tag i {
  font-size: 0.7rem;
}

/* ─── PACKAGES ───────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1160px;
  margin: var(--s12) auto 0;
  align-items: start;
}

/* ─── PREMIUM PKG CARD ───────────────────────────────── */
.pkg-card {
  position: relative;
  border-radius: 1.75rem;
  padding: 2rem 1.75rem 1.75rem;
  overflow: hidden;
  background: rgba(8, 4, 22, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(193, 45, 224, 0.18);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    border-color 0.4s;
  will-change: transform;
}
.pkg-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 36px 88px rgba(0, 0, 0, 0.65),
    0 0 48px rgba(193, 45, 224, 0.08);
}
.pkg-card.popular {
  border-color: rgba(193, 45, 224, 0.5);
  box-shadow:
    0 20px 64px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(193, 45, 224, 0.22);
  transform: translateY(-4px) scale(1.025);
}
.pkg-card.popular:hover {
  transform: translateY(-16px) scale(1.025);
  box-shadow:
    0 44px 100px rgba(0, 0, 0, 0.7),
    0 0 72px rgba(193, 45, 224, 0.3);
}
.pkg-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0.5;
  transition: opacity 0.4s;
}
.pkg-card:hover .pkg-mesh {
  opacity: 0.88;
}
.pkg-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    108deg,
    transparent 35%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 65%
  );
  background-size: 200% 200%;
  animation: pkg-shimmer 6s ease-in-out infinite;
}
@keyframes pkg-shimmer {
  0% {
    background-position: 200% 200%;
  }
  50% {
    background-position: 0% 0%;
  }
  100% {
    background-position: -200% -200%;
  }
}
.pkg-popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.4rem;
  border-radius: 0 0 var(--r-full) var(--r-full);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 5;
}
.pkg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 1.75rem;
}
.pkg-logo-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.pkg-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.pkg-tier-pill {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.24rem 0.8rem;
  border-radius: var(--r-full);
  color: #fff;
}
.pkg-orb-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
}
.pkg-orb {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  margin-bottom: 0.75rem;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s;
}
.pkg-card:hover .pkg-orb {
  transform: scale(1.1) translateY(-4px);
}
.pkg-orb::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0.25;
  animation: orb-ring 3.5s ease-in-out infinite;
}
@keyframes orb-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.25;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.58;
  }
}
.pkg-tier-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.pkg-name {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.pkg-price-block {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 1.5rem;
}
.pkg-price-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}
.pkg-price-label {
  font-size: 0.72rem;
  color: var(--text-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  display: block;
}
.pkg-divider {
  position: relative;
  z-index: 2;
  height: 1px;
  border-radius: 1px;
  margin-bottom: 1.25rem;
  opacity: 0.3;
}
.pkg-features {
  position: relative;
  z-index: 2;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: var(--text-light);
}
.pkg-features li.off {
  color: var(--text-faint);
}
.pkg-feat-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
}
.pkg-feat-icon.on {
  background: rgba(193, 45, 224, 0.15);
}
.pkg-feat-icon.off-ic {
  background: rgba(255, 255, 255, 0.05);
}
.pkg-cta {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0.92rem 1.5rem;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  border: none;
  cursor: pointer;
  transition:
    box-shadow 0.3s,
    transform 0.2s;
}
.pkg-cta:hover {
  transform: translateY(-2px);
}

/* ─── SUCCESS MODAL ──────────────────────────────────── */
#success-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
#success-modal.active {
  opacity: 1;
  pointer-events: all;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 16, 0.85);
  backdrop-filter: blur(20px);
}
.modal-panel {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(120, 23, 182, 0.15),
    rgba(5, 5, 16, 0.9)
  );
  border: 1px solid var(--glass-border);
  border-radius: 1.75rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(120, 23, 182, 0.2);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.5s var(--ease-out);
}
#success-modal.active .modal-panel {
  transform: translateY(0) scale(1);
}
#confetti-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 1.75rem;
}
.modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s6);
  font-size: 2.2rem;
  box-shadow: 0 0 40px rgba(193, 45, 224, 0.5);
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(193, 45, 224, 0.4);
  }
  50% {
    box-shadow: 0 0 60px rgba(193, 45, 224, 0.8);
  }
}
.modal-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}
.modal-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 0.75rem;
}
.modal-pkg-name {
  color: var(--primary-light);
}
.modal-body {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--s8);
}
.modal-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--s6);
}
.contact-btn-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem;
  border-radius: var(--r-xl);
  font-weight: 600;
  font-size: 0.9rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.contact-btn-modal.primary {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  box-shadow: 0 0 20px var(--glow);
}
.contact-btn-modal.primary:hover {
  box-shadow: 0 0 32px rgba(193, 45, 224, 0.65);
  transform: translateY(-2px);
}
.contact-btn-modal.outline {
  border: 1px solid var(--glass-border);
  color: var(--text-light);
}
.contact-btn-modal.outline:hover {
  background: rgba(193, 45, 224, 0.08);
  border-color: var(--primary);
}
.modal-close {
  font-size: 0.8rem;
  color: var(--text-faint);
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--text-gray);
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem) 2rem;
  border-top: 1px solid rgba(193, 45, 224, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s12);
  max-width: 1100px;
  margin: 0 auto var(--s12);
}
.footer-brand p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 34ch;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--s4);
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-gray);
  transition: all 0.3s;
}
.social-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 14px var(--glow);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: var(--s4);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-gray);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--primary-light);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: var(--s6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-faint);
}
.footer-bottom a {
  color: var(--primary-light);
}

/* ─── DIVIDERS ───────────────────────────────────────── */
.section-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(193, 45, 224, 0.3),
    transparent
  );
  margin: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .platforms-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .pkg-card.popular {
    transform: none;
  }
  .pkg-card.popular:hover {
    transform: translateY(-12px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }
}
@media (max-width: 600px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}
/* ─── LOADING SCREEN ─────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
#loader.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
}

/* Spinning ring */
.loader-ring {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.loader-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(193, 45, 224, 0.1);
}
.loader-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--primary-light);
  animation: loader-spin 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  filter: drop-shadow(0 0 8px var(--glow));
}
@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Logo inside ring */
.loader-logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loader-breathe 2s ease-in-out infinite;
}
.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(193, 45, 224, 0.5));
}
@keyframes loader-breathe {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.06);
    filter: brightness(1.15);
  }
}

/* Brand text */
.loader-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.35em;
  background: linear-gradient(
    120deg,
    var(--primary-light),
    var(--primary),
    var(--primary-light)
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loader-shimmer 2.5s ease-in-out infinite;
  margin-bottom: 1.25rem;
}
@keyframes loader-shimmer {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: -100% 50%;
  }
}

/* Bouncing dots */
.loader-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
}
.loader-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: loader-bounce 1.4s ease-in-out infinite;
}
.loader-dots span:nth-child(2) {
  animation-delay: 0.16s;
}
.loader-dots span:nth-child(3) {
  animation-delay: 0.32s;
}
@keyframes loader-bounce {
  0%,
  80%,
  100% {
    transform: scale(0.4);
    opacity: 0.3;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Loading text */
.loader-text {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ─── LANGUAGE PICKER ────────────────────────────────── */
#lang-picker {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #050510;
  transition: opacity 0.5s ease;
}
#lang-picker.hidden {
  opacity: 0;
  pointer-events: none;
}
.lp-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 15% 25%, rgba(120, 23, 182, 0.55) 0px, transparent 50%),
    radial-gradient(at 85% 75%, rgba(193, 45, 224, 0.5) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(120, 23, 182, 0.22) 0px, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.lp-panel {
  position: relative;
  background: rgba(10, 6, 26, 0.82);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(193, 45, 224, 0.28);
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(120, 23, 182, 0.22);
  animation: lp-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes lp-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(28px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.lp-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.lp-logo-row span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #e67dfa, #c12de0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.65rem;
}
.lp-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  letter-spacing: -0.02em;
  color: #f8fafc;
  margin-bottom: 0.5rem;
}
.lp-sub {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.lp-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lp-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(193, 45, 224, 0.18);
  border-radius: 1.25rem;
  cursor: pointer;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  color: inherit;
  font: inherit;
}
.lp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(193, 45, 224, 0.12),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.lp-btn:hover {
  background: rgba(193, 45, 224, 0.08);
  border-color: rgba(193, 45, 224, 0.55);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(120, 23, 182, 0.3);
}
.lp-btn:hover::before {
  opacity: 1;
}
.lp-flag {
  font-size: 2.2rem;
  line-height: 1;
  display: block;
}
.lp-lang-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #f8fafc;
}
.lp-lang-native {
  font-size: 0.68rem;
  color: #94a3b8;
  letter-spacing: 0.06em;
}
.lp-btn[data-lang="ar"] .lp-lang-name {
  font-size: 1.2rem;
}

/* ─── DISCOUNT BANNER ────────────────────────────────── */
.discount-banner {
  max-width: 860px;
  margin: 2rem auto 0;
  padding: 1rem 1.75rem;
  background: rgba(193, 45, 224, 0.08);
  border: 1px solid rgba(193, 45, 224, 0.3);
  border-radius: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  backdrop-filter: blur(12px);
}
.discount-percent {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  background: linear-gradient(120deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── RTL OVERRIDES ──────────────────────────────────── */
[dir="rtl"] nav {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav-logo-wrap {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}
[dir="rtl"] .about-grid {
  direction: rtl;
}
[dir="rtl"] .about-tag-row {
  direction: rtl;
}
[dir="rtl"] .text-center .section-label,
[dir="rtl"] .text-center .section-title,
[dir="rtl"] .text-center .section-sub {
  text-align: center;
}
[dir="rtl"] .section-label,
[dir="rtl"] .section-title,
[dir="rtl"] .section-sub {
  text-align: right;
}
[dir="rtl"] .process-step {
  direction: rtl;
}
[dir="rtl"] .process-step:hover {
  transform: translateX(-6px);
}
[dir="rtl"] .footer-grid,
[dir="rtl"] .footer-col ul,
[dir="rtl"] .footer-bottom {
  direction: rtl;
}
[dir="rtl"] .hero {
  direction: rtl;
}
[dir="rtl"] .pkg-header {
  flex-direction: row-reverse;
}
[dir="rtl"] .discount-banner {
  direction: rtl;
}

@media (max-width: 600px) {
  .lp-options {
    grid-template-columns: 1fr;
  }
  .lp-btn {
    flex-direction: row;
    gap: 0.75rem;
    text-align: left;
    padding: 1rem 1.25rem;
  }
  .lp-flag {
    font-size: 1.8rem;
  }
}
