/* ============================================
   AURALOGIC - LUMINOUS STRUCTURE DESIGN SYSTEM
   Modern Agency Website - Dark Theme
   ============================================ */

/* ============================================
   1. CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
  /* Color Palette - Maydiv Inspired */
  --bg-void: #0A0E27;
  --bg-void-light: #131729;
  --bg-card: #1A1F3A;
  --accent-primary: #6C5CE7;
  --accent-primary-dark: #5B4BC4;
  --accent-secondary: #00D9FF;
  --accent-secondary-dark: #00B8D4;
  --accent-purple: #A855F7;
  --accent-pink: #EC4899;
  --accent-orange: #F97316;
  --text-white: #FFFFFF;
  --text-grey: #A0AEC0;
  --text-grey-dark: #718096;
  
  /* Glassmorphism */
  --glass-bg: rgba(26, 31, 58, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #6C5CE7 0%, #A855F7 50%, #EC4899 100%);
  --gradient-secondary: linear-gradient(135deg, #00D9FF 0%, #6C5CE7 100%);
  --gradient-accent: linear-gradient(135deg, #F97316 0%, #EC4899 100%);
  --gradient-glow: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.4), transparent 70%);
  --gradient-mesh: radial-gradient(at 40% 20%, rgba(108, 92, 231, 0.3) 0px, transparent 50%),
                   radial-gradient(at 80% 0%, rgba(0, 217, 255, 0.2) 0px, transparent 50%),
                   radial-gradient(at 0% 50%, rgba(168, 85, 247, 0.2) 0px, transparent 50%),
                   radial-gradient(at 80% 50%, rgba(236, 72, 153, 0.2) 0px, transparent 50%),
                   radial-gradient(at 0% 100%, rgba(249, 115, 22, 0.2) 0px, transparent 50%);
  
  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow-primary: 0 0 30px rgba(108, 92, 231, 0.6);
  --shadow-glow-secondary: 0 0 30px rgba(0, 217, 255, 0.6);
  --shadow-glow-purple: 0 0 30px rgba(168, 85, 247, 0.6);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-tooltip: 1050;
}

/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  background-image: var(--gradient-mesh);
  color: var(--text-grey);
  line-height: 1.6;
  /*overflow-x: hidden;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-mesh);
  opacity: 0.5;
  z-index: -1;
  animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

p {
  margin-bottom: var(--spacing-sm);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

a {
  color: var(--accent-indigo);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--accent-cyan);
}

/* ============================================
   4. UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-sm {
  padding: var(--spacing-lg) 0;
}

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

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: var(--shadow-glow-primary);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(108, 92, 231, 0.8), 0 0 60px rgba(168, 85, 247, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--accent-primary);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-outline:hover::before {
  width: 300px;
  height: 300px;
}

.btn-outline:hover {
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-glow-primary);
  transform: translateY(-3px);
}

.btn-outline span {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  background: var(--glass-bg);
  color: var(--text-white);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-cyan);
}

/* ============================================
   6. GLASSMORPHISM CARDS
   ============================================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.1), transparent);
  transition: left 0.6s;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  background: rgba(26, 31, 58, 0.8);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow-primary), 0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(-8px) scale(1.02);
}

/* ============================================
   7. NAVIGATION - ENHANCED TRENDY DESIGN
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  background: rgba(10, 14, 39, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(108, 92, 231, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(108, 92, 231, 0.05) 0%, 
    rgba(0, 217, 255, 0.05) 50%, 
    rgba(236, 72, 153, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.navbar.scrolled {
  background: rgba(10, 14, 39, 0.95);
  border-bottom-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 8px 32px rgba(108, 92, 231, 0.15), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled::before {
  opacity: 1;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem var(--spacing-sm);
  position: relative;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
  z-index: 2;
}

.navbar-brand::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: var(--gradient-primary);
  border-radius: 12px;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s;
  z-index: -1;
}

.navbar-brand:hover::before {
  opacity: 0.3;
}

.navbar-logo {
  height: 50px;
  width: auto;
  max-width: 150px;
  border-radius: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 10px rgba(108, 92, 231, 0.3));
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(108, 92, 231, 0.6));
}

.navbar-brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.navbar-brand-text span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.navbar-menu li {
  position: relative;
}

.navbar-menu a {
  color: var(--text-grey);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: block;
  letter-spacing: 0.02em;
}

.navbar-menu a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-bg);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-menu a:hover {
  color: var(--text-white);
  transform: translateY(-2px);
}

.navbar-menu a:hover::before {
  opacity: 1;
}

.navbar-menu a:hover::after {
  width: 60%;
}

.navbar-menu a.active {
  color: var(--text-white);
  background: var(--glass-bg);
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.2);
}

.navbar-menu a.active::after {
  width: 60%;
}

/* CTA Button in Navbar */
.navbar-menu .btn-primary {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  margin-left: 0.5rem;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.navbar-menu .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(108, 92, 231, 0.6);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

.navbar-toggle:hover {
  background: rgba(108, 92, 231, 0.2);
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(108, 92, 231, 0.3);
}

.navbar-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-white);
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 5px rgba(108, 92, 231, 0.5);
}

.navbar-toggle.active span {
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.8);
}

/* ============================================
   8. HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: var(--bg-void);
  overflow: hidden;
}

/* Default hero background with abstract tech pattern */
.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(108, 92, 231, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(0, 217, 255, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(168, 85, 247, 0.35) 0%, transparent 40%);
  animation: heroGlow 15s ease-in-out infinite;
  z-index: 2;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(5%, -5%) rotate(120deg); }
  66% { transform: translate(-5%, 5%) rotate(240deg); }
}

/* Page-specific hero backgrounds */
.hero-home .hero-background::after {
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80');
}

.hero-about .hero-background::after {
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80');
}

.hero-services .hero-background::after {
  background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1920&q=80');
}

.hero-projects .hero-background::after {
  background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1920&q=80');
}

.hero-blog .hero-background::after {
  background-image: url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?w=1920&q=80');
}

.hero-contact .hero-background::after {
  background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920&q=80');
}

.hero-terms .hero-background::after,
.hero-privacy .hero-background::after {
  background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&q=80');
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-title {
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-grey);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* ============================================
   SIGNAL-STYLE HERO SECTION
   ============================================ */
.hero-signal {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero-split-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 3;
}

/* Left Side - Content */
.hero-split-left {
  padding-right: var(--spacing-lg);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(108, 92, 231, 0.1);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--accent-cyan);
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.6s ease;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-title-large {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  font-weight: 800;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.text-gradient-animated {
  background: linear-gradient(135deg, #6C5CE7 0%, #A855F7 50%, #EC4899 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-grey);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta-group {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-large i {
  transition: transform var(--transition-base);
}

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

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease 0.8s backwards;
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-grey-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* Right Side - Visual */
.hero-split-right {
  position: relative;
  height: 600px;
}

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  animation: cardFloat 6s ease-in-out infinite;
  transition: all var(--transition-base);
}

.floating-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow-indigo);
}

.card-1 {
  top: 5%;
  left: 10%;
  animation-delay: 0s;
  z-index: 3;
}

.card-2 {
  top: 45%;
  right: 5%;
  animation-delay: 2s;
  z-index: 2;
}

.card-3 {
  bottom: 15%;
  left: 5%;
  animation-delay: 4s;
  z-index: 3;
}

.card-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.card-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--text-white);
}

.card-content p {
  font-size: 0.875rem;
  color: var(--text-grey);
  margin: 0;
}

/* Central Graphic */
.hero-central-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  z-index: 1;
}

.graphic-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: rotate 20s linear infinite;
}

.circle-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(108, 92, 231, 0.3);
  animation-duration: 20s;
}

.circle-2 {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-color: rgba(0, 217, 255, 0.3);
  animation-duration: 15s;
  animation-direction: reverse;
}

.circle-3 {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-color: rgba(236, 72, 153, 0.3);
  animation-duration: 10s;
}

.graphic-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  box-shadow: 0 0 60px rgba(108, 92, 231, 0.6);
  animation: pulse 3s ease-in-out infinite;
}

/* Decorative Elements */
.hero-decoration {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.4) 0%, transparent 70%);
  filter: blur(40px);
  animation: float 8s ease-in-out infinite;
}

.deco-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.deco-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 30%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.4) 0%, transparent 70%);
  animation-delay: 2s;
}

.deco-3 {
  width: 180px;
  height: 180px;
  top: 40%;
  left: 5%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, transparent 70%);
  animation-delay: 4s;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-grey);
  font-size: 0.875rem;
  z-index: 3;
  animation: fadeInUp 1s ease 1s backwards;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--accent-primary);
  border-radius: 12px;
  position: relative;
  margin-bottom: 0.5rem;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% {
    top: 8px;
    opacity: 1;
  }
  50% {
    top: 20px;
    opacity: 0.5;
  }
}

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

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ============================================
   9. MARQUEE
   ============================================ */
.marquee {
  overflow: hidden;
  background: var(--bg-void-light);
  padding: var(--spacing-md) 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: var(--spacing-lg);
}

.marquee-item {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-grey-dark);
  transition: color var(--transition-base);
  white-space: nowrap;
}

.marquee-item:hover {
  color: var(--accent-indigo);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   10. STATS/IMPACT SECTION
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-md);
}

.stat-number {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 1.125rem;
  color: var(--text-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   11. BENTO GRID (Services)
   ============================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.bento-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.bento-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}

.bento-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: scale(0);
}

.bento-item:hover::before {
  opacity: 0.15;
}

.bento-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.bento-item:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow-primary), 0 10px 40px rgba(108, 92, 231, 0.3);
  transform: translateY(-10px) scale(1.03);
}

.bento-item-content {
  position: relative;
  z-index: 1;
}

.bento-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  display: inline-block;
}

.bento-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.bento-description {
  color: var(--text-grey);
  margin-bottom: var(--spacing-sm);
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-secondary);
  font-weight: 600;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.bento-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-secondary);
  transition: width 0.4s;
}

.bento-item:hover .bento-link {
  opacity: 1;
  transform: translateX(0);
}

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

/* ============================================
   12. PROJECT GALLERY
   ============================================ */
.project-filters {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-grey);
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-heading);
  font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: var(--text-white);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow-primary);
  transform: translateY(-2px);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--spacing-md);
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s;
}

.project-card:hover::before {
  opacity: 0.2;
}

.project-card:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow-primary);
  transform: translateY(-5px);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-image {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 12, 21, 0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--spacing-md);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.project-category {
  color: var(--accent-cyan);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   13. BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.blog-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.blog-card:hover::before {
  opacity: 0.05;
}

.blog-card:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow-primary), 0 10px 30px rgba(108, 92, 231, 0.2);
  transform: translateY(-8px) scale(1.02);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: var(--spacing-md);
}

.blog-meta {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: 0.875rem;
}

.blog-category {
  color: var(--accent-secondary);
  font-weight: 600;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-read-time {
  color: var(--text-grey-dark);
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.blog-excerpt {
  color: var(--text-grey);
  margin-bottom: var(--spacing-sm);
}

.blog-link {
  color: var(--accent-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  transition: all 0.3s;
}

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

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

.blog-link:hover {
  color: var(--accent-purple);
  transform: translateX(5px);
}

/* ============================================
   14. CONTACT FORM
   ============================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.contact-icon {
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.25rem;
}

.contact-details h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--text-grey);
  margin: 0;
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-white);
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow-primary), 0 0 0 3px rgba(108, 92, 231, 0.1);
  transform: translateY(-2px);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-grey-dark);
}

/* ============================================
   15. FOOTER
   ============================================ */
.footer {
  background: var(--bg-void-light);
  border-top: 1px solid var(--glass-border);
  padding: var(--spacing-lg) 0 var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-grey);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-white);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--gradient-primary);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow-primary);
  transform: translateY(-5px) rotate(5deg);
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-sm);
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-family: var(--font-body);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--glass-border);
  color: var(--text-grey-dark);
}

/* ============================================
   16. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

@keyframes borderGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(108, 92, 231, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.8), 0 0 30px rgba(168, 85, 247, 0.6);
  }
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================
   17. RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1023px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }
  
  .contact-split {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
  }
  
  .navbar-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(11, 12, 21, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--spacing-lg);
    transition: left var(--transition-base);
  }
  
  .navbar-menu.active {
    left: 0;
  }
  
  .navbar-toggle {
    display: flex;
  }
  
  .navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .navbar-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .project-filters {
    flex-direction: column;
  }
  
  .filter-btn {
    width: 100%;
  }
  
  /* Signal Hero Mobile */
  .hero-split-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .hero-split-left {
    padding-right: 0;
    order: 1;
  }
  
  .hero-split-right {
    order: 2;
    height: 400px;
  }
  
  .hero-title-large {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .btn-large {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-wrap: wrap;
  }
  
  .stat-divider {
    display: none;
  }
  
  .floating-card {
    padding: 1rem;
  }
  
  .card-icon {
    font-size: 2rem;
  }
  
  .card-content h4 {
    font-size: 1rem;
  }
  
  .card-content p {
    font-size: 0.75rem;
  }
  
  .hero-central-graphic {
    width: 200px;
    height: 200px;
  }
  
  .graphic-center {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  /* Navbar Logo Mobile */
  .navbar-logo {
    height: 32px;
  }
  
  .navbar-brand-text {
    font-size: 1.25rem;
  }
}

/* ============================================
   18. OFFER POPUP
   ============================================ */
.offer-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  flex-direction: column;
  overflow-y: auto;
}

.offer-popup.active {
  opacity: 1;
  visibility: visible;
}

.offer-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.4s ease;
}

.offer-popup-content {
  position: relative;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  overflow: hidden;
  
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.95) 0%, rgba(19, 23, 41, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(108, 92, 231, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(108, 92, 231, 0.3);
  animation: popupSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  -webkit-overflow-scrolling: touch;
  
  scroll-behavior: smooth;
}



@keyframes popupSlideIn {
  0% {
    transform: scale(0.8) translateY(50px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.offer-popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.offer-popup-close:hover {
  background: rgba(239, 68, 68, 0.2);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.offer-popup-header {
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease 0.2s backwards;
}

.offer-badge-animated {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  border: 1px solid rgba(108, 92, 231, 0.5);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.6);
  }
}

.offer-badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.offer-subtitle {
  font-size: 1.125rem;
  color: var(--text-grey);
  margin: 0;
}

.offer-popup-body {
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.offer-highlight {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  border: 1px solid rgba(108, 92, 231, 0.3);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  position: relative;
  /*overflow: hidden;*/
}

.offer-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmerSlide 3s infinite;
}

@keyframes shimmerSlide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.offer-discount {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(108, 92, 231, 0.6);
  animation: discountRotate 4s linear infinite;
  position: relative;
}

@keyframes discountRotate {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(5deg) scale(1.05);
  }
}

.discount-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.discount-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.offer-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.offer-details p {
  font-size: 1rem;
  color: var(--text-grey);
  margin: 0;
}

.offer-details strong {
  color: var(--accent-secondary);
  font-weight: 700;
}

.offer-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  animation: benefitSlideIn 0.6s ease backwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.5s; }
.benefit-item:nth-child(2) { animation-delay: 0.6s; }
.benefit-item:nth-child(3) { animation-delay: 0.7s; }
.benefit-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes benefitSlideIn {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.benefit-item:hover {
  background: rgba(108, 92, 231, 0.1);
  transform: translateX(5px);
}

.benefit-item i {
  font-size: 1.25rem;
  color: var(--accent-secondary);
  flex-shrink: 0;
}

.benefit-item span {
  color: var(--text-white);
  font-size: 1rem;
}

.benefit-item-cta {
  background: transparent;
  padding: 0;
  margin-top: 0.5rem;
  border: none;
}

.benefit-item-cta:hover {
  background: transparent;
  transform: none;
}

.benefit-item-cta .btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-md);
  color: var(--text-white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.benefit-item-cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.benefit-item-cta .btn:hover::before {
  left: 100%;
}

.benefit-item-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
}

.benefit-item-cta .btn:active {
  transform: translateY(0);
}

.benefit-item-cta .btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.benefit-item-cta .btn:hover i {
  transform: scale(1.1);
}

.offer-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  animation: timerPulse 2s ease-in-out infinite;
}

@keyframes timerPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.6);
  }
}

.offer-timer i {
  font-size: 1.25rem;
  color: var(--accent-pink);
  animation: clockTick 1s ease-in-out infinite;
}

@keyframes clockTick {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

.offer-timer span {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
}

.offer-popup-footer {
  text-align: center;
  animation: fadeInUp 0.8s ease 0.9s backwards;
}

.offer-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  padding: 1.25rem 2rem;
  position: relative;
  overflow: hidden;
}

.offer-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.offer-cta:hover::before {
  width: 400px;
  height: 400px;
}

.offer-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(108, 92, 231, 0.8);
}

.offer-note {
  font-size: 0.875rem;
  color: var(--text-grey-dark);
  margin: 0;
}

/* Decorative Elements */
.offer-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: decorationFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.offer-deco-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.6) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  animation-delay: 0s;
}

.offer-deco-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.5) 0%, transparent 70%);
  bottom: -30px;
  left: -30px;
  animation-delay: 2s;
}

.offer-deco-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.5) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}

@keyframes decorationFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(20px, -20px);
  }
  66% {
    transform: translate(-20px, 20px);
  }
}

/* Responsive - Tablet */
@media (max-width: 1023px) {
  .offer-popup-content {
    max-width: 550px;
    padding: 2rem;
    max-height: 85vh;
  }
  
  .offer-highlight {
    gap: 1rem;
  }
  
  .offer-discount {
    width: 90px;
    height: 90px;
  }
  
  .discount-number {
    font-size: 1.75rem;
  }
  
  .offer-details h3 {
    font-size: 1.125rem;
  }
  
  .offer-details p {
    font-size: 0.95rem;
  }
  
  /* Hero Visual Responsive */
  .hero-split-right {
    height: 500px;
  }
  
  .floating-card {
    padding: 1.25rem;
  }
  
  .card-icon {
    font-size: 2.25rem;
  }
  
  .hero-central-graphic {
    width: 250px;
    height: 250px;
  }
  
  .graphic-center {
    width: 85px;
    height: 85px;
    font-size: 2.5rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
  .offer-popup-content {
    padding: 1.5rem;
    max-height: 90vh;
    overflow-y: auto;
    width: 95%;
    border-radius: var(--radius-lg);
  }
  
  /* Enable smooth scrolling */
  .offer-popup-content {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(108, 92, 231, 0.5) transparent;
  }
  
  .offer-popup-content::-webkit-scrollbar {
    width: 6px;
  }
  
  .offer-popup-content::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .offer-popup-content::-webkit-scrollbar-thumb {
    background: rgba(108, 92, 231, 0.5);
    border-radius: 3px;
  }
  
  .offer-popup-content::-webkit-scrollbar-thumb:hover {
    background: rgba(108, 92, 231, 0.7);
  }
  
  .offer-popup-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
  }
  
  .offer-popup-header {
    margin-bottom: 1.5rem;
  }
  
  .offer-badge-animated {
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }
  
  .offer-badge-text {
    font-size: 0.75rem;
  }
  
  .offer-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .offer-subtitle {
    font-size: 1rem;
  }
  
  .offer-highlight {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .offer-discount {
    width: 80px;
    height: 80px;
  }
  
  .discount-number {
    font-size: 1.5rem;
  }
  
  .discount-text {
    font-size: 0.75rem;
  }
  
  .offer-details h3 {
    font-size: 1.125rem;
  }
  
  .offer-details p {
    font-size: 0.9rem;
  }
  
  .offer-benefits {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .benefit-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .benefit-item i {
    font-size: 1.125rem;
  }
  
  .benefit-item span {
    font-size: 0.9rem;
  }
  
  .benefit-item-cta {
    margin-top: 0.25rem;
  }
  
  .benefit-item-cta .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .offer-timer {
    padding: 0.875rem;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .offer-timer i {
    font-size: 1.125rem;
  }
  
  .offer-timer span {
    font-size: 0.875rem;
  }
  
  .offer-popup-footer {
    padding-top: 0.5rem;
  }
  
  .offer-popup-footer > div {
    flex-direction: column;
    gap: 0.75rem !important;
  }
  
  .offer-popup-footer .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .offer-cta {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
  
  .offer-note {
    font-size: 0.8rem;
    margin-top: 0.75rem;
  }
  
  /* Decorative elements - reduce size on mobile */
  .offer-deco-1,
  .offer-deco-2,
  .offer-deco-3 {
    opacity: 0.2;
  }
  
  .offer-deco-1 {
    width: 120px;
    height: 120px;
    top: -30px;
    right: -30px;
  }
  
  .offer-deco-2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: -20px;
  }
  
  .offer-deco-3 {
    width: 110px;
    height: 110px;
  }
  
  /* Hero Visual Mobile Responsive */
  .hero-split-right {
    height: 350px;
    margin-top: 2rem;
  }
  
  .hero-visual-wrapper {
    transform: scale(0.85);
  }
  
  .floating-card {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .card-1 {
    top: 0%;
    left: 5%;
  }
  
  .card-2 {
    top: 40%;
    right: 0%;
  }
  
  .card-3 {
    bottom: 10%;
    left: 0%;
  }
  
  .card-icon {
    font-size: 2rem;
  }
  
  .card-content h4 {
    font-size: 0.95rem;
  }
  
  .card-content p {
    font-size: 0.8rem;
  }
  
  .hero-central-graphic {
    width: 180px;
    height: 180px;
  }
  
  .graphic-center {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
  
  .hero-decoration {
    filter: blur(30px);
  }
  
  .deco-1 {
    width: 120px;
    height: 120px;
  }
  
  .deco-2 {
    width: 100px;
    height: 100px;
  }
  
  .deco-3 {
    width: 110px;
    height: 110px;
  }
}

/* Extra Small Mobile (< 375px) */
@media (max-width: 374px) {
  .offer-popup-content {
    padding: 1.25rem;
  }
  
  .offer-title {
    font-size: 1.35rem;
  }
  
  .offer-discount {
    width: 70px;
    height: 70px;
  }
  
  .discount-number {
    font-size: 1.35rem;
  }
  
  .benefit-item {
    padding: 0.65rem;
    font-size: 0.85rem;
  }
  
  .offer-popup-footer .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }
  
  /* Hero Visual Extra Small */
  .hero-split-right {
    height: 300px;
  }
  
  .hero-visual-wrapper {
    transform: scale(0.75);
  }
  
  .floating-card {
    padding: 0.75rem;
  }
  
  .card-icon {
    font-size: 1.75rem;
  }
  
  .card-content h4 {
    font-size: 0.875rem;
  }
  
  .card-content p {
    font-size: 0.75rem;
  }
  
  .hero-central-graphic {
    width: 150px;
    height: 150px;
  }
  
  .graphic-center {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
  .offer-popup-content {
    max-height: 95vh;
    padding: 1.25rem;
  }
  
  .offer-popup-header {
    margin-bottom: 1rem;
  }
  
  .offer-highlight {
    flex-direction: row;
    padding: 1rem;
  }
  
  .offer-discount {
    width: 70px;
    height: 70px;
  }
  
  .offer-benefits {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .benefit-item {
    padding: 0.65rem;
  }
  
  .offer-timer {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .offer-popup-footer {
    padding-top: 0.5rem;
  }
  
  .offer-popup-footer > div {
    flex-direction: row;
  }
  
  /* Hero Visual Landscape */
  .hero-split-right {
    height: 280px;
  }
  
  .hero-visual-wrapper {
    transform: scale(0.7);
  }
}

/* ============================================
   18. COMING SOON CARD
   ============================================ */
.coming-soon-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
    border: 2px dashed var(--accent-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.coming-soon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(99, 102, 241, 0.2),
        transparent
    );
    animation: running 2s linear infinite;
}

@keyframes running {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}



.coming-soon-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.coming-soon-card p {
    color: var(--text-grey);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.coffee-animation {
    display: inline-block;
    animation: bounce 1s ease-in-out infinite;
    font-size: 1.5rem;
    vertical-align: middle;
    margin: 0 0.25rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.coming-soon-card .btn {
    position: relative;
    z-index: 1;
    margin-top: var(--spacing-sm);
}

/* ============================================
   19. ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 2px solid var(--accent-indigo);
  outline-offset: 2px;
}

/* ============================================
   19. PRINT STYLES
   ============================================ */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}




.offer-popup {
  overflow-y: auto;
}

.offer-popup-content {
  max-height: 90vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
}
