/* ============================================
   SMM Panel Premium Dark Theme
   Dark Glass / Neon Accent UI
   ============================================ */

/* Google Fonts - Elegant Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&display=swap');

/* ============================================
   1. CSS VARIABLES
   ============================================ */
   :root {
    /* Background Colors */
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --bg-card: rgba(17, 17, 17, 0.85);
    --bg-card-solid: #111111;
    --bg-input: rgba(13, 13, 13, 0.9);
    --bg-hover: rgba(255, 255, 255, 0.03);
    
    /* Glass Effect */
    --glass-bg: rgba(17, 17, 17, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --glass-blur: blur(12px);
    
    /* Accent Colors - Magenta/Pink Gradient */
    --accent-primary: #e91e8c;
    --accent-primary-light: #ff4db2;
    --accent-primary-dark: #c41878;
    --gradient-primary: linear-gradient(135deg, #e91e8c 0%, #ff6ec4 50%, #e91e8c 100%);
    --gradient-primary-hover: linear-gradient(135deg, #ff4db2 0%, #ff8ed4 50%, #ff4db2 100%);
    
    /* Secondary Accent - Orange/Peach Gradient */
    --accent-secondary: #ff8c42;
    --accent-secondary-light: #ffb178;
    --accent-secondary-dark: #e67530;
    --gradient-secondary: linear-gradient(135deg, #ff8c42 0%, #ffb178 50%, #ff8c42 100%);
    --gradient-secondary-hover: linear-gradient(135deg, #ffb178 0%, #ffc99e 50%, #ffb178 100%);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b8c0;
    --text-muted: #6c6c78;
    --text-accent: var(--accent-primary);
    
    /* Border Colors */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-light: rgba(255, 255, 255, 0.12);
    --border-color-focus: var(--accent-primary);
    
    /* Status Colors */
    --success: #22c55e;
    --success-bg: rgba(34, 197, 94, 0.15);
    --error: #ef4444;
    --error-bg: rgba(239, 68, 68, 0.15);
    --warning: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.15);
    --info: #3b82f6;
    --info-bg: rgba(59, 130, 246, 0.15);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.45);
    --shadow-glow-primary: 0 4px 24px rgba(233, 30, 140, 0.35);
    --shadow-glow-secondary: 0 4px 24px rgba(255, 140, 66, 0.35);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 50px;
    --radius-circle: 50%;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s ease;
    
    /* Typography */
    --font-family: 'Outfit', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-modal: 1050;
    --z-tooltip: 1100;
  }
  
  /* ============================================
     2. FONT IMPORT
     ============================================ */
  @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');
  
  /* ============================================
     3. GLOBAL BASE STYLES
     ============================================ */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  
  html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #050505;
    background-image: 
      /* PURPLE / VIOLET soft blobs */
      radial-gradient(ellipse 1600px 1300px at 10% 5%, rgba(140, 60, 220, .18), transparent),
      radial-gradient(ellipse 1400px 1200px at 20% 50%, rgba(130, 50, 200, .12), transparent),
      radial-gradient(ellipse 1500px 1100px at 5% 90%, rgba(120, 40, 180, .10), transparent),
      /* GOLD / YELLOW soft blobs */
      radial-gradient(ellipse 1600px 1300px at 90% 10%, rgba(255, 170, 0, .16), transparent),
      radial-gradient(ellipse 1400px 1200px at 85% 55%, rgba(255, 160, 0, .11), transparent),
      radial-gradient(ellipse 1500px 1100px at 95% 95%, rgba(255, 150, 0, .09), transparent);
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  /* Subtle diagonal pattern overlay */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.008'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }
  
  /* Main content wrapper — exclude nav so navbar keeps its own z-index */
  body > *:not(#notify-wrapper):not(nav) {
    position: relative;
    z-index: 1;
  }
  
  a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  a:hover, a:focus {
    color: var(--accent-primary-light);
    text-decoration: none;
  }
  
  ::selection {
    background: var(--accent-primary);
    color: var(--text-primary);
  }
  
  /* ============================================
     4. TYPOGRAPHY
     ============================================ */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    color: var(--text-primary);
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }
  h5 { font-size: 1.25rem; }
  h6 { font-size: 1rem; }
  
  p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
  }
  
  .text-muted {
    color: var(--text-muted) !important;
  }
  
  .text-accent {
    color: var(--accent-primary) !important;
  }
  
  small, .small {
    font-size: 0.875rem;
  }
  
  /* ============================================
     5. NAVBAR
     ============================================ */
  .navbar {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: none;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
    min-height: 70px;
    padding: 0;
    transition: background var(--transition-normal);
  }
  
  .navbar-default {
    background: rgba(10, 10, 12, 0.85);
    border-radius: 0;
  }
  
  .navbar-static-top {
    position: sticky;
    top: 0;
    z-index: 1100;
  }
  
  .navbar-brand {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 20px 15px;
    height: auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none !important;
    position: relative;
    transition: all 0.3s ease;
    /* Shiny Gold Text */
    background: linear-gradient(135deg, #FFD700 0%, #FFC125 20%, #FFD700 40%, #DAA520 60%, #FFD700 80%, #FFC125 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 3s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
  }
  
  .navbar-brand:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
  }
  
  /* Logo image with gold glow */
  .navbar-brand img {
    max-height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    transition: all 0.3s ease;
  }
  
  .navbar-brand:hover img {
    filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.8));
    transform: scale(1.05);
  }
  
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none !important;
    color: #FFD700 !important;
  }
  
  @keyframes goldShine {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
  }
  
  /* Navbar Links */
  .navbar-nav > li > a {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 25px 18px;
    transition: color var(--transition-fast);
    position: relative;
  }
  
  .navbar-nav > li > a:hover,
  .navbar-nav > li > a:focus,
  .navbar-nav > li.active > a {
    color: var(--text-primary) !important;
    background: transparent !important;
  }
  
  .navbar-nav > li.active > a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-pill);
  }
  
  /* Navbar icon */
  .navbar-icon {
    margin-right: var(--spacing-sm);
    opacity: 0.8;
  }
  
  /* Navbar Right Buttons */
  .navbar-right .badge {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
  }
  
  /* Dropdown in navbar */
  .navbar .dropdown-menu {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-sm) 0;
    margin-top: 5px;
  }
  
  .navbar .dropdown-menu > li > a {
    color: var(--text-secondary);
    padding: 10px 20px;
    transition: all var(--transition-fast);
  }
  
  .navbar .dropdown-menu > li > a:hover,
  .navbar .dropdown-menu > li > a:focus {
    background: var(--bg-hover);
    color: var(--text-primary);
  }
  
  .dropdown-menu > li.active > a {
    background: var(--accent-primary) !important;
    color: var(--text-primary) !important;
  }
  
  /* Navbar Toggle (Mobile) */
  .navbar-toggle {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px;
    margin-top: 18px;
    margin-right: 15px;
    background: var(--glass-bg) !important;
  }
  
  .navbar-toggle:hover,
  .navbar-toggle:focus {
    background: var(--bg-hover) !important;
  }
  
  .navbar-toggle .icon-bar {
    background-color: var(--text-primary);
    width: 22px;
    height: 2px;
    border-radius: 2px;
  }
  
  /* Navbar Center Menu (for non-auth pages) */
  .navbar-center-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    margin: 0;
  }
  
  @media (max-width: 991px) {
    .navbar-center-menu {
      position: static;
      transform: none;
      float: none;
    }
  }
  
  /* Landing Auth Buttons in Navbar */
  .navbar .landing-auth-buttons {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    padding: 15px 0;
  }
  
  .navbar .landing-auth-buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  /* Mobile Navbar Collapse */
  @media (max-width: 767px) {
    .navbar-collapse {
      background: var(--bg-card-solid);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      margin: 10px;
      padding: var(--spacing-md);
      box-shadow: var(--shadow-lg);
    }
    
    .navbar-nav {
      margin: 0;
    }
    
    .navbar-nav > li > a {
      padding: 12px 15px !important;
      border-radius: var(--radius-md);
    }
    
    .navbar-nav > li > a:hover {
      background: var(--bg-hover) !important;
    }
    
    .navbar-nav > li.active > a::after {
      display: none;
    }
    
    .navbar-right {
      margin-top: var(--spacing-md);
      padding-top: var(--spacing-md);
      border-top: 1px solid var(--border-color);
    }
    
    .navbar .landing-auth-buttons {
      flex-direction: column;
      width: 100%;
      padding: var(--spacing-sm) 0;
    }
    
    .navbar .landing-auth-buttons .btn {
      width: 100%;
      justify-content: center;
    }
  }
  
  /* ============================================
     6. PREMIUM LANDING PAGE STYLES
     ============================================ */

/* Premium Hero Section */
.premium-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4), transparent 70%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent 70%);
  bottom: -150px;
  left: -100px;
  animation-delay: -7s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 30px) scale(1.02); }
}

.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particleFloat 5s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-100px); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.premium-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.premium-hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #a855f7;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.premium-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.premium-hero-title .title-line {
  display: block;
  animation: fadeInUp 0.6s ease backwards;
}

.premium-hero-title .title-line:nth-child(1) { animation-delay: 0.1s; }
.premium-hero-title .title-line:nth-child(2) { animation-delay: 0.2s; }
.premium-hero-title .title-line:nth-child(3) { animation-delay: 0.3s; }

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

.premium-hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.5s backwards;
}

.btn-premium-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
}

.btn-premium-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(168, 85, 247, 0.4);
  color: white;
}

.btn-premium-primary svg {
  transition: transform 0.3s ease;
}

.btn-premium-primary:hover svg {
  transform: translateX(5px);
}

.btn-premium-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-premium-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 0.6s ease 0.6s backwards;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  margin-left: -12px;
  object-fit: cover;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.avatar-more {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  margin-left: -12px;
  border: 3px solid var(--bg-primary);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.trust-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Premium Login Card */
.premium-login-wrapper {
  position: relative;
  animation: fadeInRight 0.8s ease;
}

.premium-login-card {
  position: relative;
  background: rgba(20, 20, 30, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
}

.login-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(168, 85, 247, 0.1), transparent, rgba(59, 130, 246, 0.1), transparent);
  animation: glowRotate 10s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.premium-login-card:hover .login-card-glow {
  opacity: 1;
}

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

.login-card-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.login-card-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.login-card-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.premium-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.premium-alert.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.premium-alert.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.premium-alert span {
  flex: 1;
  font-size: 0.9rem;
}

.alert-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.alert-close:hover {
  opacity: 1;
}

.premium-input-group {
  position: relative;
  margin-bottom: 20px;
  z-index: 1;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  transition: color 0.3s ease;
  z-index: 2;
}

.premium-input {
  width: 100%;
  padding: 16px 16px 16px 52px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.premium-input:focus {
  outline: none;
  border-color: #a855f7;
  background: rgba(168, 85, 247, 0.05);
}

.premium-input:focus + .input-focus-effect {
  opacity: 1;
}

.premium-input-group:focus-within .input-icon {
  color: #a855f7;
}

.input-focus-effect {
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(59, 130, 246, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(8px);
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.premium-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.premium-checkbox input {
  display: none;
}

.checkbox-mark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.premium-checkbox input:checked + .checkbox-mark {
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  border-color: transparent;
}

.premium-checkbox input:checked + .checkbox-mark::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.premium-login-card .forgot-link {
  color: #a855f7;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.premium-login-card .forgot-link:hover {
  color: #c084fc;
}

.btn-premium-login {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-premium-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  position: relative;
  z-index: 1;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.login-divider span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.premium-login-card .google-signin-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  direction: ltr;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.premium-login-card .google-signin-wrapper .g_id_signin {
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.premium-login-card .google-signin-wrapper .g_id_signin iframe {
  max-width: 100% !important;
  border-radius: 8px;
}

.premium-login-card .google-signin-wrapper .g_id_signin > div {
  width: 100% !important;
  display: flex;
  justify-content: center;
}

.login-signup-link {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.login-signup-link a {
  color: #a855f7;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.login-signup-link a:hover {
  color: #c084fc;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.6s ease 1s backwards;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Premium Stats Bar */
.premium-stats-bar {
  position: relative;
  padding: 0;
  margin-top: -40px;
  z-index: 10;
}

.stats-bar-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 20, 30, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-bar-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
  border-radius: 16px;
  color: #a855f7;
}

.stat-bar-content {
  display: flex;
  flex-direction: column;
}

.stat-bar-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-bar-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-bar-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #a855f7;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title-left {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
  text-align: left;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Premium Features Section */
.premium-features {
  padding: 120px 0;
  position: relative;
}

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.premium-feature-card {
  position: relative;
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
}

.premium-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(168, 85, 247, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.premium-feature-card:hover .feature-card-bg {
  opacity: 1;
}

.feature-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-feature-card:hover .feature-icon-glow {
  opacity: 1;
}

.feature-icon-wrap img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.feature-icon-wrap svg {
  position: relative;
  z-index: 1;
}

.premium-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.premium-feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.feature-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #a855f7, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.premium-feature-card:hover .feature-hover-line {
  transform: scaleX(1);
}

/* Platform Cards Section */
.premium-platforms {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(20, 20, 30, 0.5) 0%, transparent 100%);
}

.platform-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.platform-card {
  position: relative;
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.platform-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.platform-card:hover .platform-card-bg {
  opacity: 1;
}

.instagram-card .platform-card-bg { background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(131, 58, 180, 0.1)); }
.instagram-card:hover { border-color: rgba(225, 48, 108, 0.3); }
.instagram-card .platform-card-icon { color: #e1306c; }

.tiktok-card .platform-card-bg { background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(255, 0, 80, 0.1)); }
.tiktok-card:hover { border-color: rgba(255, 0, 80, 0.3); }
.tiktok-card .platform-card-icon { color: #ff0050; }

.youtube-card .platform-card-bg { background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(200, 0, 0, 0.1)); }
.youtube-card:hover { border-color: rgba(255, 0, 0, 0.3); }
.youtube-card .platform-card-icon { color: #ff0000; }

.twitter-card .platform-card-bg { background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(100, 100, 100, 0.1)); }
.twitter-card:hover { border-color: rgba(150, 150, 150, 0.3); }
.twitter-card .platform-card-icon { color: var(--text-primary); }

.facebook-card .platform-card-bg { background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(66, 103, 178, 0.1)); }
.facebook-card:hover { border-color: rgba(24, 119, 242, 0.3); }
.facebook-card .platform-card-icon { color: #1877f2; }

.telegram-card .platform-card-bg { background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(0, 180, 230, 0.1)); }
.telegram-card:hover { border-color: rgba(0, 136, 204, 0.3); }
.telegram-card .platform-card-icon { color: #0088cc; }

.platform-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.platform-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.platform-services {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.platform-services li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.platform-services li::before {
  content: '✓';
  color: #22c55e;
  font-size: 0.8rem;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a855f7;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.platform-link:hover {
  color: #c084fc;
}

.platform-link svg {
  transition: transform 0.3s ease;
}

.platform-link:hover svg {
  transform: translateX(5px);
}

.platforms-cta {
  text-align: center;
}

/* How It Works Timeline */
.premium-how-works {
  padding: 120px 0;
}

.how-works-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #a855f7, #3b82f6);
  transform: translateX(-50%);
}

.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.step-card {
  width: calc(50% - 60px);
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
}

.timeline-step:nth-child(odd) .step-card {
  margin-right: auto;
  text-align: right;
}

.timeline-step:nth-child(even) .step-card {
  margin-left: auto;
  text-align: left;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a855f7;
  margin-bottom: 16px;
}

.timeline-step:nth-child(odd) .step-icon {
  margin-left: auto;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Payment Section */
.premium-payments {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(20, 20, 30, 0.5));
}

.payments-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.payments-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.payment-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 500;
}

.payment-feature svg {
  color: #22c55e;
}

.payment-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.payment-icon-item {
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.payment-icon-item:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-5px);
}

.payment-icon-item .payment-text {
  font-size: 1.1rem;
  font-weight: 700;
}

.payment-icon-item .payment-text.pm { color: #e91e63; }
.payment-icon-item .payment-text.paypal { color: #003087; }
.payment-icon-item .payment-text.stripe { color: #635bff; }
.payment-icon-item .payment-text.bitcoin { color: #f7931a; }
.payment-icon-item .payment-text.usdt { color: #26a17b; }
.payment-icon-item .payment-text.webmoney { color: #006cb5; }

/* Testimonials Section */
.premium-testimonials {
  padding: 120px 0;
  overflow: hidden;
}

.testimonials-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.testimonials-carousel {
  display: flex;
  gap: 24px;
  padding: 20px 0;
}

.premium-testimonial-card {
  flex-shrink: 0;
  width: 360px;
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.4s ease;
}

.premium-testimonial-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-5px);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.premium-testimonial-card .testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Premium FAQ Section */
.premium-faq {
  padding: 120px 0;
}

.premium-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.premium-faq-item {
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.premium-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.premium-faq-item.active {
  border-color: rgba(168, 85, 247, 0.3);
}

.premium-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.premium-faq-question:hover {
  color: #a855f7;
}

.premium-faq-question svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.premium-faq-item.active .premium-faq-question svg {
  transform: rotate(45deg);
  color: #a855f7;
}

.premium-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.premium-faq-item.active .premium-faq-answer {
  max-height: 200px;
}

.premium-faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.premium-faq .faq-cta {
  text-align: center;
  margin-top: 50px;
}

/* Premium CTA Section */
.premium-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(168, 85, 247, 0.2);
  top: -200px;
  left: -100px;
}

.cta-orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.2);
  bottom: -200px;
  right: -100px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-premium-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-premium-outline:hover {
  border-color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  color: var(--text-primary);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cta-features svg {
  color: #22c55e;
}

/* Premium Footer */
.premium-footer {
  position: relative;
  background: rgba(10, 10, 15, 0.95);
  padding-top: 0;
}

.footer-top-wave {
  color: var(--bg-primary);
  line-height: 0;
  margin-bottom: -1px;
}

.footer-top-wave svg {
  width: 100%;
  height: 100px;
}

.premium-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
}

.footer-brand-col .footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.footer-brand-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links .social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-social-links .social-link:hover {
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

.footer-links-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col ul li {
  margin-bottom: 12px;
}

.footer-links-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links-col ul a:hover {
  color: #a855f7;
}

.premium-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  text-align: center;
}

.premium-footer .footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   PREMIUM AUTH PAGES (Signup/Login)
   ============================================ */

.premium-auth-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}

.auth-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.auth-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.auth-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.5), transparent 70%);
  top: -150px;
  right: -100px;
}

.auth-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation-delay: -10s;
}

.auth-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent 70%);
  top: 50%;
  left: 30%;
  animation-delay: -5s;
}

.auth-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.auth-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.auth-page-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Auth Benefits Section */
.auth-benefits {
  animation: fadeInUp 0.6s ease;
}

.auth-brand {
  margin-bottom: 50px;
}

.auth-brand .brand-logo {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.auth-brand .brand-tagline {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.2);
  transform: translateX(10px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
  border-radius: 12px;
  color: #a855f7;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.benefit-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Auth Testimonial Mini */
.auth-testimonial {
  position: relative;
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px;
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #a855f7;
}

.auth-testimonial > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-mini img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-mini strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testimonial-author-mini span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Premium Auth Card */
.premium-auth-wrapper {
  animation: fadeInRight 0.6s ease;
}

.premium-auth-card {
  position: relative;
  background: rgba(20, 20, 30, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
}

.auth-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(168, 85, 247, 0.1), transparent, rgba(59, 130, 246, 0.1), transparent);
  animation: glowRotate 10s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.premium-auth-card:hover .auth-card-glow {
  opacity: 1;
}

.auth-card-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.auth-card-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.auth-card-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.signup-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Captcha Wrapper Fix */
.premium-auth-card .captcha-wrapper,
.premium-login-card .captcha-wrapper {
  position: relative;
  z-index: 10;
  margin-bottom: 20px;
}

.premium-auth-card .captcha-wrapper *,
.premium-login-card .captcha-wrapper * {
  position: relative;
  z-index: 10;
}

.btn-premium-signup {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-premium-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.btn-premium-signup svg {
  transition: transform 0.3s ease;
}

.btn-premium-signup:hover svg {
  transform: translateX(5px);
}

.signup-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  position: relative;
  z-index: 1;
}

.signup-divider::before,
.signup-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.signup-divider span {
  color: var(--text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
}

.google-signup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  direction: ltr;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.google-signup-wrapper .g_id_signin {
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.google-signup-wrapper .g_id_signin iframe {
  max-width: 100% !important;
  border-radius: 8px;
}

.google-signup-wrapper .g_id_signin > div {
  width: 100% !important;
  display: flex;
  justify-content: center;
}

.auth-switch-link {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.auth-switch-link a {
  color: #a855f7;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.auth-switch-link a:hover {
  color: #c084fc;
}

.terms-checkbox-wrapper {
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.terms-checkbox-wrapper .premium-checkbox {
  align-items: flex-start;
}

.terms-checkbox-wrapper .checkbox-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.terms-checkbox-wrapper .checkbox-text a {
  color: #a855f7;
  text-decoration: none;
}

.terms-checkbox-wrapper .checkbox-text a:hover {
  text-decoration: underline;
}

/* Security Badge */
.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Auth Pages Responsive */
@media (max-width: 1100px) {
  .auth-page-grid {
    grid-template-columns: 1fr 420px;
    gap: 50px;
  }
}

@media (max-width: 992px) {
  .premium-auth-page {
    padding: 80px 0 40px;
  }
  
  .auth-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .auth-benefits {
    order: 2;
    text-align: center;
  }
  
  .auth-brand {
    margin-bottom: 30px;
  }
  
  .benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
  }
  
  .auth-testimonial {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .premium-auth-wrapper {
    order: 1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .benefits-list {
    grid-template-columns: 1fr;
  }
  
  .benefit-item {
    flex-direction: row;
    text-align: left;
  }
  
  .premium-auth-card {
    padding: 30px 24px;
  }
  
  .auth-card-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .premium-auth-page {
    padding: 70px 0 30px;
  }
  
  .auth-brand .brand-logo {
    font-size: 2rem;
  }
  
  .premium-auth-card {
    padding: 24px 20px;
  }
  
  .benefit-item {
    padding: 14px;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
  }
  
  .benefit-content h4 {
    font-size: 1rem;
  }
}

/* ============================================
   TERMS PAGE STYLES
   ============================================ */

.terms-page {
  min-height: 100vh;
}

/* Terms Hero */
.terms-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

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

.terms-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(59, 130, 246, 0.1) 50%, rgba(6, 182, 212, 0.05) 100%);
}

.terms-hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.terms-hero-shapes .shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(168, 85, 247, 0.3);
  top: -100px;
  right: -50px;
  animation: orbFloat 20s ease-in-out infinite;
}

.terms-hero-shapes .shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.3);
  bottom: -50px;
  left: -50px;
  animation: orbFloat 20s ease-in-out infinite reverse;
}

.terms-hero-shapes .shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(236, 72, 153, 0.2);
  top: 50%;
  left: 40%;
  animation: orbFloat 15s ease-in-out infinite;
}

.terms-hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.terms-hero-main {
  animation: fadeInUp 0.6s ease;
}

.terms-hero-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(59, 130, 246, 0.2));
  border-radius: 20px;
  margin-bottom: 24px;
}

.terms-hero-icon i {
  font-size: 2rem;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.terms-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.terms-hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 550px;
}

.terms-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.terms-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.terms-meta-item i {
  color: #a855f7;
}

.terms-pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.terms-pill {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.terms-pill:hover {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.3);
  color: #a855f7;
}

/* Terms Hero Card */
.terms-hero-card {
  background: rgba(20, 20, 30, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  animation: fadeInRight 0.6s ease;
}

.terms-hero-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.terms-summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.terms-summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.terms-summary-list li:last-child {
  border-bottom: none;
}

.terms-summary-list li i {
  color: #22c55e;
  margin-top: 2px;
  flex-shrink: 0;
}

.terms-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.terms-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
  color: white;
}

/* Terms Body */
.terms-body {
  padding: 80px 0;
}

/* Terms Highlights */
.terms-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.terms-highlight-card {
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.terms-highlight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.terms-highlight-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.15));
  border-radius: 16px;
  margin: 0 auto 16px;
}

.terms-highlight-icon i {
  font-size: 1.4rem;
  color: #a855f7;
}

.terms-highlight-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.terms-highlight-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Admin Terms Card */
.terms-admin-card {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 60px;
}

.terms-admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.terms-admin-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.terms-admin-badge {
  padding: 6px 14px;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.terms-admin-content {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Terms Layout */
.terms-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}

/* Terms Sections */
.terms-sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.terms-section {
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  scroll-margin-top: 100px;
  transition: all 0.3s ease;
}

.terms-section:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.terms-section:target {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.terms-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-content h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #a855f7, #3b82f6);
  border-radius: 4px;
}

.terms-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.terms-content p:last-child {
  margin-bottom: 0;
}

.terms-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.terms-content ul li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.terms-content ul li:last-child {
  border-bottom: none;
}

.terms-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #a855f7;
  font-weight: 600;
}

.terms-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  margin-top: 16px;
}

.terms-note i {
  color: #3b82f6;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.terms-note span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Terms Aside */
.terms-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.terms-aside-card {
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px;
}

.terms-aside-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-aside-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.terms-aside-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.terms-aside-list li i {
  margin-top: 2px;
  flex-shrink: 0;
}

.terms-aside-list li .fa-exclamation-triangle {
  color: #f59e0b;
}

.terms-aside-list li .fa-check {
  color: #22c55e;
}

/* Terms Contact Card */
.terms-contact-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(16, 185, 129, 0.08));
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}

.terms-contact-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.2));
  border-radius: 20px;
  margin: 0 auto 20px;
}

.terms-contact-icon i {
  font-size: 1.75rem;
  color: #22c55e;
}

.terms-contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.terms-contact-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.terms-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.terms-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
  color: white;
}

/* Terms Page Responsive */
@media (max-width: 1100px) {
  .terms-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .terms-hero-card {
    max-width: 450px;
  }
  
  .terms-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .terms-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    order: -1;
  }
}

@media (max-width: 992px) {
  .terms-hero {
    padding: 100px 0 60px;
  }
  
  .terms-hero-title {
    font-size: 2.5rem;
  }
  
  .terms-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .terms-hero {
    padding: 80px 0 50px;
  }
  
  .terms-hero-title {
    font-size: 2rem;
  }
  
  .terms-hero-desc {
    font-size: 1rem;
  }
  
  .terms-hero-icon {
    width: 64px;
    height: 64px;
  }
  
  .terms-hero-icon i {
    font-size: 1.5rem;
  }
  
  .terms-pill-nav {
    gap: 8px;
  }
  
  .terms-pill {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  
  .terms-hero-card {
    padding: 24px;
  }
  
  .terms-body {
    padding: 50px 0;
  }
  
  .terms-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .terms-highlight-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 20px;
  }
  
  .terms-highlight-icon {
    margin: 0;
    flex-shrink: 0;
  }
  
  .terms-aside {
    grid-template-columns: 1fr;
  }
  
  .terms-section {
    padding: 24px;
  }
  
  .terms-content h2 {
    font-size: 1.15rem;
  }
  
  .terms-admin-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .terms-contact-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .terms-hero-title {
    font-size: 1.75rem;
  }
  
  .terms-hero-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .terms-pill {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

/* Premium Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Premium Page Responsive */
@media (max-width: 1200px) {
  .premium-hero-grid { grid-template-columns: 1fr 380px; gap: 40px; }
  .premium-hero-title { font-size: 3rem; }
  .premium-features-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .premium-hero { padding: 100px 0 60px; min-height: auto; }
  .premium-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .premium-hero-content { max-width: 100%; text-align: center; }
  .premium-hero-title { font-size: 2.5rem; }
  .hero-cta-group { justify-content: center; flex-wrap: wrap; }
  .hero-trust { justify-content: center; }
  .premium-login-wrapper { max-width: 450px; margin: 0 auto; }
  .scroll-indicator { display: none; }
  .stats-bar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 30px; }
  .stat-bar-divider { display: none; }
  .section-title { font-size: 2.25rem; }
  .timeline-line { left: 30px; }
  .timeline-step { flex-direction: column !important; align-items: flex-start; padding-left: 80px; }
  .step-number { left: 30px; transform: translateX(-50%); }
  .step-card { width: 100% !important; margin: 0 !important; text-align: left !important; }
  .timeline-step:nth-child(odd) .step-icon { margin-left: 0; }
  .payments-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .premium-faq-grid { grid-template-columns: 1fr; }
  .premium-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .premium-hero-title { font-size: 2rem; }
  .hero-badge { font-size: 0.8rem; padding: 6px 14px; }
  .hero-cta-group { flex-direction: column; }
  .btn-premium-primary, .btn-premium-secondary { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .premium-login-card { padding: 30px 24px; }
  .premium-stats-bar { margin-top: 0; }
  .stats-bar-grid { grid-template-columns: 1fr; gap: 20px; }
  .stat-bar-item { justify-content: center; }
  .premium-features, .premium-platforms, .premium-how-works, .premium-payments, .premium-testimonials, .premium-faq, .premium-cta { padding: 80px 0; }
  .premium-features-grid { grid-template-columns: 1fr; }
  .platform-cards-grid { grid-template-columns: 1fr; }
  .payment-icons-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-content h2 { font-size: 2rem; }
  .cta-buttons { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .btn-premium-outline { width: 100%; justify-content: center; }
  .cta-features { flex-direction: column; gap: 12px; }
  .premium-footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-social-links { justify-content: center; }
}

@media (max-width: 480px) {
  .premium-hero { padding: 80px 0 40px; }
  .premium-hero-title { font-size: 1.75rem; }
  .premium-hero-desc { font-size: 1rem; }
  .section-title { font-size: 1.75rem; }
  .section-title-left { font-size: 1.5rem; text-align: center; }
  .premium-testimonial-card { width: 300px; }
  .timeline-step { padding-left: 60px; }
  .timeline-line { left: 20px; }
  .step-number { left: 20px; width: 48px; height: 48px; font-size: 1rem; }
}

  /* ============================================
     LEGACY LANDING PAGE STYLES
     ============================================ */
  .landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    width: 100%;
  }
  
  .landing-hero {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    position: relative;
    overflow: hidden;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    letter-spacing: -0.02em;
  }
  
  .hero-title .highlight {
    background: linear-gradient(135deg, #ff8c42 0%, #e91e8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    max-width: 480px;
    line-height: 1.7;
  }
  
  .btn-see-services {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 12px 28px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-normal);
  }
  
  .btn-see-services:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
  }
  
  /* Hero Image */
  .hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-image-wrapper::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, 
      rgba(200, 120, 255, 0.9) 0%, 
      rgba(160, 80, 200, 0.85) 35%, 
      rgba(120, 50, 160, 0.9) 60%,
      rgba(80, 30, 120, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
  }
  
  .hero-glow {
    display: none;
  }
  
  .hero-character {
    position: relative;
    z-index: 2;
    max-width: 380px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  
  /* ============================================
     6.1 LANDING PAGE - LOGIN SECTION
     ============================================ */
  .landing-login {
    padding: var(--spacing-2xl) 0;
  }
  
  .login-card-wrapper {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .landing-login .login-card {
    background: rgba(30, 25, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
  }
  
  .landing-login .login-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
  }
  
  .login-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
  }
  
  .landing-login .login-input-group {
    position: relative;
  }
  
  .login-input-icon-img {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    object-fit: contain;
    z-index: 2;
  }
  
  .landing-login .login-input-group .form-control {
    background: rgba(20, 18, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 14px 16px 14px 54px;
    color: var(--text-primary);
    font-size: 0.9rem;
    width: 100%;
    transition: all var(--transition-fast);
  }
  
  .landing-login .login-input-group .form-control:focus {
    border-color: rgba(233, 30, 140, 0.5);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
    outline: none;
  }
  
  .landing-login .login-input-group .form-control::placeholder {
    color: var(--text-muted);
  }
  
  .login-options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
  }
  
  .login-remember {
    display: flex;
    align-items: center;
  }
  
  .custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 28px;
  }
  
  .custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .custom-checkbox .checkmark {
    position: absolute;
    left: 0;
    height: 18px;
    width: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all var(--transition-fast);
  }
  
  .custom-checkbox:hover .checkmark {
    border-color: rgba(233, 30, 140, 0.5);
  }
  
  .custom-checkbox input:checked ~ .checkmark {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
  }
  
  .custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  .custom-checkbox input:checked ~ .checkmark:after {
    display: block;
  }
  
  .forgot-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  .forgot-link:hover {
    color: var(--accent-primary);
  }
  
  .captcha-wrapper {
    margin-bottom: var(--spacing-lg);
  }
  
  .login-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
  }
  
  .btn-login-submit {
    padding: 12px 48px;
    background: linear-gradient(135deg, #ff8c42 0%, #e91e8c 100%);
    border: none;
    border-radius: var(--radius-pill);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-normal);
  }
  
  .btn-login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.35);
  }
  
  .login-signup-text {
    font-size: 0.85rem;
    color: var(--text-muted);
  }
  
  .login-signup-text a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
  }
  
  .login-signup-text a:hover {
    text-decoration: underline;
  }
  
  .google-signin-wrapper {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  /* ============================================
     6.2 LANDING PAGE - STATS SECTION
     ============================================ */
  .landing-stats {
    padding: var(--spacing-2xl) 0;
  }
  
  .stats-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3xl);
    flex-wrap: wrap;
  }
  
  .stat-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .stat-content {
    display: flex;
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-secondary);
  }
  
  .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: capitalize;
  }
  
  /* ============================================
     6.3 LANDING PAGE - FEATURES SECTION
     ============================================ */
  .landing-features {
    padding: var(--spacing-3xl) 0;
  }
  
  .features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
  }
  
  .features-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
  }
  
  .features-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
  }
  
  .features-tagline {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff8c42 0%, #e91e8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }
  
  .feature-card {
    background: rgba(30, 25, 35, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-normal);
  }
  
  .feature-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
  }
  
  .feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: var(--spacing-md);
  }
  
  .feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
  }
  
  /* ============================================
     6.4 LANDING PAGE - CTA SECTION
     ============================================ */
  .landing-cta {
    padding: var(--spacing-2xl) 0 var(--spacing-3xl);
    text-align: center;
  }
  
  .cta-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--spacing-xl);
  }
  
  .cta-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all var(--transition-fast);
  }
  
  .cta-dots .dot.active {
    background: var(--accent-secondary);
  }
  
  .btn-cta {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #ff8c42 0%, #e91e8c 100%);
    border: none;
    border-radius: var(--radius-pill);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-normal);
  }
  
  .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.4);
    color: white;
  }
  
  /* Auth Text Section */
  .landing-auth-text {
    padding: var(--spacing-xl) 0 var(--spacing-3xl);
  }
  
  .auth-text-card {
    background: rgba(30, 25, 35, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  /* ============================================
     6.5 LANDING PAGE - RISE SECTION
     ============================================ */
  .landing-rise {
    padding: var(--spacing-3xl) 0;
  }
  
  .rise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
  }
  
  .rise-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .rise-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
  }
  
  .rise-content {
    position: relative;
  }
  
  .rise-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
  }
  
  .rise-title .highlight {
    background: linear-gradient(135deg, #ff8c42 0%, #e91e8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .rise-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
  }
  
  .btn-see-services.btn-orange {
    background: linear-gradient(135deg, #ff8c42 0%, #e91e8c 100%);
    border: none;
    color: white;
  }
  
  .btn-see-services.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.35);
  }
  
  /* ============================================
     6.6 LANDING PAGE - INSIGHT SECTION
     ============================================ */
  .landing-insight {
    padding: var(--spacing-3xl) 0;
  }
  
  .insight-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
  }
  
  .insight-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
  }
  
  .insight-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
  }
  
  /* Platform Tabs */
  .platform-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
  }
  
  .platform-tabs {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .platform-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(30, 25, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
  }
  
  .platform-tab:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
  }
  
  .platform-tab.active {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.2) 0%, rgba(255, 140, 66, 0.2) 100%);
    border-color: rgba(233, 30, 140, 0.5);
    color: var(--text-primary);
  }
  
  .platform-tab svg {
    width: 16px;
    height: 16px;
  }
  
  /* Platform Tab Colors */
  .platform-tab[data-platform="instagram"].active {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2) 0%, rgba(252, 175, 69, 0.2) 100%);
    border-color: rgba(225, 48, 108, 0.5);
  }
  
  .platform-tab[data-platform="facebook"].active {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.5);
  }
  
  .platform-tab[data-platform="twitter"].active {
    background: rgba(29, 161, 242, 0.2);
    border-color: rgba(29, 161, 242, 0.5);
  }
  
  .platform-tab[data-platform="youtube"].active {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
  }
  
  .platform-tab[data-platform="spotify"].active {
    background: rgba(30, 215, 96, 0.2);
    border-color: rgba(30, 215, 96, 0.5);
  }
  
  /* Insight Card */
  .insight-card {
    background: rgba(30, 25, 35, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    overflow: hidden;
  }
  
  .platform-content {
    display: none;
  }
  
  .platform-content.active {
    display: block;
  }
  
  .platform-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
  }
  
  .platform-text {
    padding-right: var(--spacing-xl);
  }
  
  .platform-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
  }
  
  .platform-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
  }
  
  .platform-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .platform-image img {
    max-width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
  }
  
  /* ============================================
     6.7 LANDING PAGE - PAYMENTS SECTION
     ============================================ */
  .landing-payments {
    padding: var(--spacing-3xl) 0;
  }
  
  .payments-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-3xl);
    align-items: center;
  }
  
  .payments-content {
    position: relative;
  }
  
  .payments-tagline {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff8c42 0%, #e91e8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
  }
  
  .payments-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
  }
  
  .payments-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
  }
  
  .payments-icons-wrapper {
    display: flex;
    justify-content: center;
  }
  
  .payments-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 400px;
  }
  
  .payment-icon-card {
    background: rgba(30, 25, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    transition: all var(--transition-fast);
  }
  
  .payment-icon-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
  }
  
  .payment-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
  }
  
  .payment-text.pm {
    color: #ff9800;
    font-weight: 700;
    font-size: 1.1rem;
  }
  
  .payment-text.paypal {
    color: #003087;
    font-style: italic;
    font-weight: 700;
  }
  
  .payment-text.paytr {
    color: #00b4d8;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .payment-text.stripe {
    color: #635bff;
    font-weight: 700;
    font-style: italic;
  }
  
  .payment-text.webmoney {
    color: #036eb3;
    font-size: 0.8rem;
  }
  
  .payment-text.bitcoin {
    color: #f7931a;
    font-weight: 700;
    font-style: italic;
  }
  
  .payment-text.paytm {
    color: #00baf2;
    font-weight: 700;
  }
  
  /* ============================================
     6.8 LANDING PAGE - BOOST SECTION
     ============================================ */
  .landing-boost {
    padding: var(--spacing-3xl) 0;
  }
  
  .boost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
  }
  
  .boost-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .boost-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
  }
  
  .boost-content {
    position: relative;
  }
  
  .boost-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
  }
  
  .boost-title .highlight {
    background: linear-gradient(135deg, #ff8c42 0%, #e91e8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .boost-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
  }
  
  .btn-register-now {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #ff8c42 0%, #e91e8c 100%);
    border: none;
    border-radius: var(--radius-pill);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-normal);
  }
  
  .btn-register-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.35);
    color: white;
  }
  
  /* ============================================
     6.9 LANDING PAGE - HOW IT WORKS SECTION
     ============================================ */
  .landing-how-works {
    padding: var(--spacing-3xl) 0;
    background: rgba(20, 18, 25, 0.5);
  }
  
  .how-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: flex-start;
  }
  
  .how-works-left {
    position: relative;
  }
  
  .how-works-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
  }
  
  .how-works-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
  }
  
  .how-works-image {
    display: flex;
    justify-content: center;
  }
  
  .how-works-image img {
    max-width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
  }
  
  .how-works-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  .step-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    padding: var(--spacing-lg);
    background: rgba(30, 25, 35, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
  }
  
  .step-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
  }
  
  .step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2) 0%, rgba(233, 30, 140, 0.2) 100%);
    border: 1px solid rgba(255, 140, 66, 0.3);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-secondary);
  }
  
  .step-content {
    flex: 1;
  }
  
  .step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
  }
  
  .step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  /* ============================================
     6.10 LANDING PAGE - FAQ SECTION
     ============================================ */
  .landing-faq {
    padding: var(--spacing-3xl) 0;
  }
  
  .faq-main-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
  }
  
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
  }
  
  .faq-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .faq-item {
    background: rgba(30, 25, 35, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-fast);
  }
  
  .faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
  }
  
  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
  }
  
  .faq-question:hover {
    color: var(--accent-secondary);
  }
  
  .faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
    color: var(--text-muted);
  }
  
  .faq-question.active svg {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    display: none;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
  }
  
  .faq-answer.active {
    display: block;
  }
  
  .faq-answer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
  }
  
  .faq-cta {
    text-align: center;
  }
  
  .btn-view-faqs {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #ff8c42 0%, #e91e8c 100%);
    border: none;
    border-radius: var(--radius-pill);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-normal);
  }
  
  .btn-view-faqs:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.35);
    color: white;
  }
  
  /* ============================================
     6.11 LANDING PAGE - TESTIMONIALS SECTION
     ============================================ */
  .landing-testimonials {
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
  }
  
  .testimonials-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
  }
  
  .testimonials-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
  }
  
  .testimonials-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff8c42 0%, #e91e8c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .testimonials-slider-wrapper {
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    position: relative;
  }
  
  .testimonials-slider {
    cursor: grab;
    overflow: hidden;
  }
  
  .testimonials-slider:active {
    cursor: grabbing;
  }
  
  .testimonials-track {
    display: flex;
    gap: var(--spacing-lg);
    width: max-content;
  }
  
  .slider-right .testimonials-track {
    animation: scrollRight 40s linear infinite;
  }
  
  .slider-left .testimonials-track {
    animation: scrollLeft 40s linear infinite;
  }
  
  .testimonials-slider:hover .testimonials-track,
  .testimonials-slider.paused .testimonials-track {
    animation-play-state: paused;
  }
  
  @keyframes scrollRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  @keyframes scrollLeft {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }
  
  .testimonial-card {
    flex-shrink: 0;
    width: 350px;
    background: rgba(30, 25, 35, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-fast);
  }
  
  .testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
  }
  
  .testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-circle);
    object-fit: cover;
  }
  
  .testimonial-info {
    flex: 1;
  }
  
  .testimonial-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
  }
  
  .testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  .testimonial-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
  }
  
  .testimonial-stars {
    color: var(--accent-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  
  /* ============================================
     6.12 LANDING PAGE - RISE CTA SECTION
     ============================================ */
  .landing-rise-cta {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }
  
  .rise-cta-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ff8c42 0%, #e91e8c 50%, #ff6b6b 100%);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-3xl);
    text-align: center;
    overflow: hidden;
  }
  
  .rise-cta-wrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-circle);
  }
  
  .rise-cta-wrapper::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-circle);
  }
  
  .floating-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-circle);
    color: white;
    z-index: 2;
    animation: floatIcon 6s ease-in-out infinite;
  }
  
  .floating-facebook {
    top: 15%;
    left: 5%;
    background: #1877f2;
    animation-delay: 0s;
  }
  
  .floating-instagram {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    animation-delay: 0.5s;
  }
  
  .floating-tiktok {
    top: 20%;
    left: 8%;
    background: #000;
    animation-delay: 1s;
  }
  
  .floating-twitter {
    bottom: 25%;
    left: 12%;
    background: #1da1f2;
    animation-delay: 1.5s;
  }
  
  .floating-youtube {
    bottom: 15%;
    right: 8%;
    background: #ff0000;
    animation-delay: 2s;
  }
  
  .floating-snapchat {
    top: 20%;
    right: 5%;
    background: #fffc00;
    color: #000;
    animation-delay: 2.5s;
  }
  
  @keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  .rise-cta-content {
    position: relative;
    z-index: 3;
  }
  
  .rise-cta-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
  }
  
  .rise-cta-title .highlight {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
  }
  
  .rise-cta-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto var(--spacing-xl);
  }
  
  .btn-get-started {
    display: inline-block;
    padding: 12px 32px;
    background: white;
    border: none;
    border-radius: var(--radius-pill);
    color: #e91e8c;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-normal);
  }
  
  .btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #e91e8c;
  }
  
  /* ============================================
     6.13 LANDING PAGE - FOOTER SECTION
     ============================================ */
  .landing-footer {
    background: rgba(15, 12, 20, 0.8);
    padding: var(--spacing-3xl) 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
  }
  
  .footer-logo {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-md);
    /* Shiny Gold Gradient Text */
    background: linear-gradient(135deg, #FFD700 0%, #FFC125 20%, #FFD700 40%, #DAA520 60%, #FFD700 80%, #FFC125 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 3s ease-in-out infinite;
    display: inline-block;
  }
  
  .footer-brand-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
  }
  
  .footer-social {
    display: flex;
    gap: var(--spacing-sm);
  }
  
  .social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-circle);
    color: white;
    transition: all var(--transition-fast);
  }
  
  .social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  }
  
  .social-link.youtube {
    background: #ff0000;
  }
  
  .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .footer-column-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: var(--spacing-sm);
  }
  
  .footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  
  .footer-links a:hover {
    color: var(--accent-secondary);
  }
  
  .footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
  }
  
  .footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent-secondary);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg) 0;
    text-align: center;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
  }
  
  /* ============================================
     6.14 LANDING PAGE - RESPONSIVE (ALL SECTIONS)
     ============================================ */
  @media (max-width: 991px) {
    .hero-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-2xl);
      text-align: center;
    }
    
    .hero-content {
      order: 1;
    }
    
    .hero-image-wrapper {
      order: 0;
    }
    
    .hero-description {
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-image-wrapper::before {
      width: 280px;
      height: 280px;
    }
    
    .hero-character {
      max-width: 280px;
    }
    
    .login-form-grid {
      grid-template-columns: 1fr;
    }
    
    .features-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }
    
    .stats-grid {
      gap: var(--spacing-xl);
    }
    
    /* Rise Section Responsive */
    .rise-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-2xl);
      text-align: center;
    }
    
    .rise-image-wrapper {
      order: 0;
    }
    
    .rise-content {
      order: 1;
    }
    
    .rise-image {
      max-width: 350px;
    }
    
    /* Insight Section Responsive */
    .platform-content-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl);
    }
    
    .platform-text {
      padding-right: 0;
      text-align: center;
    }
    
    .platform-image {
      order: -1;
    }
    
    .platform-image img {
      max-height: 250px;
    }
    
    /* Payments Section Responsive */
    .payments-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-2xl);
      text-align: center;
    }
    
    .payments-icons-grid {
      margin: 0 auto;
    }
    
    /* Boost Section Responsive */
    .boost-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-2xl);
      text-align: center;
    }
    
    .boost-image {
      max-width: 350px;
    }
    
    /* How It Works Section Responsive */
    .how-works-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-2xl);
    }
    
    .how-works-left {
      text-align: center;
    }
    
    .how-works-image img {
      max-height: 220px;
    }
    
    /* FAQ Section Responsive */
    .faq-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .platform-tabs {
      gap: 6px;
    }
    
    .platform-tab {
      padding: 8px 14px;
      font-size: 0.8rem;
    }
    
    .platform-tab span {
      display: none;
    }
    
    .platform-tab svg {
      width: 18px;
      height: 18px;
    }
  }
  
  @media (max-width: 576px) {
    .landing-hero {
      padding: var(--spacing-xl) 0;
    }
    
    .hero-title {
      font-size: 1.75rem;
    }
    
    .hero-image-wrapper::before {
      width: 220px;
      height: 220px;
    }
    
    .hero-character {
      max-width: 220px;
    }
    
    .landing-login .login-card {
      padding: var(--spacing-lg);
    }
    
    .login-actions {
      flex-direction: column;
      gap: var(--spacing-md);
    }
    
    .btn-login-submit {
      width: 100%;
    }
    
    .stats-grid {
      flex-direction: column;
      align-items: center;
      gap: var(--spacing-lg);
    }
    
    .stat-card {
      width: 100%;
      max-width: 250px;
    }
    
    /* Rise Section Mobile */
    .rise-image {
      max-width: 280px;
    }
    
    .rise-title {
      font-size: 1.5rem;
    }
    
    /* Insight Section Mobile */
    .insight-card {
      padding: var(--spacing-lg);
    }
    
    .platform-image img {
      max-height: 200px;
    }
    
    /* Payments Section Mobile */
    .payments-icons-grid {
      grid-template-columns: repeat(2, 1fr);
      max-width: 280px;
    }
    
    .payments-title {
      font-size: 1.5rem;
    }
    
    /* Boost Section Mobile */
    .boost-image {
      max-width: 280px;
    }
    
    .boost-title {
      font-size: 1.5rem;
    }
    
    /* How It Works Mobile */
    .how-works-title {
      font-size: 1.5rem;
    }
    
    .how-works-image img {
      max-height: 180px;
    }
    
    .step-item {
      padding: var(--spacing-md);
    }
    
    .step-number {
      width: 40px;
      height: 40px;
      font-size: 0.9rem;
    }
    
    /* FAQ Mobile */
    .faq-main-title {
      font-size: 1.4rem;
    }
    
    .faq-question {
      padding: var(--spacing-md);
      font-size: 0.85rem;
    }
    
    .faq-answer {
      padding: 0 var(--spacing-md) var(--spacing-md);
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
      width: 280px;
      padding: var(--spacing-lg);
    }
    
    .testimonial-text {
      font-size: 0.8rem;
    }
    
    /* Rise CTA Mobile */
    .rise-cta-wrapper {
      padding: var(--spacing-2xl) var(--spacing-lg);
    }
    
    .floating-icon {
      width: 36px;
      height: 36px;
    }
    
    .floating-icon svg {
      width: 18px;
      height: 18px;
    }
    
    .floating-facebook,
    .floating-tiktok,
    .floating-twitter {
      display: none;
    }
    
    .rise-cta-title {
      font-size: 1.3rem;
    }
    
    /* Footer Mobile */
    .footer-grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl);
      text-align: center;
    }
    
    .footer-social {
      justify-content: center;
    }
    
    .footer-contact p {
      justify-content: center;
    }
  }
  
  @media (max-width: 991px) {
    /* Testimonials Tablet */
    .testimonial-card {
      width: 320px;
    }
    
    /* Footer Tablet */
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* RTL Support for Landing */
  .rtl-content .hero-description {
    margin-left: auto;
    margin-right: 0;
  }
  
  .rtl-form .login-input-icon-img {
    left: auto;
    right: 14px;
  }
  
  .rtl-form .landing-login .login-input-group .form-control {
    padding: 14px 54px 14px 16px;
  }
  
  .rtl-form .custom-checkbox {
    padding-left: 0;
    padding-right: 28px;
  }
  
  .rtl-form .custom-checkbox .checkmark {
    left: auto;
    right: 0;
  }
  
  .rtl-content .rise-description,
  .rtl-content .payments-desc {
    text-align: right;
  }
  
  .rtl-content .platform-text {
    padding-right: 0;
    padding-left: var(--spacing-xl);
  }
  
  @media (max-width: 991px) {
    .rtl-content .platform-text {
      padding-left: 0;
      text-align: center;
    }
  }
  
  /* ============================================
     7. LOGIN CARD
     ============================================ */
  .login-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
  }
  
  .login-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--glass-shadow);
    max-width: 480px;
    margin: 0 auto;
  }
  
  .login-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    text-align: center;
    color: var(--text-primary);
  }
  
  .login-input-group {
    position: relative;
    margin-bottom: var(--spacing-lg);
  }
  
  .login-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 2;
  }
  
  .login-input-group input {
    padding-left: 48px !important;
  }
  
  .login-card .form-control {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    padding: 14px 16px;
    font-size: 1rem;
    transition: all var(--transition-fast);
  }
  
  .login-card .form-control:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.15);
    outline: none;
  }
  
  .login-card .form-control::placeholder {
    color: var(--text-muted);
  }
  
  .login-remember-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }
  
  .login-card .checkbox {
    margin: 0;
  }
  
  .login-card .checkbox label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
  }
  
  .login-card .checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
    cursor: pointer;
  }
  
  .forgot-password {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
  }
  
  .forgot-password:hover {
    color: var(--accent-primary);
  }
  
  .login-submit-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--spacing-lg);
  }
  
  .login-submit-row .btn-primary {
    min-width: 140px;
  }
  
  .login-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
  }
  
  .login-footer a {
    color: var(--accent-primary);
    font-weight: 600;
  }
  
  .login-footer a:hover {
    color: var(--accent-primary-light);
  }
  
  /* Login Card Mobile */
  @media (max-width: 576px) {
    .login-card {
      padding: var(--spacing-xl);
      margin: 0 var(--spacing-md);
      border-radius: var(--radius-lg);
    }
    
    .login-submit-row {
      justify-content: stretch;
    }
    
    .login-submit-row .btn-primary {
      width: 100%;
    }
  }
  
  /* ============================================
     8. STATS SECTION
     ============================================ */
  .stats-section {
    padding: var(--spacing-3xl) 0;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
  }
  
  .stat-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-normal);
  }
  
  .stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color-light);
    box-shadow: var(--shadow-lg);
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    display: block;
  }
  
  .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
  }
  
  .stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Stats Mobile */
  @media (max-width: 768px) {
    .stats-grid {
      grid-template-columns: 1fr;
      max-width: 350px;
    }
    
    .stat-card {
      display: flex;
      align-items: center;
      gap: var(--spacing-lg);
      text-align: left;
      padding: var(--spacing-lg);
    }
    
    .stat-icon {
      margin: 0;
      width: 50px;
      height: 50px;
      flex-shrink: 0;
    }
    
    .stat-content {
      flex: 1;
    }
  }
  
  /* ============================================
     9. FEATURES SECTION
     ============================================ */
  .features-section {
    padding: var(--spacing-3xl) 0;
  }
  
  .features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
  }
  
  .features-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
  }
  
  .features-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
  }
  
  .features-subtitle {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1.25rem;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .feature-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    text-align: center;
    transition: all var(--transition-normal);
  }
  
  .feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow-primary);
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    display: block;
  }
  
  .feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
  }
  
  .feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Features CTA */
  .features-cta {
    text-align: center;
    margin-top: var(--spacing-3xl);
  }
  
  .features-cta .btn {
    padding: 16px 48px;
    font-size: 1.1rem;
  }
  
  /* Features Mobile */
  @media (max-width: 991px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .features-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
    }
    
    .feature-card {
      padding: var(--spacing-xl);
    }
  }
  
  /* ============================================
     10. CARDS / CONTAINERS (.well, .panel)
     ============================================ */
  .well {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
    min-height: auto;
  }
  
  .well-float {
    overflow-x: auto;
  }
  
  .panel {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }
  
  .panel-heading {
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: var(--spacing-md) var(--spacing-lg);
  }
  
  .panel-title {
    color: var(--text-primary);
    font-weight: 600;
  }
  
  .panel-body {
    padding: var(--spacing-lg);
    color: var(--text-secondary);
  }
  
  .panel-body.border-solid {
    border: 1px solid var(--border-color);
  }
  
  .panel-body.border-rounded {
    border-radius: var(--radius-md);
  }
  
  /* Container adjustments */
  .container, .container-fluid {
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
  }
  
  @media (max-width: 576px) {
    .well {
      padding: var(--spacing-lg);
      border-radius: var(--radius-md);
    }
  }
  
  /* ============================================
     11. BUTTONS
     ============================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 10px 24px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    line-height: 1.5;
    white-space: nowrap;
  }
  
  .btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.25);
  }
  
  /* Primary Button - Magenta Gradient */
  .btn-primary {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
  }
  
  .btn-primary:hover,
  .btn-primary:focus {
    background: var(--gradient-primary-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
  }
  
  .btn-primary:active {
    transform: translateY(0);
  }
  
  .btn-primary.disabled,
  .btn-primary:disabled {
    background: var(--gradient-primary);
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }
  
  /* Secondary Button - Orange Gradient */
  .btn-secondary,
  .btn-warning {
    background: var(--gradient-secondary);
    border-color: transparent;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
  }
  
  .btn-secondary:hover,
  .btn-secondary:focus,
  .btn-warning:hover,
  .btn-warning:focus {
    background: var(--gradient-secondary-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-secondary);
  }
  
  /* Default Button - Dark Bordered */
  .btn-default {
    background: transparent;
    border-color: var(--border-color-light);
    color: var(--text-primary);
  }
  
  .btn-default:hover,
  .btn-default:focus {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
  }
  
  /* Success Button */
  .btn-success {
    background: var(--success);
    border-color: var(--success);
    color: var(--text-primary);
  }
  
  .btn-success:hover,
  .btn-success:focus {
    background: #1ea550;
    border-color: #1ea550;
    color: var(--text-primary);
    transform: translateY(-2px);
  }
  
  /* Danger Button */
  .btn-danger {
    background: var(--error);
    border-color: var(--error);
    color: var(--text-primary);
  }
  
  .btn-danger:hover,
  .btn-danger:focus {
    background: #dc3030;
    border-color: #dc3030;
    color: var(--text-primary);
    transform: translateY(-2px);
  }
  
  /* Info Button */
  .btn-info {
    background: var(--info);
    border-color: var(--info);
    color: var(--text-primary);
  }
  
  .btn-info:hover,
  .btn-info:focus {
    background: #2563eb;
    border-color: #2563eb;
    color: var(--text-primary);
    transform: translateY(-2px);
  }
  
  /* Link Button */
  .btn-link {
    background: transparent;
    border: none;
    color: var(--accent-primary);
    padding: 0;
    font-weight: 500;
  }
  
  .btn-link:hover,
  .btn-link:focus {
    color: var(--accent-primary-light);
    text-decoration: none;
    transform: none;
    box-shadow: none;
  }
  
  /* Button Sizes */
  .btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
  }
  
  .btn-sm {
    padding: 6px 16px;
    font-size: 0.85rem;
  }
  
  .btn-xs {
    padding: 4px 12px;
    font-size: 0.8rem;
  }
  
  .btn-block {
    width: 100%;
  }
  
  /* Button Groups */
  .btn-group .btn {
    border-radius: 0;
  }
  
  .btn-group .btn:first-child {
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  }
  
  .btn-group .btn:last-child {
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  }
  
  /* Landing Page Specific Buttons */
  .btn-signup {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-primary);
    padding: 10px 24px;
  }
  
  .btn-signup:hover {
    background: var(--gradient-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
  }
  
  .btn-signin {
    background: var(--gradient-secondary);
    border-color: transparent;
    color: var(--text-primary);
    padding: 10px 24px;
  }
  
  .btn-signin:hover {
    background: var(--gradient-secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-secondary);
  }
  
  /* ============================================
     12. FORMS
     ============================================ */
  .form-control {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    padding: 12px 16px;
    font-size: 1rem;
    font-family: var(--font-family);
    height: auto;
    transition: all var(--transition-fast);
    box-shadow: none;
  }
  
  .form-control:focus {
    background: var(--bg-input);
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.15);
    outline: none;
    color: var(--text-primary);
  }
  
  .form-control::placeholder {
    color: var(--text-muted);
  }
  
  .form-control:disabled,
  .form-control[readonly] {
    background: var(--bg-tertiary);
    opacity: 0.7;
    cursor: not-allowed;
  }
  
  /* Select */
  select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b8b8c0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }
  
  select.form-control option {
    background: var(--bg-card-solid);
    color: var(--text-primary);
  }
  
  /* Textarea */
  textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }
  
  /* Labels */
  .control-label,
  label {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
    display: block;
  }
  
  /* Form Groups */
  .form-group {
    margin-bottom: var(--spacing-lg);
  }
  
  /* Help Text */
  .help-block {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: var(--spacing-xs);
  }
  
  /* Input Groups */
  .input-group {
    display: flex;
  }
  
  .input-group .form-control {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    flex: 1;
  }
  
  .input-group-btn .btn,
  .input-group-addon {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    border-left: none;
  }
  
  .input-group-addon {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 12px 16px;
  }
  
  /* Checkboxes & Radios */
  .checkbox, .radio {
    margin-bottom: var(--spacing-md);
  }
  
  .checkbox label,
  .radio label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 400;
  }
  
  .checkbox input[type="checkbox"],
  .radio input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
    cursor: pointer;
    flex-shrink: 0;
  }
  
  /* Form Inline */
  .form-inline .form-group {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    margin-right: var(--spacing-md);
  }
  
  /* ============================================
     13. TABLES
     ============================================ */
  .table {
    width: 100%;
    background: transparent;
    color: var(--text-primary);
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
  }
  
  .table > thead > tr > th {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    border-top: none;
    white-space: nowrap;
  }
  
  .table > thead > tr > th:first-child {
    border-radius: var(--radius-md) 0 0 0;
  }
  
  .table > thead > tr > th:last-child {
    border-radius: 0 var(--radius-md) 0 0;
  }
  
  .table > tbody > tr > td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    color: var(--text-secondary);
  }
  
  .table > tbody > tr:hover > td {
    background: var(--bg-hover);
  }
  
  .table > tbody > tr:last-child > td {
    border-bottom: none;
  }
  
  /* Category Row */
  .table > tbody > tr[data-filter-table-category-id] > td[colspan] {
    background: rgba(233, 30, 140, 0.08);
    color: var(--text-primary);
    font-weight: 600;
    padding: 12px 16px;
  }
  
  /* Table Bordered */
  .table-bordered {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  
  .table-bordered > thead > tr > th,
  .table-bordered > tbody > tr > td {
    border: 1px solid var(--border-color);
  }
  
  /* Table Striped */
  .table-striped > tbody > tr:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.02);
  }
  
  /* Responsive Table */
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
  }
  
  /* Table Utility Classes */
  .nowrap {
    white-space: nowrap;
  }
  
  .width-40 {
    width: 40%;
    min-width: 200px;
  }
  
  .width-service-name {
    min-width: 250px;
  }
  
  /* Service Table Specific */
  #service-table .service-name {
    font-weight: 500;
  }
  
  #service-table .service-description {
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  
  /* Favorite Star */
  [data-favorite-service-id] {
    cursor: pointer;
    color: var(--text-muted);
    transition: color var(--transition-fast);
  }
  
  [data-favorite-service-id]:hover,
  [data-favorite-service-id].favorite-active {
    color: #fbbf24;
  }
  
  /* ============================================
     14. ALERTS
     ============================================ */
  .alert {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    position: relative;
  }
  
  .alert h4 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
  }
  
  .alert-success {
    background: var(--success-bg);
    border-color: var(--success);
    color: var(--success);
  }
  
  .alert-success h4 {
    color: var(--success);
  }
  
  .alert-danger {
    background: var(--error-bg);
    border-color: var(--error);
    color: #fca5a5;
  }
  
  .alert-danger h4 {
    color: var(--error);
  }
  
  .alert-warning {
    background: var(--warning-bg);
    border-color: var(--warning);
    color: #fcd34d;
  }
  
  .alert-warning h4 {
    color: var(--warning);
  }
  
  .alert-info {
    background: var(--info-bg);
    border-color: var(--info);
    color: #93c5fd;
  }
  
  .alert-info h4 {
    color: var(--info);
  }
  
  /* Alert Close Button */
  .alert .close {
    position: absolute;
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    color: inherit;
    opacity: 0.6;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    text-shadow: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity var(--transition-fast);
  }
  
  .alert .close:hover {
    opacity: 1;
  }
  
  .alert-dismissible {
    padding-right: 45px;
  }
  
  /* ============================================
     15. MODALS
     ============================================ */
  .modal-backdrop {
    background: rgba(0, 0, 0, 0.75);
  }
  
  .modal-backdrop.in {
    opacity: 1;
  }
  
  .modal-content {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }
  
  .modal-header {
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: var(--spacing-lg);
  }
  
  .modal-header .close {
    color: var(--text-muted);
    opacity: 0.8;
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: none;
    transition: opacity var(--transition-fast);
  }
  
  .modal-header .close:hover {
    color: var(--text-primary);
    opacity: 1;
  }
  
  .modal-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.25rem;
  }
  
  .modal-body {
    padding: var(--spacing-xl);
    color: var(--text-secondary);
  }
  
  .modal-footer {
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-lg);
    background: var(--bg-tertiary);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }
  
  .modal-footer .btn + .btn {
    margin-left: var(--spacing-sm);
  }
  
  /* ============================================
     16. PAGINATION
     ============================================ */
  .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    padding: 0;
    margin: var(--spacing-lg) 0;
    list-style: none;
  }
  
  .pagination > li > a,
  .pagination > li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition-fast);
    text-decoration: none;
  }
  
  .pagination > li > a:hover,
  .pagination > li > a:focus {
    background: var(--bg-hover);
    border-color: var(--border-color-light);
    color: var(--text-primary);
  }
  
  .pagination > li.active > a,
  .pagination > li.active > span {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-primary);
  }
  
  .pagination > li.active > a:hover {
    background: var(--gradient-primary-hover);
  }
  
  .pagination > li.disabled > a,
  .pagination > li.disabled > span {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
  }
  
  /* ============================================
     17. NAV PILLS / TABS
     ============================================ */
  .nav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    padding: 0;
    margin-bottom: var(--spacing-lg);
    list-style: none;
  }
  
  .nav-pills > li {
    margin: 0;
  }
  
  .nav-pills > li > a {
    display: block;
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition-fast);
    text-decoration: none;
  }
  
  .nav-pills > li > a:hover,
  .nav-pills > li > a:focus {
    background: var(--bg-hover);
    color: var(--text-primary);
  }
  
  .nav-pills > li.active > a {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--text-primary);
  }
  
  /* Nav Pills Dropdown */
  .nav-pills .dropdown .btn {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
  }
  
  .nav-pills .dropdown .btn:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
  }
  
  .nav-pills .dropdown-menu {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-sm) 0;
    margin-top: var(--spacing-sm);
  }
  
  .nav-pills .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 10px 16px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
  }
  
  .nav-pills .dropdown-menu li a:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
  }
  
  /* Search in Nav Pills */
  .nav-pills .search {
    margin-left: auto;
  }
  
  .nav-pills .search .input-group {
    min-width: 250px;
  }
  
  @media (max-width: 768px) {
    .nav-pills {
      flex-direction: column;
    }
    
    .nav-pills .search {
      margin-left: 0;
      margin-top: var(--spacing-sm);
    }
    
    .nav-pills .search .input-group {
      min-width: 100%;
    }
    
    .nav-pills > li.pull-right {
      float: none !important;
    }
  }
  
  /* ============================================
     18. DROPDOWNS
     ============================================ */
  .dropdown-menu {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-sm) 0;
    min-width: 180px;
  }
  
  .dropdown-menu > li > a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 10px 16px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
  }
  
  .dropdown-menu > li > a:hover,
  .dropdown-menu > li > a:focus {
    background: var(--bg-hover);
    color: var(--text-primary);
  }
  
  .dropdown-menu > li.active > a {
    background: var(--accent-primary);
    color: var(--text-primary);
  }
  
  .dropdown-menu .divider {
    background: var(--border-color);
    margin: var(--spacing-sm) 0;
  }
  
  .dropdown-max-height {
    max-height: 300px;
    overflow-y: auto;
  }
  
  .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
  }
  
  /* ============================================
     19. TOOLTIPS
     ============================================ */
  .tooltip {
    font-family: var(--font-family);
  }
  
  .tooltip-inner {
    background: var(--bg-card-solid);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 0.85rem;
    max-width: 300px;
    box-shadow: var(--shadow-md);
  }
  
  .tooltip.top .tooltip-arrow {
    border-top-color: var(--bg-card-solid);
  }
  
  .tooltip.bottom .tooltip-arrow {
    border-bottom-color: var(--bg-card-solid);
  }
  
  .tooltip.left .tooltip-arrow {
    border-left-color: var(--bg-card-solid);
  }
  
  .tooltip.right .tooltip-arrow {
    border-right-color: var(--bg-card-solid);
  }
  
  /* ============================================
     20. CODE / PRE
     ============================================ */
  pre, code {
    font-family: var(--font-mono);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
  }
  
  pre {
    padding: var(--spacing-lg);
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  code {
    padding: 2px 6px;
    font-size: 0.9em;
  }
  
  /* ============================================
     21. API PAGE
     ============================================ */
  .api .center-big-content-block {
    max-width: 100%;
  }
  
  .api h2 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
  }
  
  .api h4 {
    color: var(--accent-primary);
    margin-top: var(--spacing-xl);
  }
  
  .api .table-bordered {
    margin-bottom: var(--spacing-lg);
  }
  
  /* ============================================
     22. NOTIFICATION WRAPPER
     ============================================ */
  #notify-wrapper {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: var(--z-tooltip);
    max-width: 400px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
  }
  
  /* ============================================
     23. ORDER ACTIONS
     ============================================ */
  .order-actions {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
  }
  
  .order-actions .btn {
    white-space: nowrap;
  }
  
  /* ============================================
     24. TICKETS UPLOADER & VIEW TICKET
     ============================================ */
  .tickets-uploader {
    margin-top: var(--spacing-sm);
  }
  
  /* Ticket View Styles */
  .titcket-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
  }
  
  .ticket-message-block {
    margin-bottom: var(--spacing-lg);
  }
  
  .ticket-message {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
  }
  
  .ticket-message .message {
    color: var(--text-secondary);
    line-height: 1.6;
    word-wrap: break-word;
  }
  
  .ticket-message-right .ticket-message {
    background: rgba(233, 30, 140, 0.1);
    border-color: rgba(233, 30, 140, 0.2);
  }
  
  .ticket-message-left .ticket-message {
    background: var(--bg-tertiary);
  }
  
  .ticket-message-block .info {
    font-size: 0.85rem;
    color: var(--text-muted);
  }
  
  .ticket-message-block .info strong {
    color: var(--text-secondary);
    margin-right: var(--spacing-sm);
  }
  
  .panel-border-top {
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
  }
  
  /* Confirm Email Styles */
  .confirm-email {
    text-align: center;
    padding: var(--spacing-2xl);
  }
  
  .confirm-email h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
  }
  
  .confirm-email__description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
  }
  
  .confirm-email__action {
    margin-top: var(--spacing-xl);
  }
  
  .confirm-email__action .btn {
    margin: 0 var(--spacing-sm);
  }
  
  /* ============================================
     25. GOOGLE SIGN IN
     ============================================ */
  .g_id_signin {
    margin-top: var(--spacing-sm);
  }
  
  /* ============================================
     26. UTILITY CLASSES
     ============================================ */
  .hidden {
    display: none !important;
  }
  
  .text-right {
    text-align: right;
  }
  
  .text-left {
    text-align: left;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-md-right {
    text-align: right;
  }
  
  .pull-right {
    float: right !important;
  }
  
  .pull-left {
    float: left !important;
  }
  
  .pull-right-middle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    min-height: 38px;
  }
  
  .m-b-md {
    margin-bottom: var(--spacing-lg);
  }
  
  .m-t-md {
    margin-top: var(--spacing-lg);
  }
  
  .m-t {
    margin-top: var(--spacing-md);
  }
  
  .clearfix::after {
    content: '';
    display: table;
    clear: both;
  }
  
  /* Hide/Show Classes */
  @media (max-width: 767px) {
    .hidden-xs {
      display: none !important;
    }
    .visible-xs {
      display: block !important;
    }
    tr.visible-xs {
      display: table-row !important;
    }
  }
  
  @media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
      display: none !important;
    }
    .visible-sm {
      display: block !important;
    }
    tr.visible-sm {
      display: table-row !important;
    }
  }
  
  @media (min-width: 768px) {
    .visible-xs {
      display: none !important;
    }
  }
  
  @media (min-width: 992px) {
    .visible-sm {
      display: none !important;
    }
  }
  
  /* ============================================
     27. RTL SUPPORT
     ============================================ */
  /* RTL Navbar */
  .rtl-navbar .navbar-brand {
    float: right;
  }
  
  .rtl-navbar .navbar-nav {
    float: right;
  }
  
  .rtl-navbar .navbar-right {
    float: left !important;
  }
  
  .rtl-navbar .navbar-toggle {
    float: left;
    margin-left: 15px;
    margin-right: 0;
  }
  
  .rtl-navbar .navbar-left-block {
    float: right;
  }
  
  .rtl-navbar .navbar-right-block {
    float: left;
  }
  
  .rtl-navbar .navbar-icon {
    margin-right: 0;
    margin-left: var(--spacing-sm);
  }
  
  /* RTL Forms */
  .rtl-form {
    direction: rtl;
    text-align: right;
  }
  
  .rtl-form .form-control {
    text-align: right;
  }
  
  .rtl-form select.form-control {
    background-position: left 16px center;
    padding-left: 40px;
    padding-right: 16px;
  }
  
  .rtl-form .checkbox label,
  .rtl-form .radio label {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  
  .rtl-form .login-input-icon {
    left: auto;
    right: 16px;
  }
  
  .rtl-form .login-input-group input {
    padding-left: 16px !important;
    padding-right: 48px !important;
  }
  
  .rtl-form .forgot-password {
    float: left;
  }
  
  .rtl-form .login-submit-row {
    justify-content: flex-start;
  }
  
  .rtl-form .pull-right-middle {
    justify-content: flex-start;
  }
  
  /* RTL Alerts */
  .rtl-alert {
    direction: rtl;
    text-align: right;
  }
  
  .rtl-alert .close {
    right: auto;
    left: var(--spacing-md);
  }
  
  /* RTL Tables */
  .rtl-table {
    direction: rtl;
  }
  
  .rtl-table th,
  .rtl-table td {
    text-align: right;
  }
  
  /* RTL Nav */
  .rtl-nav {
    direction: rtl;
  }
  
  .rtl-nav .search {
    margin-left: 0;
    margin-right: auto;
  }
  
  .rtl-nav .pull-right {
    float: left !important;
  }
  
  /* RTL Pagination */
  .rtl-pagination {
    direction: rtl;
  }
  
  /* RTL Content */
  .rtl-content {
    direction: rtl;
    text-align: right;
  }
  
  /* RTL Search */
  .rtl-search {
    direction: rtl;
  }
  
  /* RTL Input Group */
  .rtl-form .input-group .form-control {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
  }
  
  .rtl-form .input-group-btn .btn,
  .rtl-form .input-group-addon {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    border-left: 1px solid var(--border-color);
    border-right: none;
  }
  
  /* RTL Modal */
  .modal-rtl .modal-content {
    direction: rtl;
    text-align: right;
  }
  
  .modal-rtl .modal-header .close {
    float: left;
    margin: 0;
  }
  
  .modal-rtl .modal-footer {
    text-align: left;
  }
  
  /* ============================================
     28. RESPONSIVE BREAKPOINTS
     ============================================ */
  
  /* Extra Large Screens (1200px+) */
  @media (min-width: 1200px) {
    .container {
      max-width: 1170px;
    }
  }
  
  /* Large Screens (992px - 1199px) */
  @media (min-width: 992px) and (max-width: 1199px) {
    .container {
      max-width: 970px;
    }
  }
  
  /* Medium Screens / Tablets (768px - 991px) */
  @media (min-width: 768px) and (max-width: 991px) {
    .container {
      max-width: 750px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
  }
  
  /* Small Screens / Phones (576px - 767px) */
  @media (max-width: 767px) {
    html {
      font-size: 15px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .container, .container-fluid {
      padding-left: var(--spacing-md);
      padding-right: var(--spacing-md);
    }
    
    /* Stack columns on mobile */
    .col-md-6,
    .col-md-8,
    .col-lg-8 {
      width: 100%;
      float: none;
    }
    
    .col-md-offset-2,
    .col-lg-offset-2 {
      margin-left: 0;
    }
    
    /* Table responsiveness */
    .table-responsive {
      border: none;
    }
    
    .table > thead > tr > th,
    .table > tbody > tr > td {
      padding: 10px 12px;
      font-size: 0.9rem;
    }
    
    /* Pull right reset on mobile */
    .pull-right {
      float: none !important;
    }
    
    /* Form inline stack */
    .form-inline .form-group {
      display: block;
      margin-bottom: var(--spacing-md);
      margin-right: 0;
    }
    
    /* Full width buttons on mobile */
    .form-group .btn-primary,
    .form-group .btn-default {
      width: 100%;
    }
    
    /* Modals */
    .modal-dialog {
      margin: var(--spacing-md);
    }
  }
  
  /* Extra Small Screens (320px - 575px) */
  @media (max-width: 575px) {
    html {
      font-size: 14px;
    }
    
    .well {
      padding: var(--spacing-md);
    }
    
    .btn {
      padding: 10px 18px;
    }
    
    .nav-pills > li > a {
      padding: 8px 14px;
      font-size: 0.9rem;
    }
    
    .pagination > li > a,
    .pagination > li > span {
      min-width: 36px;
      height: 36px;
      padding: 0 8px;
      font-size: 0.9rem;
    }
  }
  
  /* Touch Device Optimizations */
  @media (hover: none) and (pointer: coarse) {
    .btn {
      min-height: 44px;
    }
    
    .form-control {
      min-height: 44px;
      font-size: 16px; /* Prevents iOS zoom */
    }
    
    .nav-pills > li > a {
      min-height: 44px;
      display: flex;
      align-items: center;
    }
    
    .pagination > li > a {
      min-width: 44px;
      min-height: 44px;
    }
  }
  
  /* Print Styles */
  @media print {
    body {
      background: white;
      color: black;
    }
    
    .navbar,
    .btn,
    .pagination {
      display: none !important;
    }
    
    .well,
    .panel {
      border: 1px solid #ccc;
      box-shadow: none;
      background: white;
    }
  }
  
  /* ============================================
     29. LANDING PAGE SPECIFIC (NON-AUTH)
     ============================================ */
  /* Landing Page Navbar Enhancement */
  body:not(.logged-in) .navbar {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  /* Landing Auth Buttons */
  .landing-auth-buttons {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
  }
  
  .landing-auth-buttons .btn {
    padding: 10px 22px;
  }
  
  /* ============================================
     30. SCROLLBAR STYLING
     ============================================ */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--bg-secondary);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--border-color-light);
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
  }
  
  /* Firefox scrollbar */
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--border-color-light) var(--bg-secondary);
  }
  
  /* ============================================
     31. ANIMATION UTILITIES
     ============================================ */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { 
      opacity: 0;
      transform: translateY(20px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideDown {
    from { 
      opacity: 0;
      transform: translateY(-20px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    animation: fadeIn 0.3s ease forwards;
  }
  
  .slide-up {
    animation: slideUp 0.4s ease forwards;
  }
  
  .slide-down {
    animation: slideDown 0.4s ease forwards;
  }
  
  /* Staggered animations */
  .stagger-1 { animation-delay: 0.1s; }
  .stagger-2 { animation-delay: 0.2s; }
  .stagger-3 { animation-delay: 0.3s; }
  .stagger-4 { animation-delay: 0.4s; }
  .stagger-5 { animation-delay: 0.5s; }
  
  /* ============================================
     32. FOOTER (IF NEEDED)
     ============================================ */
  .footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-2xl) 0;
    margin-top: var(--spacing-3xl);
    color: var(--text-muted);
    text-align: center;
  }
  
  .footer a {
    color: var(--text-secondary);
  }
  
  .footer a:hover {
    color: var(--accent-primary);
  }
  
  /* ============================================
     33. PAGE CONTENT WRAPPER (INTERNAL PAGES)
     ============================================ */
  body.logged-in .container,
  body.logged-in .container-fluid {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
  }
  
  /* Page Title */
  .page-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
  }
  
  /* ============================================
     34. DRIP FEED / MASS ORDER FORMS
     ============================================ */
  .drip-feed-info,
  .mass-order-info {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
  }
  
  .drip-feed-info h4,
  .mass-order-info h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
  }
  
  /* ============================================
     35. SUBSCRIPTIONS
     ============================================ */
  .subscription-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    transition: all var(--transition-normal);
  }
  
  .subscription-card:hover {
    border-color: var(--border-color-light);
  }
  
  .subscription-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
  }
  
  .subscription-status.active {
    background: var(--success-bg);
    color: var(--success);
  }
  
  .subscription-status.paused {
    background: var(--warning-bg);
    color: var(--warning);
  }
  
  .subscription-status.stopped {
    background: var(--error-bg);
    color: var(--error);
  }
  
  /* ============================================
     36. REFILL / REFUND PAGES
     ============================================ */
  .refill-info,
  .refund-info {
    background: var(--info-bg);
    border: 1px solid var(--info);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
  }
  
  /* ============================================
     37. BLOG STYLES
     ============================================ */
  .blog-post-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    transition: all var(--transition-normal);
  }
  
  .blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .blog-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .blog-post-card .content {
    padding: var(--spacing-lg);
  }
  
  .blog-post-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .blog-post-card h3 a {
    color: var(--text-primary);
  }
  
  .blog-post-card h3 a:hover {
    color: var(--accent-primary);
  }
  
  .blog-post-card .meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
  }
  
  .blog-post-card .excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
  }
  
  /* Single Blog Post */
  .blog-post-single {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
  }
  
  .blog-post-single h1 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
  }
  
  .blog-post-single .meta {
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
  }
  
  .blog-post-single .content {
    color: var(--text-secondary);
    line-height: 1.8;
  }
  
  .blog-post-single .content h2,
  .blog-post-single .content h3,
  .blog-post-single .content h4 {
    color: var(--text-primary);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
  }
  
  .blog-post-single .content p {
    margin-bottom: var(--spacing-md);
  }
  
  .blog-post-single .content img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
  }
  
  .blog-post-single .content a {
    color: var(--accent-primary);
  }
  
  .blog-post-single .content ul,
  .blog-post-single .content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-xl);
  }
  
  .blog-post-single .content li {
    margin-bottom: var(--spacing-sm);
  }
  
  /* ============================================
     38. UPDATES PAGE
     ============================================ */
  .update-item {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
  }
  
  .update-item .date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
  }
  
  .update-item .title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
  }
  
  .update-item .description {
    color: var(--text-secondary);
    line-height: 1.6;
  }
  
  /* ============================================
     39. CHILD PANEL
     ============================================ */
  .child-panel-info {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
  }
  
  .child-panel-info h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
  }
  
  .child-panel-info p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
  }
  
  /* ============================================
     40. NEW ORDER SEARCH DROPDOWN
     ============================================ */
  #new-order-search {
    margin-bottom: var(--spacing-lg);
  }
  
  #new-order-search .input-wrapper {
    position: relative;
  }
  
  #new-order-search .input-wrapper button {
    color: var(--text-muted);
  }
  
  #new-order-search .input-wrapper input {
    padding-left: 40px;
  }
  
  /* RTL adjustment */
  [data-dir="rtl"] #new-order-search .input-wrapper input {
    padding-left: 16px;
    padding-right: 40px;
  }
  
  /* ============================================
     41. SERVICE DESCRIPTION PANEL
     ============================================ */
  #service_description .panel-body {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    line-height: 1.6;
  }
  
  /* ============================================
     42. FIELDS CONTAINER (DYNAMIC FIELDS)
     ============================================ */
  #fields .form-group {
    margin-bottom: var(--spacing-lg);
  }
  
  #fields .fields {
    display: block;
  }
  
  /* ============================================
     43. BADGE STYLING
     ============================================ */
  .badge {
    background: var(--glass-bg);
    color: var(--text-primary);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
  }
  
  .badge-success {
    background: var(--success);
  }
  
  .badge-danger {
    background: var(--error);
  }
  
  .badge-warning {
    background: var(--warning);
    color: #000;
  }
  
  .badge-info {
    background: var(--info);
  }
  
  /* ============================================
     44. LABEL STYLING
     ============================================ */
  .label {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .label-default {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
  }
  
  .label-primary {
    background: var(--accent-primary);
    color: var(--text-primary);
  }
  
  .label-success {
    background: var(--success);
    color: var(--text-primary);
  }
  
  .label-danger {
    background: var(--error);
    color: var(--text-primary);
  }
  
  .label-warning {
    background: var(--warning);
    color: #000;
  }
  
  .label-info {
    background: var(--info);
    color: var(--text-primary);
  }
  
  /* ============================================
     45. RECAPTCHA STYLING
     ============================================ */
  .g-recaptcha {
    margin-bottom: var(--spacing-lg);
  }
  
  /* ============================================
     46. SEARCH DROPDOWN (NEW ORDER)
     ============================================ */
  .search-dropdown {
    position: relative;
  }
  
  .search-dropdown .dropdown-menu {
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
  }
  
  /* ============================================
     47. TERMS PAGE
     ============================================ */
  .terms-content,
  .faq-content {
    color: var(--text-secondary);
    line-height: 1.8;
  }
  
  .terms-content h1,
  .terms-content h2,
  .terms-content h3,
  .faq-content h1,
  .faq-content h2,
  .faq-content h3 {
    color: var(--text-primary);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
  }
  
  .terms-content p,
  .faq-content p {
    margin-bottom: var(--spacing-md);
  }
  
  .terms-content ul,
  .terms-content ol,
  .faq-content ul,
  .faq-content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-xl);
  }
  
  .terms-content li,
  .faq-content li {
    margin-bottom: var(--spacing-sm);
  }
  
  /* ============================================
     48. ERROR SUMMARY
     ============================================ */
  .error-summary {
    background: var(--error-bg);
    border: 1px solid var(--error);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    color: var(--error);
  }
  
  .error-summary ul {
    margin: 0;
    padding-left: var(--spacing-lg);
  }
  
  /* ============================================
     49. LOADING STATES
     ============================================ */
  .loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
  }
  
  .loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  /* ============================================
     50. DASHBOARD LAYOUT
     ============================================ */
  .dashboard-layout {
    display: flex;
    min-height: 100vh;
    position: relative;
  }
  
  /* ============================================
     51. DASHBOARD SIDEBAR
     ============================================ */
  .dashboard-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9998;
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform 0.3s ease;
  }
  
  .sidebar-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: var(--spacing-lg);
  }
  
  /* Sidebar Brand - Elegant Gold */
  .sidebar-brand {
    padding: var(--spacing-md) 0;
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  }
  
  .sidebar-brand a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .sidebar-brand a:hover {
    transform: scale(1.02);
  }
  
  .sidebar-brand img {
    max-height: 36px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
  }
  
  .sidebar-brand a:hover img {
    filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.7));
    transform: scale(1.05);
  }
  
  .sidebar-brand .brand-text {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    /* Shiny Gold Gradient Text */
    background: linear-gradient(135deg, #FFD700 0%, #FFC125 20%, #FFD700 40%, #DAA520 60%, #FFD700 80%, #FFC125 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 3s ease-in-out infinite;
  }
  
  /* Sidebar User */
  .sidebar-user {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
  }
  
  .user-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-circle);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    flex-shrink: 0;
  }
  
  .user-info {
    flex: 1;
    min-width: 0;
  }
  
  .user-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .user-balance {
    font-size: 0.85rem;
    color: var(--accent-secondary);
    font-weight: 600;
  }
  
  /* Sidebar Navigation */
  .sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
  }
  
  .sidebar-nav-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    opacity: 0.8;
  }
  
  .sidebar-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
  }
  
  .sidebar-nav-item.active {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.2), rgba(255, 140, 66, 0.15));
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(233, 30, 140, 0.15);
  }
  
  .sidebar-nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 0 3px 3px 0;
  }

  .sidebar-nav-dropdown {
    margin: 0;
  }

  .sidebar-nav-dropdown > summary.sidebar-nav-item {
    cursor: pointer;
    list-style: none;
  }

  .sidebar-nav-dropdown > summary.sidebar-nav-item::-webkit-details-marker {
    display: none;
  }

  .sidebar-dropdown-icon {
    margin-left: auto;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: transform 0.2s ease;
  }

  .sidebar-nav-dropdown[open] .sidebar-dropdown-icon {
    transform: rotate(180deg);
  }

  .sidebar-submenu {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 36px;
    padding: 4px 0 8px;
  }

  .sidebar-submenu-item {
    display: block;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
  }

  .sidebar-submenu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
  }

  .sidebar-submenu-item.active {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-primary);
  }
  
  /* Sidebar Footer */
  .sidebar-footer {
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .sidebar-footer-link {
    display: block;
    padding: 8px 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
  }
  
  .sidebar-footer-link:hover {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
  }
  
  /* Sidebar Toggle Button (Mobile) */
  .sidebar-toggle {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 12px;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .sidebar-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .sidebar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .sidebar-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .sidebar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Sidebar Overlay */
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }
  
  .sidebar-overlay.active {
    display: block;
    opacity: 1;
  }
  
  /* ============================================
     52. DASHBOARD MAIN CONTENT
     ============================================ */
  .dashboard-main {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* Dashboard Header */
  .dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-xl);
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
  }
  
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
  }
  
  .header-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
  }
  
  .header-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
  }
  
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
  }
  
  .header-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-circle);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .header-icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
  }
  
  .btn-logout {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: var(--radius-pill);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .btn-logout:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
    color: var(--text-primary);
  }
  
  /* Dashboard Content Area */
  .dashboard-content {
    flex: 1;
    padding: var(--spacing-xl);
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
  }
  
  /* ============================================
     53. SUMMARY CARDS
     ============================================ */
  .summary-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
  }
  
  .summary-card {
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .summary-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 4px 0 0 4px;
  }
  
  .summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  }
  
  /* Accent Colors */
  .summary-card.accent-purple::before {
    background: linear-gradient(180deg, #a855f7, #7c3aed);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
  }
  
  .summary-card.accent-orange::before {
    background: linear-gradient(180deg, #fb923c, #f97316);
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.4);
  }
  
  .summary-card.accent-magenta::before {
    background: linear-gradient(180deg, #e91e8c, #c026d3);
    box-shadow: 0 0 20px rgba(233, 30, 140, 0.4);
  }
  
  .summary-card.accent-gold::before {
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
  }
  
  .summary-card-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  
  .summary-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .summary-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }
  
  .summary-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .summary-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* ============================================
     54. PLATFORM GRID (6x2 Layout)
     ============================================ */
  .platform-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(17, 17, 17, 0.5);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  /* Legacy flex container (kept for compatibility) */
  .platform-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md);
    background: rgba(17, 17, 17, 0.5);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .platform-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 80px;
  }
  
  .platform-chip img {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-circle);
    object-fit: cover;
  }
  
  .platform-chip .platform-icon-wrap {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: var(--radius-circle);
    color: var(--text-primary);
    font-size: 1rem;
  }
  
  .platform-chip span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    text-align: center;
  }
  
  .platform-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
  }
  
  .platform-chip:hover span {
    color: var(--text-primary);
  }
  
  .platform-chip.active {
    background: rgba(233, 30, 140, 0.15);
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(233, 30, 140, 0.25);
  }
  
  .platform-chip.active span {
    color: var(--text-primary);
  }
  
  /* Platform Grid Responsive */
  @media (max-width: 1200px) {
    .platform-grid {
      grid-template-columns: repeat(5, 1fr);
    }
  }
  
  @media (max-width: 991px) {
    .platform-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .platform-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-sm);
      padding: var(--spacing-md);
    }
    
    .platform-chip {
      padding: var(--spacing-sm);
      min-height: 70px;
    }
    
    .platform-chip img,
    .platform-chip .platform-icon-wrap {
      width: 28px;
      height: 28px;
    }
    
    .platform-chip span {
      font-size: 0.7rem;
    }
  }
  
  @media (max-width: 480px) {
    .platform-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* ============================================
     55. ORDER SECTION (TWO COLUMNS)
     ============================================ */
  .order-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
  }
  
  /* Order Form Card */
  .order-form-card,
  .service-desc-card {
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
  }
  
  .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: var(--spacing-md);
  }
  
  .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
  }
  
  .card-body {
    padding: var(--spacing-xl);
  }
  
  /* Order Tabs */
  .order-tabs {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
  }
  
  .order-tab {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-family);
    white-space: nowrap;
  }
  
  .order-tab:hover {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-primary);
  }
  
  .order-tab.active {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  }
  
  /* Auto Subscriptions tab special styling */
  .order-tab[data-tab="autosubscriptions"] {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(156, 39, 176, 0.1));
    border-color: rgba(233, 30, 99, 0.3);
  }
  
  .order-tab[data-tab="autosubscriptions"]:hover {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(156, 39, 176, 0.15));
    border-color: rgba(233, 30, 99, 0.4);
  }
  
  .order-tab[data-tab="autosubscriptions"].active {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(156, 39, 176, 0.2));
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.15);
  }
  
  /* Tab Content */
  .tab-content {
    display: block;
  }
  
  .tab-content[style*="display: none"] {
    display: none !important;
  }
  
  /* Form Styling in Order Card */
  .order-form-card .form-group {
    margin-bottom: var(--spacing-lg);
  }
  
  .order-form-card .control-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    display: block;
  }
  
  .order-form-card .form-control {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
    width: 100%;
  }
  
  .order-form-card .form-control:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.15);
  }
  
  .order-form-card select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b8b8c0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }
  
  .order-form-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }
  
  /* Search dropdown inside order card */
  .order-form-card .search-dropdown .form-control {
    padding-left: 40px;
  }
  
  .order-form-card .search-dropdown button {
    color: var(--text-muted);
  }
  
  /* Service description panel inside form */
  .order-form-card #service_description .panel-body {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  /* Dynamic fields container */
  .order-form-card #fields .form-group {
    margin-bottom: var(--spacing-lg);
  }
  
  .order-form-card #fields .form-control {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Terms checkbox */
  .order-form-card .terms {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 400;
    color: var(--text-secondary);
  }
  
  .order-form-card .terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
  }
  
  .order-form-card .terms a {
    color: var(--accent-primary);
  }
  
  .charge-input {
    background: rgba(233, 30, 140, 0.1) !important;
    border-color: rgba(233, 30, 140, 0.3) !important;
    font-weight: 600;
    font-size: 1.1rem !important;
  }
  
  /* Submit Button */
  .btn-submit-order {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    border-radius: var(--radius-pill);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--spacing-md);
  }
  
  .btn-submit-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
  }
  
  .btn-submit-order:active {
    transform: translateY(0);
  }
  
  /* ============================================
     56. SERVICE DESCRIPTION CARD
     ============================================ */
  .service-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
  }
  
  .service-id {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
  }
  
  .service-name {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Service Stats Grid */
  .service-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }
  
  .service-stat {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
  }
  
  .service-stat i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 30, 140, 0.15);
    border-radius: var(--radius-sm);
    color: var(--accent-primary);
    font-size: 0.9rem;
    flex-shrink: 0;
  }
  
  .stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  
  .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  
  .stat-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
  }
  
  /* Service Description Text */
  .service-description-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
  }
  
  .description-content {
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    max-height: 300px;
    overflow-y: auto;
  }
  
  .description-content p,
  .description-content li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
  }
  
  .description-content ul {
    padding-left: var(--spacing-lg);
    margin: 0;
  }
  
  .description-content li::marker {
    color: var(--accent-primary);
  }
  
  /* Additional Content */
  .additional-content {
    margin-top: var(--spacing-xl);
  }
  
  /* ============================================
     57. DASHBOARD RESPONSIVE
     ============================================ */
  @media (max-width: 1200px) {
    .summary-cards {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .order-section {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 991px) {
    .dashboard-sidebar {
      transform: translateX(-100%);
    }
    
    .dashboard-sidebar.open {
      transform: translateX(0);
    }
    
    .sidebar-toggle {
      display: flex;
    }
    
    .dashboard-main {
      margin-left: 0;
    }
    
    .dashboard-header {
      padding-left: 70px;
    }
    
    .dashboard-content {
      padding: var(--spacing-lg);
    }
  }
  
  @media (max-width: 768px) {
    .summary-cards {
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-md);
    }
    
    .summary-card {
      padding: var(--spacing-md);
    }
    
    .summary-card-icon {
      width: 40px;
      height: 40px;
    }
    
    .summary-value {
      font-size: 1rem;
    }
    
    .card-header {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .order-tabs {
      width: 100%;
      gap: 6px;
    }
    
    .order-tab {
      flex: 1;
      text-align: center;
      padding: 8px 10px;
      font-size: 0.72rem;
    }
    
    .service-stats {
      grid-template-columns: 1fr 1fr;
    }
    
    .header-breadcrumb {
      display: none;
    }
  }
  
  @media (max-width: 576px) {
    .dashboard-content {
      padding: var(--spacing-md);
    }
    
    .summary-cards {
      grid-template-columns: 1fr;
    }
    
    .summary-card {
      flex-direction: row;
    }
    
    .card-body {
      padding: var(--spacing-lg);
    }
    
    .btn-submit-order {
      padding: 14px 24px;
    }
    
    .order-tabs {
      flex-wrap: wrap;
      gap: 5px;
    }
    
    .order-tab {
      padding: 7px 8px;
      font-size: 0.68rem;
      flex: 0 1 auto;
    }
    
    .order-tab[data-tab="autosubscriptions"] {
      flex: 1 1 100%;
      order: 3;
    }
  }
  
  /* ============================================
     58. DASHBOARD RTL SUPPORT
     ============================================ */
  .rtl-dashboard .dashboard-sidebar {
    left: auto;
    right: 0;
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .rtl-dashboard .dashboard-main {
    margin-left: 0;
    margin-right: 260px;
  }
  
  .rtl-dashboard .sidebar-nav-item.active::before {
    left: auto;
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .rtl-dashboard .sidebar-toggle {
    left: auto;
    right: 16px;
  }
  
  .rtl-dashboard .dashboard-header {
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
  }
  
  .rtl-dashboard .summary-card::before {
    left: auto;
    right: 0;
    border-radius: 0 4px 4px 0;
  }
  
  @media (max-width: 991px) {
    .rtl-dashboard .dashboard-sidebar {
      transform: translateX(100%);
    }
    
    .rtl-dashboard .dashboard-sidebar.open {
      transform: translateX(0);
    }
    
    .rtl-dashboard .dashboard-main {
      margin-right: 0;
    }
    
    .rtl-dashboard .dashboard-header {
      padding-right: 70px;
      padding-left: var(--spacing-xl);
    }
  }
  
  /* ============================================
     59. HIDE DEFAULT NAVBAR ON DASHBOARD
     ============================================ */
  .dashboard-layout ~ .navbar,
  .dashboard-layout + .navbar,
  body:has(.dashboard-layout) > .navbar {
    display: none;
  }
  
  /* =====================================================
     Social Media Platform Icons - New Order Page
     ===================================================== */
  
  /* Container */
  .ser-cat-btn.brand-company {
      background: rgba(20, 15, 30, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 20px;
  }
  
  .ser-cat-btn .row {
      display: flex;
      flex-wrap: wrap;
      margin: -6px;
  }
  
  .ser-cat-btn .col-sm-3 {
      flex: 0 0 25%;
      max-width: 25%;
      padding: 6px;
  }
  
  /* Platform Button */
  .btn_filter.brand-category {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      background: linear-gradient(135deg, rgba(30, 25, 45, 0.9) 0%, rgba(20, 15, 35, 0.95) 100%);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 10px;
      text-decoration: none !important;
      transition: all 0.25s ease;
      width: 100%;
      position: relative;
      overflow: hidden;
  }
  
  .btn_filter.brand-category:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 0, 128, 0.4);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 0, 128, 0.15);
  }
  
  .btn_filter.brand-category.active {
      background: linear-gradient(135deg, rgba(255, 0, 128, 0.15) 0%, rgba(100, 0, 200, 0.1) 100%);
      border-color: rgba(255, 0, 128, 0.5);
      box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
  }
  
  /* Icon */
  .btn_filter .icon {
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: rgba(255, 0, 128, 0.1);
      flex-shrink: 0;
  }
  
  .btn_filter .icon i {
      font-size: 16px;
      transition: transform 0.25s ease;
  }
  
  .btn_filter:hover .icon i {
      transform: scale(1.15);
  }
  
  /* Platform Name */
  .btn_filter .cat-name {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  
  .btn_filter:hover .cat-name {
      color: #fff;
  }
  
  /* =====================================================
     Platform-Specific Colors
     ===================================================== */
  
  /* Instagram */
  .btn_filter[data-id="instagram"] .icon {
      background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(255, 220, 128, 0.15));
  }
  .btn_filter[data-id="instagram"] .icon i {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }
  .btn_filter[data-id="instagram"].active,
  .btn_filter[data-id="instagram"]:hover {
      border-color: rgba(225, 48, 108, 0.5);
      box-shadow: 0 0 20px rgba(225, 48, 108, 0.2);
  }
  
  /* Facebook */
  .btn_filter[data-id="facebook"] .icon {
      background: rgba(24, 119, 242, 0.15);
  }
  .btn_filter[data-id="facebook"] .icon i {
      color: #1877f2;
  }
  .btn_filter[data-id="facebook"].active,
  .btn_filter[data-id="facebook"]:hover {
      border-color: rgba(24, 119, 242, 0.5);
      box-shadow: 0 0 20px rgba(24, 119, 242, 0.2);
  }
  
  /* YouTube */
  .btn_filter[data-id="youtube"] .icon {
      background: rgba(255, 0, 0, 0.15);
  }
  .btn_filter[data-id="youtube"] .icon i {
      color: #ff0000;
  }
  .btn_filter[data-id="youtube"].active,
  .btn_filter[data-id="youtube"]:hover {
      border-color: rgba(255, 0, 0, 0.5);
      box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
  }
  
  /* Twitter */
  .btn_filter[data-id="twitter"] .icon {
      background: rgba(29, 161, 242, 0.15);
  }
  .btn_filter[data-id="twitter"] .icon i {
      color: #1da1f2;
  }
  .btn_filter[data-id="twitter"].active,
  .btn_filter[data-id="twitter"]:hover {
      border-color: rgba(29, 161, 242, 0.5);
      box-shadow: 0 0 20px rgba(29, 161, 242, 0.2);
  }
  
  /* Spotify */
  .btn_filter[data-id="spotify"] .icon {
      background: rgba(29, 185, 84, 0.15);
  }
  .btn_filter[data-id="spotify"] .icon i {
      color: #1db954;
  }
  .btn_filter[data-id="spotify"].active,
  .btn_filter[data-id="spotify"]:hover {
      border-color: rgba(29, 185, 84, 0.5);
      box-shadow: 0 0 20px rgba(29, 185, 84, 0.2);
  }
  
  /* TikTok */
  .btn_filter[data-id="tiktok"] .icon {
      background: linear-gradient(135deg, rgba(255, 0, 80, 0.15), rgba(0, 242, 234, 0.1));
  }
  .btn_filter[data-id="tiktok"] .icon i {
      background: linear-gradient(135deg, #ff0050, #00f2ea);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }
  .btn_filter[data-id="tiktok"].active,
  .btn_filter[data-id="tiktok"]:hover {
      border-color: rgba(255, 0, 80, 0.5);
      box-shadow: 0 0 20px rgba(255, 0, 80, 0.2);
  }
  
  /* LinkedIn */
  .btn_filter[data-id="linkedin"] .icon {
      background: rgba(0, 119, 181, 0.15);
  }
  .btn_filter[data-id="linkedin"] .icon i {
      color: #0077b5;
  }
  .btn_filter[data-id="linkedin"].active,
  .btn_filter[data-id="linkedin"]:hover {
      border-color: rgba(0, 119, 181, 0.5);
      box-shadow: 0 0 20px rgba(0, 119, 181, 0.2);
  }
  
  /* SoundCloud */
  .btn_filter[data-id="soundcloud"] .icon {
      background: rgba(255, 85, 0, 0.15);
  }
  .btn_filter[data-id="soundcloud"] .icon i {
      color: #ff5500;
  }
  .btn_filter[data-id="soundcloud"].active,
  .btn_filter[data-id="soundcloud"]:hover {
      border-color: rgba(255, 85, 0, 0.5);
      box-shadow: 0 0 20px rgba(255, 85, 0, 0.2);
  }
  
  /* Telegram */
  .btn_filter[data-id="telegram"] .icon {
      background: rgba(0, 136, 204, 0.15);
  }
  .btn_filter[data-id="telegram"] .icon i {
      color: #0088cc;
  }
  .btn_filter[data-id="telegram"].active,
  .btn_filter[data-id="telegram"]:hover {
      border-color: rgba(0, 136, 204, 0.5);
      box-shadow: 0 0 20px rgba(0, 136, 204, 0.2);
  }
  
  /* Website Traffic */
  .btn_filter[data-id="traffic"] .icon {
      background: rgba(139, 92, 246, 0.15);
  }
  .btn_filter[data-id="traffic"] .icon i {
      color: #8b5cf6;
  }
  .btn_filter[data-id="traffic"].active,
  .btn_filter[data-id="traffic"]:hover {
      border-color: rgba(139, 92, 246, 0.5);
      box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
  }
  
  /* Other */
  .btn_filter[data-id="other"] .icon {
      background: rgba(245, 158, 11, 0.15);
  }
  .btn_filter[data-id="other"] .icon i {
      color: #f59e0b;
  }
  .btn_filter[data-id="other"].active,
  .btn_filter[data-id="other"]:hover {
      border-color: rgba(245, 158, 11, 0.5);
      box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
  }
  
  /* Everything */
  .btn_filter[data-id="everything"] .icon {
      background: linear-gradient(135deg, rgba(255, 0, 128, 0.15), rgba(124, 58, 237, 0.15));
  }
  .btn_filter[data-id="everything"] .icon i {
      background: linear-gradient(135deg, #ff0080, #7c3aed);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
  }
  .btn_filter[data-id="everything"].active,
  .btn_filter[data-id="everything"]:hover {
      border-color: rgba(255, 0, 128, 0.5);
      box-shadow: 0 0 20px rgba(255, 0, 128, 0.25);
  }
  
  /* =====================================================
     Responsive
     ===================================================== */
  
  @media (max-width: 1200px) {
      .ser-cat-btn .col-sm-3 {
          flex: 0 0 33.333%;
          max-width: 33.333%;
      }
  }
  
  @media (max-width: 768px) {
      .ser-cat-btn .col-sm-3 {
          flex: 0 0 50%;
          max-width: 50%;
      }
      
      .btn_filter.brand-category {
          padding: 10px 12px;
      }
      
      .btn_filter .icon {
          width: 30px;
          height: 30px;
      }
      
      .btn_filter .icon i {
          font-size: 14px;
      }
      
      .btn_filter .cat-name {
          font-size: 12px;
      }
  }
  
  @media (max-width: 480px) {
      .ser-cat-btn.brand-company {
          padding: 12px;
      }
      
      .ser-cat-btn .col-sm-3 {
          flex: 0 0 50%;
          max-width: 50%;
      }
  }

/* =====================================================
   Add Funds Page
   ===================================================== */

.addfunds-page .addfunds-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.addfunds-page .addfunds-col {
    flex: 1 1 360px;
    min-width: 280px;
}

.addfunds-page .addfunds-card {
    height: 100%;
}

.addfunds-page .addfunds-section {
    margin-top: 20px;
}

.addfunds-page .addfunds-section .alert,
.addfunds-page .addfunds-section .alert-info,
.addfunds-page .addfunds-section .well,
.addfunds-page .addfunds-section .panel,
.addfunds-page .addfunds-section .panel-body {
    background: rgba(20, 15, 30, 0.65) !important;
    color: var(--text-primary) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.addfunds-page .addfunds-section .alert-info {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.addfunds-page .addfunds-pagination {
    margin-top: 10px;
}

.addfunds-page .addfunds-pay-btn {
    padding: 12px 16px;
    font-weight: 600;
}

.addfunds-page .addfunds-faq .panel {
    background: rgba(20, 15, 30, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.addfunds-page .addfunds-faq .panel + .panel {
    margin-top: 12px;
}

.addfunds-page .addfunds-faq .panel-heading {
    background: rgba(16, 12, 24, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.addfunds-page .addfunds-faq .panel-title a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: inherit;
    text-decoration: none;
}

.addfunds-page .addfunds-faq .panel-title i {
    font-size: 12px;
    opacity: 0.8;
}

.rtl-dashboard .addfunds-page .addfunds-faq .panel-title a {
    flex-direction: row-reverse;
}

.rtl-dashboard .addfunds-page .addfunds-faq .panel-title i {
    margin-right: 8px;
    margin-left: 0;
}

.addfunds-page .addfunds-history-table {
    border-collapse: separate;
    border-spacing: 0 12px;
}

.addfunds-page .addfunds-history-table tbody tr {
    background: rgba(17, 12, 24, 0.6);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.addfunds-page .addfunds-history-table tbody td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.addfunds-page .addfunds-history-table tbody td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

@media (max-width: 991px) {
    .addfunds-page .addfunds-grid {
        gap: 16px;
    }
}

/* =====================================================
   Child Panel Page Fixes
   ===================================================== */

.childpanel-steps .summary-card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.childpanel-steps .summary-card-content > span {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

.childpanel-steps .childpanel-step-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
}

.childpanel-steps .childpanel-step-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.childpanel-steps .childpanel-step-subtitle {
    font-size: 13px;
    opacity: 0.8;
}

.childpanel-steps .childpanel-step-badge span {
    font-size: 14px;
    font-weight: 700;
}

.childpanel-faq .panel {
    background: rgba(20, 15, 30, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.childpanel-faq .panel + .panel {
    margin-top: 12px;
}

.childpanel-faq .panel-heading {
    background: rgba(16, 12, 24, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.childpanel-faq .panel-title a {
    display: block;
    color: #f7f5ff;
    text-decoration: none;
}

.childpanel-faq .panel-title a:hover,
.childpanel-faq .panel-title a:focus {
    color: #ffffff;
    text-decoration: none;
}

.childpanel-faq .panel-body {
    background: rgba(14, 10, 20, 0.5);
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rtl-dashboard .childpanel-faq .panel-title a {
    text-align: right;
}

/* ============================================
   70. BLOG PAGE
   ============================================ */
.blog-page {
  padding: var(--spacing-3xl) 0;
}

.blog-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.blog-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.blog-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-intro-card {
  background: rgba(30, 25, 35, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-2xl);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.blog-card {
  background: rgba(30, 25, 35, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.blog-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.03);
}

.blog-card-body {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  flex: 1;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-readmore {
  margin-top: auto;
  align-self: flex-start;
}

.blog-pagination {
  margin-top: var(--spacing-2xl);
  display: flex;
  justify-content: center;
}

.blog-post-card {
  background: rgba(30, 25, 35, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  max-width: 900px;
  margin: 0 auto;
}

.blog-post-media {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--spacing-xl);
}

.blog-post-media img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
}

.blog-post-content {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.blog-post-actions {
  margin-top: var(--spacing-xl);
}

@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card-body {
    padding: var(--spacing-lg);
  }
  
  .blog-post-card {
    padding: var(--spacing-xl);
  }
}

@media (max-width: 576px) {
  .blog-page {
    padding: var(--spacing-2xl) 0;
  }
  
  .blog-title {
    font-size: 1.6rem;
  }
  
  .blog-subtitle {
    font-size: 0.9rem;
  }
}

/* ============================================
   PWA Install Banner Styles
   ============================================ */

.pwa-install-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  padding: 14px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
}

.pwa-install-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.pwa-install-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.pwa-install-icon svg {
  width: 24px;
  height: 24px;
}

.pwa-install-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pwa-install-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pwa-install-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pwa-install-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.pwa-install-btn {
  background: #fff;
  color: #7c3aed;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pwa-install-btn:hover {
  background: #f5f3ff;
  transform: scale(1.02);
}

.pwa-install-btn:active {
  transform: scale(0.98);
}

.pwa-close-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pwa-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.pwa-close-btn svg {
  width: 18px;
  height: 18px;
}

/* Small mobile screens */
@media (max-width: 400px) {
  .pwa-install-banner {
    padding: 10px 12px;
    gap: 8px;
  }
  
  .pwa-install-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
  }
  
  .pwa-install-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .pwa-install-title {
    font-size: 0.85rem;
  }
  
  .pwa-install-subtitle {
    font-size: 0.7rem;
  }
  
  .pwa-install-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  
  .pwa-close-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  
  .pwa-close-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* Safe area insets for notched devices */
@supports (padding-top: env(safe-area-inset-top)) {
  .pwa-install-banner {
    padding-top: calc(12px + env(safe-area-inset-top));
  }
}

/* iOS Installation Guide */
#iosInstallGuide {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ios-guide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.ios-guide-sheet {
  position: relative;
  background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
  border-radius: 20px 20px 0 0;
  padding: 20px;
  width: 100%;
  max-width: 500px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.ios-guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ios-guide-header span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.ios-guide-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ios-guide-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ios-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  color: #fff;
}

.ios-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.ios-step span:last-child {
  font-size: 0.95rem;
  line-height: 1.4;
}

.ios-step svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  color: #8b5cf6;
}

.ios-step strong {
  color: #a78bfa;
}

/* ============================================
   Subscriptions Page - Premium Design
   ============================================ */

/* Header Section */
.subs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.subs-header-info {
  flex: 1;
  min-width: 200px;
}

.subs-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.subs-title i {
  color: var(--accent-primary);
  font-size: 1.5rem;
}

.subs-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Search Box */
.subs-search {
  flex: 0 0 auto;
  width: 100%;
  max-width: 400px;
}

.subs-search-input {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 4px 4px 4px 16px;
  transition: all 0.2s ease;
}

.subs-search-input:focus-within {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.subs-search-input i {
  color: var(--text-muted);
  margin-right: 12px;
}

.subs-search-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  padding: 10px 0;
  outline: none;
}

.subs-search-input input::placeholder {
  color: var(--text-muted);
}

.subs-search-input button {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.subs-search-input button:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

/* Status Filter Tabs */
.subs-filters {
  display: flex;
  gap: 8px;
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
  padding: 8px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.subs-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.subs-filter-btn:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.subs-filter-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.subs-filter-btn.status-active.active {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.3);
}

.subs-filter-btn.status-paused.active {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.3);
}

.subs-filter-btn.status-completed.active {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.3);
}

.subs-filter-btn.status-expired.active {
  background: rgba(156, 163, 175, 0.15);
  color: #9ca3af;
  border-color: rgba(156, 163, 175, 0.3);
}

.subs-filter-btn.status-canceled.active {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

/* Subscriptions List */
.subs-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

/* Subscription Card */
.subs-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.subs-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* Card Header */
.subs-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.08), rgba(139, 92, 246, 0.08));
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 12px;
}

.subs-card-id {
  display: flex;
  align-items: center;
  gap: 12px;
}

.id-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.subs-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

.subs-status.status-0 {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
}

.subs-status.status-1 {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.subs-status.status-2 {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.subs-status.status-3 {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.subs-status.status-4 {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
}

.subs-status.status-5 {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.subs-card-username {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
}

.subs-card-username i {
  color: #e4405f;
  font-size: 1.2rem;
}

/* Card Body - Stats */
.subs-card-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
}

.subs-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.subs-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subs-stat-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.subs-stat-value.service-name {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.subs-stat-value a {
  color: var(--accent-primary);
  text-decoration: none;
}

.subs-stat-value a:hover {
  text-decoration: underline;
}

.stat-separator {
  color: var(--text-muted);
  margin: 0 2px;
}

/* Card Footer */
.subs-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 12px;
}

.subs-dates {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.subs-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.subs-date i {
  font-size: 0.75rem;
}

.subs-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Subscription Buttons */
.subs-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.subs-btn-cancel {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.subs-btn-cancel:hover {
  background: rgba(239, 68, 68, 0.25);
  color: #ef4444;
}

.subs-btn-resume {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.subs-btn-resume:hover {
  background: rgba(16, 185, 129, 0.25);
  color: #10b981;
}

.subs-btn-reorder {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
}

.subs-btn-reorder:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
  color: white;
}

.subs-btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  padding: 12px 24px;
}

.subs-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 140, 0.4);
  color: white;
}

.subs-reason {
  color: var(--text-muted);
  cursor: help;
  font-size: 1.1rem;
}

.subs-reason:hover {
  color: var(--accent-primary);
}

/* Empty State */
.subs-empty {
  text-align: center;
  padding: var(--spacing-3xl) var(--spacing-xl);
  background: var(--bg-card);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-lg);
}

.subs-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 50%;
}

.subs-empty-icon i {
  font-size: 2.5rem;
  color: var(--text-muted);
}

.subs-empty h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.subs-empty p {
  color: var(--text-muted);
  margin: 0 0 var(--spacing-lg) 0;
}

/* Pagination */
.subs-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.subs-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.subs-page-btn:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.subs-page-btn.active {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  border-color: transparent;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .subs-header {
    flex-direction: column;
  }
  
  .subs-search {
    max-width: 100%;
  }
  
  .subs-filters {
    padding: 6px;
    gap: 6px;
  }
  
  .subs-filter-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    flex: 1;
    justify-content: center;
    min-width: calc(33.33% - 6px);
  }
  
  .subs-filter-btn span {
    display: none;
  }
  
  .subs-filter-btn i {
    font-size: 1.1rem;
  }
  
  .subs-card-body {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  
  .subs-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .subs-dates {
    flex-direction: column;
    gap: 8px;
  }
  
  .subs-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .subs-title {
    font-size: 1.4rem;
  }
  
  .subs-title i {
    font-size: 1.2rem;
  }
  
  .subs-search-input {
    padding: 2px 2px 2px 12px;
  }
  
  .subs-search-input input {
    font-size: 0.9rem;
    padding: 8px 0;
  }
  
  .subs-search-input button {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  
  .subs-filter-btn {
    min-width: calc(33.33% - 4px);
    padding: 10px 8px;
  }
  
  .subs-card-header {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .id-label {
    font-size: 1rem;
  }
  
  .subs-card-username {
    font-size: 0.9rem;
  }
  
  .subs-card-body {
    grid-template-columns: 1fr 1fr;
    padding: var(--spacing-md);
  }
  
  .subs-stat-label {
    font-size: 0.7rem;
  }
  
  .subs-stat-value {
    font-size: 0.85rem;
  }
  
  .subs-card-footer {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .subs-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .subs-btn span {
    display: none;
  }
  
  .subs-empty {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  
  .subs-empty-icon {
    width: 60px;
    height: 60px;
  }
  
  .subs-empty-icon i {
    font-size: 1.8rem;
  }
}

/* ============================================
   Orders Page - Premium Design
   ============================================ */

/* Header Section */
.orders-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.orders-header-info {
  flex: 1;
  min-width: 200px;
}

.orders-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.orders-title i {
  color: var(--accent-secondary);
  font-size: 1.5rem;
}

.orders-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Search Box */
.orders-search {
  flex: 0 0 auto;
  width: 100%;
  max-width: 400px;
}

.orders-search-input {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 4px 4px 4px 16px;
  transition: all 0.2s ease;
}

.orders-search-input:focus-within {
  border-color: var(--accent-secondary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.orders-search-input i {
  color: var(--text-muted);
  margin-right: 12px;
}

.orders-search-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  padding: 10px 0;
  outline: none;
}

.orders-search-input input::placeholder {
  color: var(--text-muted);
}

.orders-search-input button {
  background: linear-gradient(135deg, var(--accent-secondary), #6d28d9);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.orders-search-input button:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Status Filter Tabs */
.orders-filters {
  display: flex;
  gap: 8px;
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
  padding: 8px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.orders-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.orders-filter-btn:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.orders-filter-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.orders-filter-btn.status-pending.active {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.3);
}

.orders-filter-btn.status-processing.active {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.3);
}

.orders-filter-btn.status-inprogress.active {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.3);
}

.orders-filter-btn.status-completed.active {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.3);
}

.orders-filter-btn.status-partial.active {
  background: rgba(139, 92, 246, 0.15);
  color: #8b5cf6;
  border-color: rgba(139, 92, 246, 0.3);
}

.orders-filter-btn.status-canceled.active {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

/* Orders List */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

/* Order Card */
.order-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.order-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* Card Header */
.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.08));
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 12px;
}

.order-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.order-id {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.order-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.order-date i {
  font-size: 0.8rem;
}

/* Order Status Badges */
.order-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

.order-status.status-default {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
}

.order-status.status-pending {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.order-status.status-processing {
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
}

.order-status.status-inprogress {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.order-status.status-completed {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.order-status.status-partial {
  background: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
}

.order-status.status-canceled {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* Card Body */
.order-card-body {
  padding: var(--spacing-lg);
}

/* Link Section */
.order-link-section {
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--border-color);
}

.order-link-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.order-link-value {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.order-link-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  word-break: break-all;
  flex: 1;
}

.order-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(139, 92, 246, 0.15);
  color: #8b5cf6;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.order-details-btn:hover {
  background: rgba(139, 92, 246, 0.25);
  color: #8b5cf6;
  transform: scale(1.1);
}

/* Stats Grid */
.order-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--spacing-md);
}

.order-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-stat-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.order-stat-value.order-service-name {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.order-stat-value.order-charge {
  color: #22c55e;
  font-weight: 600;
}

/* Card Footer */
.order-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 12px;
}

.order-cancel-reason {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #ef4444;
  flex: 1;
}

.order-cancel-reason i {
  margin-top: 2px;
}

.order-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.order-refilling,
.order-cancel-pending {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Order Buttons */
.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.order-btn-refill {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.order-btn-refill:hover {
  background: rgba(34, 197, 94, 0.25);
  color: #22c55e;
}

.order-btn-refill.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.order-btn-cancel {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.order-btn-cancel:hover {
  background: rgba(239, 68, 68, 0.25);
  color: #ef4444;
}

.order-btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  padding: 12px 24px;
}

.order-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 140, 0.4);
  color: white;
}

/* Empty State */
.orders-empty {
  text-align: center;
  padding: var(--spacing-3xl) var(--spacing-xl);
  background: var(--bg-card);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-lg);
}

.orders-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 50%;
}

.orders-empty-icon i {
  font-size: 2.5rem;
  color: var(--text-muted);
}

.orders-empty h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.orders-empty p {
  color: var(--text-muted);
  margin: 0 0 var(--spacing-lg) 0;
}

/* Pagination */
.orders-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.orders-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.orders-page-btn:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.orders-page-btn.active {
  background: linear-gradient(135deg, var(--accent-secondary), #6d28d9);
  color: white;
  border-color: transparent;
}

/* Order Modal Styling */
.order-modal .modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.order-modal .modal-header {
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-lg);
}

.order-modal .modal-title {
  color: var(--text-primary);
  font-weight: 600;
}

.order-modal .modal-body {
  padding: var(--spacing-lg);
}

.order-modal .close {
  color: var(--text-muted);
  opacity: 1;
}

.order-modal .close:hover {
  color: var(--text-primary);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .orders-header {
    flex-direction: column;
  }
  
  .orders-search {
    max-width: 100%;
  }
  
  .orders-filters {
    padding: 6px;
    gap: 6px;
  }
  
  .orders-filter-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    flex: 1;
    justify-content: center;
    min-width: calc(25% - 6px);
  }
  
  .orders-filter-btn span {
    display: none;
  }
  
  .orders-filter-btn i {
    font-size: 1.1rem;
  }
  
  .order-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .order-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .order-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .order-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .orders-title {
    font-size: 1.4rem;
  }
  
  .orders-title i {
    font-size: 1.2rem;
  }
  
  .orders-search-input {
    padding: 2px 2px 2px 12px;
  }
  
  .orders-search-input input {
    font-size: 0.9rem;
    padding: 8px 0;
  }
  
  .orders-search-input button {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  
  .orders-filter-btn {
    min-width: calc(25% - 4px);
    padding: 10px 6px;
  }
  
  .order-card-header {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .order-id {
    font-size: 1rem;
  }
  
  .order-card-body {
    padding: var(--spacing-md);
  }
  
  .order-stats-grid {
    gap: var(--spacing-sm);
  }
  
  .order-stat-label {
    font-size: 0.7rem;
  }
  
  .order-stat-value {
    font-size: 0.85rem;
  }
  
  .order-card-footer {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .order-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .order-btn span {
    display: none;
  }
  
  .orders-empty {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  
  .orders-empty-icon {
    width: 60px;
    height: 60px;
  }
  
  .orders-empty-icon i {
    font-size: 1.8rem;
  }
}

/* ============================================
   Affiliates Page - Premium Design
   ============================================ */

/* Header Section */
.aff-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.aff-header-info {
  flex: 1;
  min-width: 200px;
}

.aff-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.aff-title i {
  color: #22c55e;
  font-size: 1.5rem;
}

.aff-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.aff-header-action {
  flex-shrink: 0;
}

/* Buttons */
.aff-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.aff-btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.aff-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
  color: white;
}

/* Referral Link Card */
.aff-link-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--spacing-xl);
}

.aff-link-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: var(--spacing-md) var(--spacing-lg);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  color: var(--text-primary);
}

.aff-link-header i {
  color: #22c55e;
}

.aff-link-body {
  padding: var(--spacing-lg);
}

.aff-link-input {
  display: flex;
  gap: 10px;
  margin-bottom: var(--spacing-lg);
}

.aff-link-input input {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: monospace;
}

.aff-link-input input:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.aff-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  border-radius: var(--radius-md);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.aff-copy-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.aff-copy-btn.copied {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.aff-link-info {
  display: flex;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.aff-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.aff-info-item i {
  color: #22c55e;
  font-size: 1.1rem;
}

.aff-info-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.aff-info-value {
  color: var(--text-primary);
  font-weight: 600;
  margin-left: 8px;
}

/* Statistics Grid */
.aff-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.aff-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  transition: all 0.3s ease;
}

.aff-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.aff-stat-card.aff-stat-earnings {
  border-color: rgba(34, 197, 94, 0.3);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), transparent);
}

.aff-stat-card.aff-stat-available {
  border-color: rgba(16, 185, 129, 0.3);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), transparent);
}

.aff-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.aff-stat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aff-stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
}

.aff-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Info Card */
.aff-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--spacing-xl);
}

.aff-info-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(59, 130, 246, 0.08);
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  color: var(--text-primary);
}

.aff-info-header i {
  color: #3b82f6;
}

.aff-info-body {
  padding: var(--spacing-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

.aff-info-body p {
  margin-bottom: var(--spacing-md);
}

.aff-info-body ul,
.aff-info-body ol {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.aff-info-body li {
  margin-bottom: var(--spacing-sm);
}

/* Payments Card */
.aff-payments-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--spacing-xl);
}

.aff-payments-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(139, 92, 246, 0.08);
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  color: var(--text-primary);
}

.aff-payments-header i {
  color: #8b5cf6;
}

.aff-payments-list {
  padding: var(--spacing-sm);
}

.aff-payment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}

.aff-payment-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.aff-payment-item:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.aff-payment-info {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}

.aff-payment-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.aff-payment-date i {
  color: var(--text-muted);
}

.aff-payment-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: #22c55e;
}

.aff-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

.aff-status-badge.status-paid {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.aff-status-badge.status-pending {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.aff-status-badge.status-default {
  background: rgba(156, 163, 175, 0.15);
  color: #9ca3af;
}

/* Pagination */
.aff-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.aff-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.aff-page-btn:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.15);
}

.aff-page-btn.active {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border-color: transparent;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .aff-header {
    flex-direction: column;
  }
  
  .aff-header-action {
    width: 100%;
  }
  
  .aff-btn-primary {
    width: 100%;
    justify-content: center;
  }
  
  .aff-link-input {
    flex-direction: column;
  }
  
  .aff-copy-btn {
    width: 100%;
    justify-content: center;
  }
  
  .aff-link-info {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .aff-info-item {
    justify-content: space-between;
  }
  
  .aff-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .aff-payment-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .aff-title {
    font-size: 1.4rem;
  }
  
  .aff-title i {
    font-size: 1.2rem;
  }
  
  .aff-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .aff-stat-card {
    padding: var(--spacing-md);
  }
  
  .aff-stat-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .aff-stat-value {
    font-size: 1.2rem;
  }
  
  .aff-link-body,
  .aff-link-header,
  .aff-info-body,
  .aff-info-header,
  .aff-payments-header {
    padding: var(--spacing-md);
  }
  
  .aff-link-input input {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
  
  .aff-copy-btn {
    padding: 12px 16px;
  }
  
  .aff-payment-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: var(--spacing-md);
  }
  
  .aff-payment-info {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================
   How It Works Page - Premium Design
   ============================================ */

/* Hero Section */
.hiw-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

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

.hiw-hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(233, 30, 140, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
}

.hiw-hero-particles {
  position: absolute;
  inset: 0;
}

.hiw-hero-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: floatParticle 15s infinite ease-in-out;
}

.hiw-hero-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hiw-hero-particles span:nth-child(2) { top: 60%; left: 25%; animation-delay: 2s; }
.hiw-hero-particles span:nth-child(3) { top: 30%; left: 70%; animation-delay: 4s; }
.hiw-hero-particles span:nth-child(4) { top: 70%; left: 85%; animation-delay: 6s; }
.hiw-hero-particles span:nth-child(5) { top: 50%; left: 50%; animation-delay: 8s; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

.hiw-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hiw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(233, 30, 140, 0.15);
  border: 1px solid rgba(233, 30, 140, 0.3);
  border-radius: var(--radius-pill);
  color: var(--accent-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
}

.hiw-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 var(--spacing-lg) 0;
  line-height: 1.2;
}

.hiw-hero-title .highlight {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hiw-hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 var(--spacing-xl) 0;
}

.hiw-hero-features {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.hiw-hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.hiw-hero-feature i {
  color: var(--accent-primary);
}

/* Section Headers */
.hiw-section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.hiw-section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.15), rgba(139, 92, 246, 0.15));
  border-radius: var(--radius-pill);
  color: var(--accent-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.hiw-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--spacing-sm) 0;
}

.hiw-section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0;
}

/* Steps Section */
.hiw-steps {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(180deg, transparent, rgba(233, 30, 140, 0.03), transparent);
}

.hiw-steps-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.hiw-steps-timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0.3;
}

.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s ease;
}

.hiw-step:hover {
  transform: translateX(10px);
  border-color: rgba(233, 30, 140, 0.3);
  box-shadow: 0 10px 40px rgba(233, 30, 140, 0.1);
}

.hiw-step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.15), rgba(139, 92, 246, 0.15));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-primary);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hiw-step-content {
  flex: 1;
}

.hiw-step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.hiw-step-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.hiw-step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* Platforms Section */
.hiw-platforms {
  padding: var(--spacing-3xl) 0;
}

.hiw-platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--spacing-md);
  max-width: 900px;
  margin: 0 auto;
}

.hiw-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: var(--spacing-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: default;
}

.hiw-platform-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hiw-platform-card:hover .hiw-platform-icon {
  background: var(--accent);
  color: white;
}

.hiw-platform-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.hiw-platform-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Features Section */
.hiw-features {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.03), transparent);
}

.hiw-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.hiw-feature-card {
  padding: var(--spacing-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.hiw-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

.hiw-feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(233, 30, 140, 0.15));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #8b5cf6;
}

.hiw-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px 0;
}

.hiw-feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* FAQ Section */
.hiw-faq {
  padding: var(--spacing-3xl) 0;
}

.hiw-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.hiw-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.hiw-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.hiw-faq-item.active {
  border-color: var(--accent-primary);
  box-shadow: 0 5px 20px rgba(233, 30, 140, 0.1);
}

.hiw-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg);
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hiw-faq-question:hover {
  color: var(--accent-primary);
}

.hiw-faq-question i {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.hiw-faq-item.active .hiw-faq-question i {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

.hiw-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.hiw-faq-item.active .hiw-faq-answer {
  max-height: 200px;
}

.hiw-faq-answer p {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* CTA Section */
.hiw-cta {
  padding: var(--spacing-3xl) 0;
}

.hiw-cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl);
  text-align: center;
  overflow: hidden;
}

.hiw-cta-content {
  position: relative;
  z-index: 1;
}

.hiw-cta-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--spacing-sm) 0;
}

.hiw-cta-card p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0 0 var(--spacing-xl) 0;
}

.hiw-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border: none;
  border-radius: var(--radius-pill);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.3);
}

.hiw-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(233, 30, 140, 0.4);
  color: white;
}

.hiw-cta-btn i {
  transition: transform 0.3s ease;
}

.hiw-cta-btn:hover i {
  transform: translateX(5px);
}

.hiw-cta-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hiw-cta-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(233, 30, 140, 0.2);
}

.hiw-cta-circle:first-child {
  width: 300px;
  height: 300px;
  right: -100px;
  top: -100px;
}

.hiw-cta-circle:last-child {
  width: 200px;
  height: 200px;
  left: -50px;
  bottom: -50px;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .hiw-hero {
    padding: 80px 0 60px;
    min-height: auto;
  }
  
  .hiw-hero-title {
    font-size: 2.2rem;
  }
  
  .hiw-hero-desc {
    font-size: 1rem;
  }
  
  .hiw-hero-features {
    gap: var(--spacing-sm);
  }
  
  .hiw-hero-feature {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  
  .hiw-section-title {
    font-size: 1.8rem;
  }
  
  .hiw-steps-timeline::before {
    left: 20px;
  }
  
  .hiw-step {
    flex-direction: column;
    text-align: center;
  }
  
  .hiw-step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  
  .hiw-step-number {
    position: static;
    transform: none;
    margin-top: var(--spacing-sm);
  }
  
  .hiw-platforms-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hiw-features-grid {
    grid-template-columns: 1fr;
  }
  
  .hiw-cta-card {
    padding: var(--spacing-2xl);
  }
  
  .hiw-cta-card h2 {
    font-size: 1.6rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .hiw-hero {
    padding: 60px 0 40px;
  }
  
  .hiw-hero-title {
    font-size: 1.8rem;
  }
  
  .hiw-hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
  
  .hiw-hero-features {
    flex-direction: column;
    align-items: center;
  }
  
  .hiw-section-title {
    font-size: 1.5rem;
  }
  
  .hiw-section-subtitle {
    font-size: 0.95rem;
  }
  
  .hiw-steps,
  .hiw-platforms,
  .hiw-features,
  .hiw-faq,
  .hiw-cta {
    padding: var(--spacing-2xl) 0;
  }
  
  .hiw-step {
    padding: var(--spacing-md);
  }
  
  .hiw-step-content h3 {
    font-size: 1.1rem;
  }
  
  .hiw-platforms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  
  .hiw-platform-card {
    padding: var(--spacing-md);
  }
  
  .hiw-platform-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  
  .hiw-feature-card {
    padding: var(--spacing-lg);
  }
  
  .hiw-feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
  
  .hiw-faq-question {
    padding: var(--spacing-md);
    font-size: 0.95rem;
  }
  
  .hiw-faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    font-size: 0.9rem;
  }
  
  .hiw-cta-card {
    padding: var(--spacing-xl);
  }
  
  .hiw-cta-card h2 {
    font-size: 1.4rem;
  }
  
  .hiw-cta-card p {
    font-size: 0.95rem;
  }
  
  .hiw-cta-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* ============================================
   FAQ Page - Premium Design
   ============================================ */

.faq-page {
  min-height: 100vh;
}

/* Hero Section */
.faq-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

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

.faq-hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
}

.faq-hero-shapes {
  position: absolute;
  inset: 0;
}

.faq-hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  animation: floatShape 20s infinite ease-in-out;
}

.faq-hero-shapes .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.faq-hero-shapes .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 10%;
  animation-delay: 5s;
}

.faq-hero-shapes .shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 20%;
  animation-delay: 10s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.1); }
}

.faq-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.faq-hero-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--spacing-lg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #3b82f6;
}

.faq-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 var(--spacing-md) 0;
  line-height: 1.2;
}

.faq-hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin: 0 0 var(--spacing-xl) 0;
}

/* Quick Links */
.faq-quick-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.faq-quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-quick-link:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  color: #3b82f6;
  transform: translateY(-2px);
}

.faq-quick-link i {
  font-size: 1rem;
}

/* Main Content */
.faq-main {
  padding: var(--spacing-3xl) 0;
}

.faq-layout {
  max-width: 900px;
  margin: 0 auto;
}

/* Admin Content Card */
.faq-admin-content {
  margin-bottom: var(--spacing-2xl);
}

.faq-content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-content-body {
  padding: var(--spacing-xl);
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-content-body h1,
.faq-content-body h2,
.faq-content-body h3,
.faq-content-body h4 {
  color: var(--text-primary);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.faq-content-body h1:first-child,
.faq-content-body h2:first-child,
.faq-content-body h3:first-child {
  margin-top: 0;
}

.faq-content-body p {
  margin-bottom: var(--spacing-md);
}

.faq-content-body ul,
.faq-content-body ol {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.faq-content-body li {
  margin-bottom: var(--spacing-sm);
}

.faq-content-body a {
  color: #3b82f6;
  text-decoration: none;
}

.faq-content-body a:hover {
  text-decoration: underline;
}

/* FAQ Sections */
.faq-sections {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
}

.faq-section {
  scroll-margin-top: 100px;
}

.faq-section-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.faq-section-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #3b82f6;
}

.faq-section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

/* FAQ Page Accordion */
.faq-page .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.faq-page .faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-page .faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-page .faq-item.active {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 5px 25px rgba(59, 130, 246, 0.1);
}

.faq-page .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-lg);
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-family);
}

.faq-page .faq-question:hover {
  color: #3b82f6;
}

.faq-page .faq-question i {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 10px;
}

.faq-page .faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: #3b82f6;
}

.faq-page .faq-answer {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 var(--spacing-lg);
}

.faq-page .faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: var(--spacing-lg);
}

.faq-page .faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* Contact Card */
.faq-contact-card {
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-2xl);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  text-align: center;
}

.faq-contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #3b82f6;
}

.faq-contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--spacing-sm) 0;
}

.faq-contact-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 0 var(--spacing-lg) 0;
}

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border: none;
  border-radius: var(--radius-pill);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.faq-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  color: white;
}

/* Why Choose Section */
.faq-why-choose {
  margin-top: var(--spacing-2xl);
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(16, 185, 129, 0.08));
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-xl);
}

.faq-why-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.faq-why-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.faq-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
}

.faq-why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.faq-why-item:hover {
  background: rgba(34, 197, 94, 0.1);
  transform: translateX(5px);
}

.faq-why-item i {
  font-size: 1.3rem;
  color: #22c55e;
  width: 24px;
  text-align: center;
}

.faq-why-item span {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .faq-hero {
    padding: 80px 0 60px;
  }
  
  .faq-hero-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .faq-hero-title {
    font-size: 2rem;
  }
  
  .faq-hero-desc {
    font-size: 1rem;
  }
  
  .faq-quick-links {
    gap: 8px;
    justify-content: center;
  }
  
  .faq-quick-link {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  
  .faq-quick-link span {
    display: none;
  }
  
  .faq-quick-link i {
    font-size: 1.1rem;
  }
  
  .faq-section-header h2 {
    font-size: 1.3rem;
  }
  
  .faq-main {
    padding: var(--spacing-2xl) 0;
  }
  
  .faq-why-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .faq-hero {
    padding: 60px 0 40px;
  }
  
  .faq-hero-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .faq-hero-title {
    font-size: 1.6rem;
  }
  
  .faq-quick-link {
    padding: 10px 14px;
  }
  
  .faq-content-body {
    padding: var(--spacing-lg);
  }
  
  .faq-section-header {
    gap: var(--spacing-sm);
  }
  
  .faq-section-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  
  .faq-section-header h2 {
    font-size: 1.15rem;
  }
  
  .faq-page .faq-question {
    padding: var(--spacing-md);
    font-size: 0.95rem;
  }
  
  .faq-page .faq-answer {
    padding: 0 var(--spacing-md);
  }
  
  .faq-page .faq-item.active .faq-answer {
    padding-bottom: var(--spacing-md);
  }
  
  .faq-page .faq-answer p {
    font-size: 0.9rem;
  }
  
  .faq-contact-card {
    padding: var(--spacing-xl);
  }
  
  .faq-contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .faq-contact-card h3 {
    font-size: 1.25rem;
  }
  
  .faq-contact-card p {
    font-size: 0.9rem;
  }
  
  .faq-contact-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}


/* ═══════════════════════════════════════════════════════════════
   Language Switcher
   ═══════════════════════════════════════════════════════════════ */

.lang-switcher {
  position: relative;
  display: inline-block;
  float: right;
  margin: 8px 10px 8px 0;
  z-index: 1200;
}

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 10px;
  color: #a78bfa;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1.4;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

.lang-switcher-btn:hover,
.lang-switcher-btn:focus {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
  outline: none;
}

.lang-switcher.open .lang-switcher-btn {
  background: rgba(139, 92, 246, 0.15);
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

.lang-globe {
  flex-shrink: 0;
  opacity: 0.8;
}

.lang-current {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lang-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-switcher-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  max-height: 300px;
  overflow-y: auto;
  background: #1a1a2e;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.96);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1300;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
}

.lang-switcher.open .lang-switcher-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Scrollbar for dropdown */
.lang-switcher-dropdown::-webkit-scrollbar {
  width: 4px;
}

.lang-switcher-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.lang-switcher-dropdown::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: 4px;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  color: #d1d5db;
  text-decoration: none !important;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.15s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.lang-option:hover,
.lang-option:focus {
  background: rgba(139, 92, 246, 0.12);
  color: #fff;
  text-decoration: none !important;
}

.lang-option.active {
  background: rgba(139, 92, 246, 0.18);
  color: #a78bfa;
  font-weight: 600;
}

.lang-option.active:hover {
  background: rgba(139, 92, 246, 0.25);
}

.lang-option-name {
  flex: 1;
}

.lang-check {
  flex-shrink: 0;
  color: #8b5cf6;
}

/* RTL Support */
.rtl-navbar .lang-switcher {
  float: left;
  margin: 8px 0 8px 10px;
}

.rtl-navbar .lang-switcher-dropdown {
  right: auto;
  left: 0;
}

.rtl-navbar .lang-option {
  flex-direction: row-reverse;
}

.rtl-navbar .lang-switcher-btn {
  flex-direction: row-reverse;
}

/* ─── Mobile Responsive ─── */
@media (max-width: 767px) {
  .lang-switcher {
    margin: 9px 8px 9px 0;
  }

  .rtl-navbar .lang-switcher {
    margin: 9px 0 9px 8px;
  }

  .lang-switcher-btn {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 8px;
    gap: 5px;
  }

  .lang-switcher-dropdown {
    min-width: 170px;
    right: 0;
    border-radius: 12px;
  }

  .rtl-navbar .lang-switcher-dropdown {
    right: auto;
    left: 0;
  }

  .lang-option {
    padding: 13px 14px;
    font-size: 15px;
    border-radius: 8px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .lang-current {
    max-width: 60px;
  }

  .lang-switcher-btn {
    padding: 7px 10px;
    gap: 4px;
  }
}