@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS — Dark Neon Gen-Z Theme
   ═══════════════════════════════════════ */
:root {
  /* Core dark palette */
  --bg-primary: #050510;
  --bg-secondary: #0a0a1a;
  --bg-tertiary: #0f0f2e;
  --bg-card: rgba(15, 15, 46, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(255, 255, 255, 0.06);

  /* Neon accent colors */
  --neon-purple: #a855f7;
  --neon-cyan: #06b6d4;
  --neon-pink: #ec4899;
  --neon-blue: #3b82f6;
  --neon-green: #10b981;
  --neon-yellow: #facc15;
  --neon-orange: #f97316;

  /* Gradient combos */
  --gradient-primary: linear-gradient(135deg, #a855f7, #ec4899, #3b82f6);
  --gradient-hero: linear-gradient(135deg, #0f0f2e 0%, #1a0533 25%, #0d1b3e 50%, #150a30 75%, #0a0a1a 100%);
  --gradient-card: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.05));
  --gradient-cta: linear-gradient(135deg, #7c3aed, #ec4899, #3b82f6);
  --gradient-text: linear-gradient(135deg, #a855f7, #ec4899);

  /* Text colors */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-accent: #a855f7;

  /* Borders */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(168, 85, 247, 0.3);

  /* Shadows / Glows */
  --glow-purple: 0 0 20px rgba(168, 85, 247, 0.3), 0 0 60px rgba(168, 85, 247, 0.1);
  --glow-cyan: 0 0 20px rgba(6, 182, 212, 0.3), 0 0 60px rgba(6, 182, 212, 0.1);
  --glow-pink: 0 0 20px rgba(236, 72, 153, 0.3), 0 0 60px rgba(236, 72, 153, 0.1);
  --glow-blue: 0 0 20px rgba(59, 130, 246, 0.3);

  /* Legacy — keep for dashboard pages */
  --primary: #a855f7;
  --primary-dark: #9333ea;
  --primary-light: #c084fc;
  --secondary: #06b6d4;
  --accent: #facc15;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --dark: #0f172a;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.font-poppins {
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ═══════════════════════════════════════
   ANIMATED BACKGROUND — Hero Mesh
   ═══════════════════════════════════════ */
.hero-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-mesh::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  animation: meshFloat1 12s ease-in-out infinite;
}

.hero-mesh::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  animation: meshFloat2 15s ease-in-out infinite;
}

.hero-mesh-extra {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
  animation: meshFloat3 18s ease-in-out infinite;
}

@keyframes meshFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10%, 5%) scale(1.1); }
  66% { transform: translate(-5%, -10%) scale(0.95); }
}

@keyframes meshFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8%, -5%) scale(1.15); }
}

@keyframes meshFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(5%, 10%) rotate(5deg); }
}

/* Grid dot pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
  z-index: 1;
}

/* ═══════════════════════════════════════
   NAVBAR — Dark Glass
   ═══════════════════════════════════════ */
.nav-dark {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(5, 5, 16, 0.8);
  border-bottom: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}

.nav-dark.scrolled {
  background: rgba(5, 5, 16, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger animation */
.hamburger {
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(5, 5, 16, 0.98);
  border-top: 1px solid var(--border-glass);
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-menu a {
  display: block;
  padding: 0.875rem 1.5rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-menu a:hover {
  color: var(--neon-purple);
  background: rgba(168, 85, 247, 0.05);
  padding-left: 2rem;
}

/* ═══════════════════════════════════════
   BUTTONS — Neon Glow
   ═══════════════════════════════════════ */
.btn-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-neon-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.btn-neon-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-purple);
}

.btn-neon-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-neon-primary:hover::before {
  opacity: 1;
}

.btn-neon-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-glow);
  backdrop-filter: blur(10px);
}

.btn-neon-outline:hover {
  border-color: var(--neon-purple);
  background: rgba(168, 85, 247, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--glow-purple);
}

/* Legacy btn-primary for dashboard pages */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

/* ═══════════════════════════════════════
   GLASSMORPHISM CARDS
   ═══════════════════════════════════════ */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), transparent, rgba(6, 182, 212, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.01);
  background: var(--bg-glass-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(168, 85, 247, 0.08);
}

/* Service card neon icon glow */
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.service-icon.instagram {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(168, 85, 247, 0.15));
  color: #ec4899;
}

.service-icon.youtube {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.service-icon.facebook {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

.service-icon.twitter {
  background: rgba(148, 163, 184, 0.12);
  color: #94a3b8;
}

.service-icon.tiktok {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.service-icon.telegram {
  background: rgba(6, 182, 212, 0.12);
  color: #06b6d4;
}

.glass-card:hover .service-icon {
  transform: scale(1.1) rotate(-3deg);
}

/* ═══════════════════════════════════════
   GRADIENT TEXT
   ═══════════════════════════════════════ */
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════
   SECTION STYLES
   ═══════════════════════════════════════ */
.section-dark {
  background: var(--bg-primary);
  position: relative;
}

.section-darker {
  background: var(--bg-secondary);
  position: relative;
}

.section-gradient {
  background: var(--gradient-hero);
  position: relative;
}

/* Section divider line */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

/* ═══════════════════════════════════════
   BADGE / PILL
   ═══════════════════════════════════════ */
.badge-neon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.08);
  color: var(--neon-purple);
}

.badge-neon .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-green);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* ═══════════════════════════════════════
   ORBITING ICONS — Hero
   ═══════════════════════════════════════ */
.orbit-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.orbit-ring {
  position: absolute;
  inset: 10%;
  border: 1px dashed rgba(168, 85, 247, 0.15);
  border-radius: 50%;
  animation: orbitRotate 30s linear infinite;
}

.orbit-ring-inner {
  position: absolute;
  inset: 25%;
  border: 1px dashed rgba(6, 182, 212, 0.12);
  border-radius: 50%;
  animation: orbitRotate 20s linear infinite reverse;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: var(--glow-purple);
  z-index: 2;
}

.orbit-icon {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  animation: counterRotate 30s linear infinite;
  z-index: 3;
  transition: transform 0.3s ease;
}

.orbit-icon:hover {
  transform: scale(1.2) !important;
}

.orbit-icon:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); background: rgba(236, 72, 153, 0.15); }
.orbit-icon:nth-child(2) { top: 25%; right: 0; background: rgba(239, 68, 68, 0.15); }
.orbit-icon:nth-child(3) { bottom: 25%; right: 0; background: rgba(59, 130, 246, 0.15); }
.orbit-icon:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); background: rgba(148, 163, 184, 0.15); }
.orbit-icon:nth-child(5) { bottom: 25%; left: 0; background: rgba(16, 185, 129, 0.15); }
.orbit-icon:nth-child(6) { top: 25%; left: 0; background: rgba(6, 182, 212, 0.15); }

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes counterRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* ═══════════════════════════════════════
   TYPEWRITER EFFECT
   ═══════════════════════════════════════ */
.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--neon-purple);
  margin-left: 4px;
  animation: blink 0.8s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem;
  border-radius: 20px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════
   MARQUEE — Social Proof
   ═══════════════════════════════════════ */
.marquee-wrapper {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(168, 85, 247, 0.02);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.marquee-item span.icon {
  font-size: 1.2rem;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   TIMELINE — How It Works
   ═══════════════════════════════════════ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan), var(--neon-pink), var(--neon-blue));
  border-radius: 2px;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 2;
}

.timeline-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.3;
  animation: stepPulse 3s ease-in-out infinite;
}

.step-1 .timeline-number { background: linear-gradient(135deg, #a855f7, #9333ea); }
.step-1 .timeline-number::after { border-color: #a855f7; }
.step-2 .timeline-number { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.step-2 .timeline-number::after { border-color: #06b6d4; animation-delay: 0.5s; }
.step-3 .timeline-number { background: linear-gradient(135deg, #ec4899, #db2777); }
.step-3 .timeline-number::after { border-color: #ec4899; animation-delay: 1s; }
.step-4 .timeline-number { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.step-4 .timeline-number::after { border-color: #3b82f6; animation-delay: 1.5s; }

@keyframes stepPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0.6; }
}

.timeline-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════ */
.pricing-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.pricing-scroll::-webkit-scrollbar {
  display: none;
}

.pricing-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--glow-purple);
}

.pricing-card.popular {
  border-color: var(--neon-purple);
  background: rgba(168, 85, 247, 0.06);
}

.pricing-card.popular::before {
  content: '🔥 Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  opacity: 0.08;
  color: var(--neon-purple);
  font-family: Georgia, serif;
  line-height: 1;
}

.avatar-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 2px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--neon-purple);
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--neon-yellow);
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════
   FAQ — Neon Accordion
   ═══════════════════════════════════════ */
.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
}

.faq-item:hover {
  border-color: rgba(168, 85, 247, 0.2);
}

.faq-item.active {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.05);
}

.faq-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Space Grotesk', sans-serif;
  transition: color 0.2s ease;
}

.faq-btn:hover {
  color: var(--neon-purple);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(168, 85, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--neon-purple);
  color: white;
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.open {
  max-height: 500px;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(168, 85, 247, 0.06) 1px, transparent 0);
  background-size: 30px 30px;
}

/* Pulsing CTA button */
.btn-cta-pulse {
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(168, 85, 247, 0.5), 0 0 60px rgba(168, 85, 247, 0.2); }
}

/* ═══════════════════════════════════════
   FOOTER — Ultra Dark
   ═══════════════════════════════════════ */
.footer-dark {
  background: #030308;
  border-top: 1px solid var(--border-glass);
  position: relative;
}

.footer-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: all 0.2s ease;
  position: relative;
}

.footer-link:hover {
  color: var(--neon-purple);
  padding-left: 4px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-social-icon:hover {
  border-color: var(--neon-purple);
  background: rgba(168, 85, 247, 0.1);
  transform: translateY(-3px);
  box-shadow: var(--glow-purple);
}

/* ═══════════════════════════════════════
   UTILITY — Neon Price Tag
   ═══════════════════════════════════════ */
.neon-price {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(168, 85, 247, 0.1);
  color: var(--neon-purple);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════
   FLOATING ANIMATION
   ═══════════════════════════════════════ */
.animate-float {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* ═══════════════════════════════════════
   SCROLLBAR — Dark
   ═══════════════════════════════════════ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(168, 85, 247, 0.5);
}

/* ═══════════════════════════════════════
   STATUS BADGES — Dashboard (preserved)
   ═══════════════════════════════════════ */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-pending { background: #fef3c7; color: #92400e; }
.status-processing { background: #dbeafe; color: #1e40af; }
.status-in-progress { background: #e0e7ff; color: #3730a3; }
.status-completed { background: #d1fae5; color: #065f46; }
.status-partial { background: #fed7aa; color: #9a3412; }
.status-refunded { background: #f3e8ff; color: #6b21a8; }
.status-cancelled { background: #fee2e2; color: #991b1b; }

/* ═══════════════════════════════════════
   SIDEBAR — Dashboard (preserved)
   ═══════════════════════════════════════ */
.sidebar {
  width: 260px;
  min-height: 100vh;
  background: var(--gray-900);
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 40;
  transition: transform 0.3s ease;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 35;
}

/* ═══════════════════════════════════════
   TABLE / FORMS — Dashboard (preserved)
   ═══════════════════════════════════════ */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive table {
  min-width: 600px;
}

.stat-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.counter-animation {
  display: inline-block;
}

/* Keep nav-blur for dashboard pages that still use it */
.nav-blur {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Keep hero-gradient for any other pages */
.hero-gradient {
  background: linear-gradient(-45deg, #7c3aed, #a855f7, #3b82f6, #ec4899);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.footer-gradient {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1e1b4b 100%);
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile First
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-overlay.show {
    display: block;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1.25rem;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-step {
    text-align: left;
    padding-left: 70px;
    min-height: 60px;
  }

  .timeline-number {
    position: absolute;
    left: 0;
    margin: 0;
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .orbit-container {
    max-width: 300px;
  }

  .orbit-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .orbit-center {
    width: 72px;
    height: 72px;
    font-size: 1.8rem;
    border-radius: 18px;
  }

  .pricing-card {
    flex: 0 0 240px;
  }
}

@media (max-width: 480px) {
  .orbit-container {
    max-width: 250px;
  }

  .orbit-icon {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .orbit-center {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    border-radius: 14px;
  }

  .stats-bar {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }
}

/* ═══════════════════════════════════════
   DASHBOARD SPECIFIC (DARK THEME)
   ═══════════════════════════════════════ */

/* Dashboard Layout */
.dashboard-body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
}

.dashboard-sidebar {
  background: var(--bg-glass);
  border-right: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 260px;
  z-index: 40;
  transition: transform 0.3s ease;
}

.dashboard-topbar {
  background: rgba(5, 5, 16, 0.8);
  border-bottom: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 30;
}

/* Dashboard Cards & Panels */
.dashboard-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.dashboard-stat-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.dashboard-stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

/* Tables */
.dashboard-table-container {
  overflow-x: auto;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
}

.dashboard-table th {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-glass);
}

.dashboard-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.dashboard-table tr:hover td {
  background: rgba(168, 85, 247, 0.05);
  color: var(--neon-purple);
  border-bottom-color: var(--neon-purple);
}

/* Forms & Inputs */
.dashboard-input {
  background-color: rgba(168, 85, 247, 0.05) !important;
  border: 1px solid var(--border-glass) !important;
  color: var(--text-primary) !important;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.dashboard-input:focus {
  outline: none;
  border-color: var(--neon-purple);
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.dashboard-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Sidebar Links */
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.sidebar-link:hover {
  color: var(--text-primary);
  background: rgba(168, 85, 247, 0.05);
  border-color: var(--border-glow);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.1);
}

.sidebar-link.active {
  color: var(--neon-cyan);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.sidebar-link.active svg {
  color: var(--neon-cyan);
}

.sidebar-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.sidebar-link:hover svg {
  color: var(--text-primary);
}

/* Dropdown */
.dashboard-dropdown {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}
