/* ====================================
   🎨 X FOOD - MODERN DESIGN SYSTEM
   SaaS Restaurant Management Platform
   ==================================== */

/* ============= RESET & BASE ============= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

:root {
  /* 🎨 Color Palette - Dark Premium Theme */
  --color-bg-primary: #0B0F19;
  --color-bg-secondary: #141922;
  --color-bg-tertiary: #1C2333;
  --color-bg-elevated: #252D3F;
  
  /* Accent Colors */
  --color-accent-primary: #FF6B35;
  --color-accent-secondary: #FFB627;
  --color-accent-tertiary: #6C5CE7;
  --color-accent-success: #00D9A3;
  --color-accent-cyan: #00C4FF;
  
  /* Text Colors */
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #CBD5E1;
  --color-text-tertiary: #94A3B8;
  --color-text-muted: #64748B;
  
  /* Glass Morphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  
  /* Spacing System */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.5);
  --shadow-premium: 0 12px 40px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-premium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============= TYPOGRAPHY ============= */
body {
  font-family: 'Cairo', 'Inter', -apple-system, system-ui, sans-serif;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* RTL fix for floating components */
html[dir="rtl"] #enableAudioBtn {
  right: auto !important;
  left: 24px !important;
}

/* Advanced Tech Background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    /* Glowing Orbs */
    radial-gradient(circle 400px at 15% 85%, rgba(255, 107, 53, 0.15) 0%, transparent 60%),
    radial-gradient(circle 500px at 85% 15%, rgba(108, 92, 231, 0.12) 0%, transparent 60%),
    radial-gradient(circle 350px at 50% 50%, rgba(0, 196, 255, 0.08) 0%, transparent 55%),
    radial-gradient(circle 300px at 90% 70%, rgba(255, 182, 39, 0.1) 0%, transparent 50%),
    radial-gradient(circle 250px at 30% 20%, rgba(0, 217, 163, 0.09) 0%, transparent 45%),
    /* Circuit Lines */
    linear-gradient(45deg, transparent 48%, rgba(255, 107, 53, 0.03) 49%, rgba(255, 107, 53, 0.03) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(108, 92, 231, 0.03) 49%, rgba(108, 92, 231, 0.03) 51%, transparent 52%),
    /* Tech Dots Pattern */
    radial-gradient(circle 2px at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 100%),
    radial-gradient(circle 2px at 75% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  background-size: 
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    100% 100%,
    200px 200px,
    200px 200px,
    80px 80px,
    80px 80px;
  animation: backgroundTechPulse 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes backgroundTechPulse {
  0%, 100% { 
    opacity: 0.4; 
    transform: scale(1) rotate(0deg); 
  }
  33% { 
    opacity: 0.6; 
    transform: scale(1.03) rotate(0.5deg); 
  }
  66% { 
    opacity: 0.5; 
    transform: scale(1.02) rotate(-0.5deg); 
  }
}

/* Hexagonal Tech Grid Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    /* Primary Grid */
    linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px),
    /* Secondary Grid */
    linear-gradient(rgba(108, 92, 231, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 92, 231, 0.025) 1px, transparent 1px),
    /* Diagonal Lines */
    linear-gradient(45deg, transparent 48%, rgba(0, 196, 255, 0.015) 49%, rgba(0, 196, 255, 0.015) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(0, 196, 255, 0.015) 49%, rgba(0, 196, 255, 0.015) 51%, transparent 52%),
    /* Circuit Dots */
    radial-gradient(circle 1.5px at 100% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 100%),
    radial-gradient(circle 1px at 0% 100%, rgba(255, 107, 53, 0.2) 0%, transparent 100%);
  background-size: 
    50px 50px,
    50px 50px,
    100px 100px,
    100px 100px,
    150px 150px,
    150px 150px,
    50px 50px,
    50px 50px;
  background-position:
    0 0,
    0 0,
    25px 25px,
    25px 25px,
    0 0,
    0 0,
    0 0,
    25px 25px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  animation: gridShift 30s linear infinite;
}

@keyframes gridShift {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(50px) translateX(50px); }
}

/* --- Fluid Testimonials (Double Marquee) --- */
.testimonials-marquee-wrapper {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.testimonials-marquee {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 60s linear infinite;
}

.testimonials-marquee.reverse {
    animation: marquee-reverse 50s linear infinite;
    margin-top: 30px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.testimonial-card-tech {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
    width: 400px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    flex-shrink: 0;
}

.testimonial-card-tech:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-accent);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255, 107, 53, 0.1);
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    opacity: 0.1;
    color: var(--color-accent);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--color-accent);
    opacity: 0.8;
}

.verified-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
    100% { opacity: 1; transform: scale(1); }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ============= LAYOUT ============= */
.main-content {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-2xl);
}

@media (max-width: 768px) {
  .container,
  .container-wide {
    padding: 0 var(--space-md);
  }
}

/* ============= MODERN TOPBAR ============= */
.topbar-modern {
  background: rgba(11, 15, 25, 0.4);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar-modern.scrolled {
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 0;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.logo-orb-premium {
  width: 42px;
  height: 42px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-core {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
  border-radius: 14px;
  transform: rotate(45deg);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  transition: all 0.4s ease;
}

.orb-ring {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 18px;
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.group:hover .orb-core {
  transform: rotate(135deg) scale(1.1);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.group:hover .orb-ring {
  transform: rotate(135deg) scale(1.05);
  border-color: rgba(255, 182, 39, 0.6);
}

.nav-link-modern {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-link-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link-modern:hover {
  color: #fff;
}

.nav-link-modern:hover::after {
  width: 100%;
}

.lang-btn {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border-radius: 99px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-btn-primary {
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.header-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.header-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.header-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ============= MODERN DASHBOARD SIDEBAR ============= */
.sidebar-modern {
  position: fixed;
  top: 0;
  left: 0;
  width: 224px;
  height: 100vh;
  background: rgba(11, 15, 25, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  z-index: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-modern.collapsed {
  width: 70px;
}

html[dir="rtl"] .sidebar-modern {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-toggle {
  position: absolute;
  top: 25px;
  right: -12px;
  width: 24px;
  height: 24px;
  background: #f59e0b;
  border: none;
  border-radius: 50%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
  font-size: 10px;
}

html[dir="rtl"] .sidebar-toggle {
  right: auto;
  left: -12px;
  transform: rotate(180deg);
}

.sidebar-modern.collapsed .sidebar-toggle {
  transform: rotate(180deg);
}

html[dir="rtl"] .sidebar-modern.collapsed .sidebar-toggle {
  transform: rotate(0deg);
}

.sidebar-modern.collapsed .brand-text,
.sidebar-modern.collapsed .nav-item span,
.sidebar-modern.collapsed .sidebar-footer {
  display: none;
}

.sidebar-modern.collapsed .sidebar-header {
  padding: 30px 0;
  justify-content: center;
}

.sidebar-modern.collapsed .nav-item {
  justify-content: center;
  padding: 12px;
}

.sidebar-header {
  padding: 30px 24px;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.sidebar-brand .brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-orb-premium.mini {
  width: 32px;
  height: 32px;
}

.logo-orb-premium.mini .orb-core {
  border-radius: 8px;
}

.sidebar-nav {
  flex: 1;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.sidebar-nav::-webkit-scrollbar {
  width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.sidebar-nav:hover::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.nav-item.active {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 182, 39, 0.05));
  color: var(--color-accent-primary);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.pos-sidebar-link {
  margin-top: 10px;
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.2);
  color: #c084fc !important;
}

.pos-sidebar-link:hover {
  background: rgba(147, 51, 234, 0.2);
  border-color: rgba(147, 51, 234, 0.4);
}

.sidebar-footer {
  padding: 24px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lang-switcher-sidebar {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 10px;
}

.lang-switcher-sidebar a {
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
}

.lang-switcher-sidebar a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.logout-btn-sidebar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.logout-btn-sidebar:hover {
  background: #ef4444;
  color: #fff;
}

/* ============= DASHBOARD MAIN CONTENT ============= */
.main-content.has-sidebar {
  margin-left: 224px;
  padding: 40px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-content.has-sidebar.collapsed {
  margin-left: 70px;
}

html[dir="rtl"] .main-content.has-sidebar {
  margin-left: 0;
  margin-right: 224px;
}

html[dir="rtl"] .main-content.has-sidebar.collapsed {
  margin-right: 70px;
}

@media (max-width: 1024px) {
  .sidebar-modern {
    transform: translateX(-100%);
  }
  
  html[dir="rtl"] .sidebar-modern {
    transform: translateX(100%);
  }

  .main-content.has-sidebar {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 20px;
  }
}

.stat-card-v2 {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.3s ease;
}

.stat-card-v2:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-5px);
}

/* ============= DASHBOARD ELEMENTS ============= */
.stat-pill {
  display: flex;
  flex-direction: column;
  padding: 12px 24px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  min-width: 120px;
}

.stat-pill .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 1px;
}

.stat-pill .value {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.dashboard-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
}

.dashboard-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.dashboard-tab.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dashboard-tab span {
  font-size: 18px;
}

.data-table-modern {
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
}

.data-table-modern th {
  background: rgba(30, 41, 59, 0.8);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #64748b;
  padding: 16px 24px;
}

.data-table-modern td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: #cbd5e1;
}

.data-table-modern tr:last-child td {
  border-bottom: none;
}

.data-table-modern tr:hover td {
  background: rgba(255, 255, 255, 0.01);
}

/* ============= HERO SECTION ============= */
.hero-main {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (max-width: 968px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 20px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent-secondary);
  margin-bottom: var(--space-lg);
  animation: badgeFloat 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-secondary);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleReveal 1s ease-out;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-gradient {
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary), var(--color-accent-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 560px;
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: -8px;
  margin-bottom: var(--space-xl);
}

.quick-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
}

.quick-link-btn:hover {
  color: var(--color-text-primary);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ============= BUTTONS ============= */
.btn {
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
  color: white;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-text-primary);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent-tertiary), #8B5CF6);
  color: white;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
}

.btn-accent:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(108, 92, 231, 0.5);
}

.btn-cta {
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
  color: white;
  padding: 18px 40px;
  font-size: 18px;
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.btn-cta:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 56px rgba(255, 107, 53, 0.6);
}

/* ============= ACTIVITY SHOWCASE ============= */
.activity-showcase-section {
  padding: 30px 0 100px;
  position: relative;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .activity-grid {
    grid-template-columns: 1fr;
    max-width: 780px;
    margin: 0 auto;
  }
}

.activity-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.activity-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.6);
}

.activity-media {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: var(--color-bg-secondary);
}

.activity-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0) 25%, rgba(11, 15, 25, 0.65) 100%);
}

.activity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.activity-card:hover .activity-media img {
  transform: scale(1.08);
}

.activity-content {
  padding: var(--space-xl);
}

.activity-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.activity-description {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

/* ============= HERO STATS ============= */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: var(--space-2xl);
  padding-top: var(--space-xl);
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  position: relative;
  animation: statReveal 0.8s ease-out backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }

@keyframes statReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
  transition: all var(--transition-base);
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 13px;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ============= HERO VISUAL ============= */
.hero-visual {
  position: relative;
  height: 500px;
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.visual-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
}

.visual-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.6);
}

.card-dashboard {
  width: 320px;
  height: 240px;
  top: 50px;
  left: 0;
  animation: float 6s ease-in-out infinite;
}

.card-order {
  width: 280px;
  height: 100px;
  top: 320px;
  right: 40px;
  animation: float 6s ease-in-out 1s infinite;
}

.card-theme {
  width: 160px;
  height: 160px;
  top: 20px;
  right: 0;
  animation: float 6s ease-in-out 2s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: dotBlink 2s ease-in-out infinite;
}

.card-dots span:nth-child(1) {
  background: var(--color-accent-primary);
}

.card-dots span:nth-child(2) {
  background: var(--color-accent-cyan);
  animation-delay: 0.3s;
}

.card-dots span:nth-child(3) {
  background: var(--color-accent-tertiary);
  animation-delay: 0.6s;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.card-title {
  font-size: 12px;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 140px;
}

.bar {
  flex: 1;
  background: linear-gradient(180deg, var(--color-accent-primary), var(--color-accent-secondary));
  border-radius: 6px 6px 0 0;
  animation: barGrow 1.5s ease-out backwards;
  transition: all var(--transition-base);
}

.bar:hover {
  background: linear-gradient(180deg, var(--color-accent-secondary), var(--color-accent-primary));
  transform: scaleY(1.05);
}

.bar:nth-child(1) { animation-delay: 0.1s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.3s; }
.bar:nth-child(4) { animation-delay: 0.4s; }
.bar:nth-child(5) { animation-delay: 0.5s; }

@keyframes barGrow {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.order-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.order-icon {
  font-size: 32px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.order-info {
  flex: 1;
}

.order-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.order-status {
  font-size: 12px;
  color: var(--color-text-tertiary);
}

.order-badge {
  padding: 4px 12px;
  background: rgba(0, 217, 163, 0.2);
  border: 1px solid var(--color-accent-success);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-accent-success);
}

.pulse {
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 217, 163, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 217, 163, 0);
  }
}

.features-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.feature-item-smart {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.4;
}

.feature-item-smart:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
    color: white;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .features-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-list-grid {
        grid-template-columns: 1fr;
    }
    .feature-item-smart {
        white-space: normal;
    }
}

.theme-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  justify-content: center;
}

.theme-color {
  height: 32px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
}

.theme-color:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ============= SECTIONS ============= */
.features-section,
.systems-section,
.how-it-works-section,
.cta-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  animation: sectionReveal 0.8s ease-out;
}

@keyframes sectionReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, #FFFFFF, #CBD5E1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============= FEATURES GRID ============= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 968px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  animation: cardReveal 0.6s ease-out backwards;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg) scale(1.1);
}

.icon-gradient-1 {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 182, 39, 0.1));
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.icon-gradient-2 {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(139, 92, 246, 0.1));
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
}

.icon-gradient-3 {
  background: linear-gradient(135deg, rgba(0, 196, 255, 0.2), rgba(0, 217, 163, 0.1));
  box-shadow: 0 8px 24px rgba(0, 196, 255, 0.3);
}

.icon-gradient-4 {
  background: linear-gradient(135deg, rgba(0, 217, 163, 0.2), rgba(16, 185, 129, 0.1));
  box-shadow: 0 8px 24px rgba(0, 217, 163, 0.3);
}

.icon-gradient-5 {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(248, 113, 113, 0.1));
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.icon-gradient-6 {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.1));
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.feature-icon svg {
  color: white;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.feature-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-tertiary);
}

/* ============= DEMO SECTION ============= */
.demo-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .demo-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============= SYSTEMS GRID ============= */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 968px) {
  .systems-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
}

.system-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  animation: cardReveal 0.8s ease-out backwards;
}

.system-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.system-card:hover::after {
  opacity: 1;
}

.system-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
}

.system-card:nth-child(1) { animation-delay: 0.2s; }
.system-card:nth-child(2) { animation-delay: 0.4s; }
.system-card:nth-child(3) { animation-delay: 0.6s; }

.system-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
}

.system-card:hover .system-icon {
  transform: rotateY(360deg) scale(1.15);
}

.system-icon.superadmin {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(139, 92, 246, 0.1));
  box-shadow: 0 12px 32px rgba(108, 92, 231, 0.4);
}

.system-icon.restaurant {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 182, 39, 0.1));
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.system-icon.customer {
  background: linear-gradient(135deg, rgba(0, 196, 255, 0.2), rgba(0, 217, 163, 0.1));
  box-shadow: 0 12px 32px rgba(0, 196, 255, 0.4);
}

.system-icon svg {
  color: white;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* ============= STEPS (HOW IT WORKS) ============= */
.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.step-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  position: relative;
  transition: all var(--transition-base);
  animation: cardReveal 0.8s ease-out backwards;
}

.step-card:nth-child(1) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.4s; }
.step-card:nth-child(5) { animation-delay: 0.6s; }

.step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  display: block;
}

.step-icon {
  font-size: 48px;
  margin-bottom: var(--space-lg);
  display: block;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.step-description {
  font-size: 15px;
  color: var(--color-text-tertiary);
  line-height: 1.6;
}

.step-arrow {
  font-size: 32px;
  color: var(--color-accent-primary);
  animation: arrowSlide 2s ease-in-out infinite;
}

@keyframes arrowSlide {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(10px); opacity: 0.5; }
}

@media (max-width: 968px) {
  .step-arrow {
    transform: rotate(90deg);
  }
}

/* ============= CTA SECTION ============= */
.cta-section {
  padding: 80px 0 100px;
  position: relative;
}

.cta-content {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: ctaReveal 1s ease-out;
}

@keyframes ctaReveal {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cta-content::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--color-accent-primary), var(--color-accent-secondary), var(--color-accent-tertiary), var(--color-accent-cyan));
  background-size: 300% 300%;
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: opacity var(--transition-slow);
  animation: gradientRotate 4s ease infinite;
  z-index: -1;
}

@keyframes gradientRotate {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-content:hover::before {
  opacity: 0.3;
}

.cta-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, #FFFFFF, #CBD5E1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

/* ============= UTILITIES ============= */
.fx-reveal {
  animation: fxReveal 0.8s ease-out;
}

@keyframes fxReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional Tailwind-like Utilities */
.w-5 { width: 20px; }
.h-5 { height: 20px; }
.w-6 { width: 24px; }
.h-6 { height: 24px; }
.w-8 { width: 32px; }
.h-8 { height: 32px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }

.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.text-slate-400 { color: var(--color-text-tertiary); }
.text-slate-500 { color: var(--color-text-muted); }

.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }

.w-full { width: 100%; }

.rounded { border-radius: var(--radius-sm); }
.text-center { text-align: center; }

/* Panel & Input Styles */
.panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.panel-header {
  margin-bottom: var(--space-lg);
}

.panel-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.input-field {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  font-size: 15px;
  transition: all var(--transition-base);
}

.input-field:focus {
  outline: none;
  border-color: var(--color-accent-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.space-y-4 > * + * {
  margin-top: 16px;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .hero-visual {
    height: 300px;
  }
  
  .card-dashboard,
  .card-order,
  .card-theme {
    transform: scale(0.8);
  }
}

/* ============= ADVANCED TECH EFFECTS ============= */

/* Scanline Effect */
.main-content::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 107, 53, 0.5) 50%, 
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  animation: scanlineMove 4s linear infinite;
  pointer-events: none;
  z-index: 999;
  opacity: 0.3;
}

@keyframes scanlineMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(100vh); }
}

/* Floating Tech Particles */
.tech-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.tech-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
  animation: particleFloat 15s linear infinite;
}

.tech-particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.tech-particle:nth-child(2) {
  left: 25%;
  animation-delay: 2s;
  animation-duration: 15s;
}

.tech-particle:nth-child(3) {
  left: 40%;
  animation-delay: 4s;
  animation-duration: 18s;
}

.tech-particle:nth-child(4) {
  left: 55%;
  animation-delay: 1s;
  animation-duration: 14s;
}

.tech-particle:nth-child(5) {
  left: 70%;
  animation-delay: 3s;
  animation-duration: 16s;
}

.tech-particle:nth-child(6) {
  left: 85%;
  animation-delay: 5s;
  animation-duration: 13s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) translateX(20px) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) translateX(-20px) scale(1);
  }
  100% {
    transform: translateY(-10vh) translateX(0) scale(0);
    opacity: 0;
  }
}

/* Circuit Board Decorative Lines */
.circuit-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
}

.circuit-line {
  position: absolute;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(108, 92, 231, 0.6) 50%, 
    transparent 100%
  );
  height: 1px;
  width: 200px;
  animation: lineGlow 3s ease-in-out infinite;
}

.circuit-line:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.circuit-line:nth-child(2) {
  top: 50%;
  right: 15%;
  animation-delay: 1s;
}

.circuit-line:nth-child(3) {
  bottom: 30%;
  left: 25%;
  animation-delay: 2s;
}

@keyframes lineGlow {
  0%, 100% {
    opacity: 0.2;
    box-shadow: 0 0 5px rgba(108, 92, 231, 0.3);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.8);
  }
}

/* Hexagon Tech Decorations */
.hexagon-deco {
  position: fixed;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
}

.hexagon-deco::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(30deg, transparent 40%, rgba(0, 196, 255, 0.4) 41%, rgba(0, 196, 255, 0.4) 59%, transparent 60%),
    linear-gradient(90deg, transparent 40%, rgba(0, 196, 255, 0.4) 41%, rgba(0, 196, 255, 0.4) 59%, transparent 60%),
    linear-gradient(150deg, transparent 40%, rgba(0, 196, 255, 0.4) 41%, rgba(0, 196, 255, 0.4) 59%, transparent 60%);
  animation: hexRotate 20s linear infinite;
}

@keyframes hexRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

.hexagon-deco.top-left {
  top: 10%;
  left: 5%;
}

.hexagon-deco.top-right {
  top: 15%;
  right: 8%;
  animation-delay: 5s;
}

.hexagon-deco.bottom-left {
  bottom: 20%;
  left: 10%;
  animation-delay: 10s;
}

.hexagon-deco.bottom-right {
  bottom: 15%;
  right: 5%;
  animation-delay: 15s;
}

/* Tech Corner Accents */
.tech-corner {
  position: fixed;
  width: 150px;
  height: 150px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.2;
}

.tech-corner::before,
.tech-corner::after {
  content: '';
  position: absolute;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.6), transparent);
}

.tech-corner::before {
  width: 2px;
  height: 100%;
}

.tech-corner::after {
  width: 100%;
  height: 2px;
}

.tech-corner.top-left {
  top: 0;
  left: 0;
}

.tech-corner.top-left::before {
  left: 0;
  top: 0;
}

.tech-corner.top-left::after {
  left: 0;
  top: 0;
}

.tech-corner.bottom-right {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

/* Glowing Orb Decorations */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 15s ease-in-out infinite;
}

.glow-orb.orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 53, 0.15);
  top: -150px;
  right: -150px;
}

.glow-orb.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(108, 92, 231, 0.12);
  bottom: -200px;
  left: -200px;
  animation-delay: 5s;
}

.glow-orb.orb-3 {
  width: 250px;
  height: 250px;
  background: rgba(0, 196, 255, 0.1);
  top: 50%;
  right: -125px;
  animation-delay: 10s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Data Stream Effect */
.data-stream {
  position: fixed;
  top: 0;
  width: 2px;
  height: 100px;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(0, 217, 163, 0.8) 50%, 
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  animation: streamFlow 5s linear infinite;
  opacity: 0.4;
}

.data-stream:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}

.data-stream:nth-child(2) {
  left: 50%;
  animation-delay: 2s;
}

.data-stream:nth-child(3) {
  left: 80%;
  animation-delay: 4s;
}

@keyframes streamFlow {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

/* ============= IMAGE UPLOAD & DISPLAY ============= */
/* Menu Builder Image Styles */
.category-image,
.item-image {
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.category-image {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.item-image {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.category-image:hover,
.item-image:hover {
  transform: scale(1.1);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
  z-index: 10;
}

/* File Input Styling */
input[type="file"].input-field {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
}

input[type="file"].input-field::-webkit-file-upload-button {
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  margin-right: 12px;
  transition: all 0.3s ease;
}

input[type="file"].input-field::-webkit-file-upload-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Empty state for images */
.no-image-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
}

/* ============= PROMO MODAL (PREMIUM POP-UP) ============= */
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-modal.active {
  visibility: visible;
  opacity: 1;
}

.promo-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
}

.promo-modal-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-modal.active .promo-modal-container {
  transform: scale(1) translateY(0);
}

.promo-modal.closing .promo-modal-container {
  transform: scale(0.8) translateY(-20px);
  opacity: 0;
}

.promo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.promo-modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.promo-modal-content {
  padding: 40px 24px 32px;
  text-align: center;
}

.promo-modal-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.promo-modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.promo-modal-body {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 28px;
}

.promo-modal-btn {
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  border: none;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.promo-modal-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.4);
}

.promo-modal-btn:active {
  transform: scale(0.96);
}

/* ============= LANDING PAGE IMPROVEMENTS ============= */

/* Trusted By Section */
.trusted-by-section {
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
}

.trusted-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-tertiary);
  margin-bottom: 30px;
  font-weight: 600;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  opacity: 0.6;
  filter: grayscale(1);
  transition: all var(--transition-base);
}

.trusted-logos:hover {
  opacity: 1;
  filter: grayscale(0);
}

.logo-placeholder {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Why Us Section */
.why-us-section {
  padding: 100px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.pillar-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-accent-primary);
}

.pillar-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-accent-primary);
}

.pillar-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.pillar-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: radial-gradient(circle at center, rgba(108, 92, 231, 0.05) 0%, transparent 70%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  margin-top: 60px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.03);
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 13px;
  color: var(--color-text-tertiary);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.faq-question {
  padding: var(--space-lg) var(--space-xl);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  text-align: center;
}

.contact-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(108, 92, 231, 0.1));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: 60px var(--space-2xl);
  max-width: 900px;
  margin: 0 auto;
}

/* Hero Image Overrides */
.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.card-mockup {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--glass-border);
  transition: all var(--transition-base);
}

.card-mockup:hover {
  transform: translateY(-10px) scale(1.02);
  z-index: 10;
  border-color: var(--color-accent-primary);
}

.mockup-dashboard {
  width: 480px;
  top: 40px;
  left: -20px;
  z-index: 1;
}

.mockup-mobile {
  width: 220px;
  top: 180px;
  right: 0;
  z-index: 2;
}

@media (max-width: 1200px) {
  .mockup-dashboard { width: 380px; }
  .mockup-mobile { width: 180px; }
}

@media (max-width: 968px) {
  .hero-visual { height: auto; padding-bottom: 40px; }
  .card-mockup { position: relative; top: 0 !important; left: 0 !important; right: 0 !important; margin: 0 auto 20px; width: 100% !important; max-width: 500px; }
}
/* Dynamic Pricing Slider/Timeline */
.pricing-slider-container {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.pricing-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}

.pricing-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.timeline-step {
  width: 24px;
  height: 24px;
  background: #1e293b;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.timeline-step.active {
  background: var(--color-accent-primary);
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 15px var(--color-accent-primary);
  transform: scale(1.2);
}

.timeline-step::after {
  content: attr(data-label);
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-tertiary);
  transition: color 0.3s;
}

.timeline-step.active::after {
  color: white;
}

.dynamic-price-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transform-style: preserve-3d;
}

.dynamic-price-card .duration-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Fluid Mobile Showcase Redesign */
.mobile-showcase-smart {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 30px;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 968px) {
  .mobile-showcase-smart { grid-template-columns: 1fr; text-align: center; padding: 40px 20px; }
}

.feature-pill-smart {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 15px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.feature-pill-smart:hover {
  background: rgba(255, 107, 53, 0.05);
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateX(10px);
}

.feature-pill-smart.active {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--color-accent-primary);
}

.icon-box-smart {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius : 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-primary);
  flex-shrink: 0;
}

/* ============= CATEGORY NAVIGATION (PREMIUM) ============= */
.categories-section {
  position: relative;
  background: var(--color-bg-primary);
  z-index: 100;
}

.categories-scroll {
  display: flex;
  gap: 10px;
  padding: 12px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}

.category-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-spring, 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275));
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.category-pill:active {
  transform: scale(0.92);
}

.category-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 107, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 107, 53, 0.2);
  overflow: hidden;
}

.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-pill.active {
  background: var(--primary, #FF6B35);
  border-color: var(--primary, #FF6B35);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
  transform: scale(1.05);
}

.category-pill.active .category-icon {
  background: white;
  color: var(--primary, #FF6B35);
  border-color: white;
}
