/* ===== PERFORMANCE OPTIMIZATIONS ===== */
* {
  box-sizing: border-box;
}

/* Optimize font loading */
@font-face {
  font-family: 'Inter';
  font-display: swap;
}

/* Reduce layout shifts */
img {
  max-width: 100%;
  height: auto;
}

/* Accessibility improvements */
:focus {
  outline: 3px solid rgba(59, 130, 246, 0.6);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-primary: #000000;
    --text-secondary: #333333;
    --border-color: #000000;
  }
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary-color: #3B82F6;
  --primary-dark: #1E40AF;
  --primary-light: #60A5FA;
  --secondary-color: #10B981;
  --accent-color: #F59E0B;
  --error-color: #EF4444;
  --warning-color: #F59E0B;
  --success-color: #10B981;
  
  /* Grays */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Text Colors - Enhanced for better visibility */
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-tertiary: #64748B;
  --text-inverse: #FFFFFF;
  --text-muted: #94A3B8;

  /* Background Colors - Improved contrast */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --bg-tertiary: #F1F5F9;
  --bg-dark: #0F172A;
  --bg-dark-secondary: #1E293B;
  --bg-dark-tertiary: #334155;
  
  /* Border Colors - Enhanced visibility */
  --border-color: #E2E8F0;
  --border-light: #F1F5F9;
  --border-dark: #CBD5E1;
  --border-accent: #3B82F6;

  /* Dark Theme Colors */
  --dark-text-primary: #F8FAFC;
  --dark-text-secondary: #CBD5E1;
  --dark-text-tertiary: #94A3B8;
  --dark-border: #334155;
  --dark-border-light: #475569;

  /* Navigation Colors - Enhanced visibility */
  --nav-bg-transparent: transparent;
  --nav-bg-scrolled: rgba(255, 255, 255, 0.98);
  --nav-text-transparent: rgba(255, 255, 255, 0.95);
  --nav-text-scrolled: #0F172A;
  --nav-text-active-transparent: #FFFFFF;
  --nav-text-active-scrolled: #3B82F6;
  --nav-logo-transparent: #FFFFFF;
  --nav-logo-scrolled: #3B82F6;
  --nav-border-scrolled: rgba(226, 232, 240, 0.9);
  --nav-shadow-scrolled: 0 4px 20px rgba(0, 0, 0, 0.08);

  /* Theme Colors */
  --theme-toggle-bg: #F3F4F6;
  --theme-toggle-color: #6B7280;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  /* Z-Index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

/* ===== DARK MODE VARIABLES ===== */
[data-theme="dark"] {
  /* Background Colors */
  --bg-primary: #111827;
  --bg-secondary: #1F2937;
  --bg-tertiary: #374151;
  --bg-dark: #000000;

  /* Text Colors */
  --text-primary: #F9FAFB;
  --text-secondary: #D1D5DB;
  --text-tertiary: #9CA3AF;
  --text-inverse: #111827;

  /* Border Colors */
  --border-color: #374151;
  --border-light: #4B5563;
  --border-dark: #6B7280;

  /* Navigation Colors */
  --nav-bg-transparent: transparent;
  --nav-bg-scrolled: rgba(17, 24, 39, 0.95);
  --nav-text-transparent: rgba(255, 255, 255, 0.9);
  --nav-text-scrolled: #F9FAFB;
  --nav-text-active-transparent: #FFFFFF;
  --nav-text-active-scrolled: #60A5FA;
  --nav-logo-transparent: #FFFFFF;
  --nav-logo-scrolled: #60A5FA;
  --nav-border-scrolled: rgba(75, 85, 99, 0.8);

  /* Theme Colors */
  --theme-toggle-bg: #374151;
  --theme-toggle-color: #D1D5DB;

  /* Shadows (adjusted for dark mode) */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ===== AUTO THEME SUPPORT ===== */
/* When no explicit theme is set, follow system preference */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    /* Auto dark theme variables */
    --bg-primary: #111827;
    --bg-secondary: #1F2937;
    --bg-tertiary: #374151;
    --bg-dark: #000000;

    --text-primary: #F9FAFB;
    --text-secondary: #D1D5DB;
    --text-tertiary: #9CA3AF;
    --text-inverse: #111827;

    --border-color: #374151;
    --border-light: #4B5563;
    --border-dark: #6B7280;

    --nav-bg-transparent: transparent;
    --nav-bg-scrolled: rgba(17, 24, 39, 0.95);
    --nav-text-transparent: rgba(255, 255, 255, 0.9);
    --nav-text-scrolled: #F9FAFB;
    --nav-text-active-transparent: #FFFFFF;
    --nav-text-active-scrolled: #60A5FA;
    --nav-logo-transparent: #FFFFFF;
    --nav-logo-scrolled: #60A5FA;
    --nav-border-scrolled: rgba(75, 85, 99, 0.8);

    --theme-toggle-bg: #374151;
    --theme-toggle-color: #D1D5DB;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  line-height: var(--leading-relaxed);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  font-size: 16px;
  min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-3);
  }
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-inverse);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  font-weight: var(--font-weight-semibold);
  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.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--text-inverse);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

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

.btn-primary:focus {
  outline: 3px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  font-weight: var(--font-weight-semibold);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: var(--text-inverse);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline:hover::before {
  left: 0;
}

.btn-outline:focus {
  outline: 3px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

/* ===== MODERN HERO SECTION ===== */
.hero-with-nav {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 25%, #334155 50%, #475569 75%, #64748B 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== MODERN PINNED NAVIGATION ===== */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 9999 !important;
  padding: var(--space-3) 0;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  overflow: visible;
  transform: translateZ(0);
  will-change: transform;
  margin: 0;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: var(--radius-2xl);
  z-index: -1;
}

.navbar::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: rotate 10s linear infinite;
  z-index: -2;
  opacity: 0.5;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.navbar.scrolled {
  background: var(--nav-bg-scrolled);
  border-bottom: 1px solid var(--nav-border-scrolled);
  box-shadow: var(--nav-shadow-scrolled);
  padding: var(--space-2) 0;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

/* Dark mode navbar - Enhanced visibility */
[data-theme="dark"] .navbar {
  background: rgba(15, 23, 42, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(15, 23, 42, 0.98);
  border-bottom: 1px solid var(--dark-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .nav-link {
  color: var(--dark-text-secondary);
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
  color: var(--dark-text-primary);
}

/* Body margin for pinned navbar - removed extra margin */
body {
  margin-top: 0;
}

/* Hero section positioning */
.hero-with-nav {
  position: relative;
  padding-top: 80px; /* Account for fixed navbar height */
  margin-top: 0 !important;
  margin-bottom: 0;
  top: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Responsive nav container */
@media (min-width: 768px) {
  .nav-container {
    padding: 0 var(--space-6);
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 var(--space-8);
  }
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--nav-logo-transparent);
  transition: all var(--transition-fast);
  padding: var(--space-2);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.nav-logo a::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 var(--transition-slow);
}

.nav-logo a:hover::before {
  left: 100%;
}

.nav-logo a:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-logo a {
  color: var(--nav-logo-scrolled);
}

.navbar.scrolled .nav-logo a:hover {
  background: rgba(59, 130, 246, 0.1);
}

.nav-logo i {
  font-size: var(--text-2xl);
  background: linear-gradient(135deg, #60A5FA, #3B82F6, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all var(--transition-fast);
  animation: logoGlow 3s ease-in-out infinite alternate;
}

/* Logo image styles */
.logo-image {
  height: 40px;
  width: auto;
  transition: all var(--transition-fast);
  filter: brightness(1.1) contrast(1.1);
  border-radius: var(--radius-md);
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.navbar.scrolled .logo-image {
  filter: brightness(1) contrast(1);
  height: 36px;
}

/* Dark mode logo image */
[data-theme="dark"] .logo-image {
  filter: brightness(1.3) contrast(1.2) saturate(1.1) !important;
}

[data-theme="dark"] .navbar.scrolled .logo-image {
  filter: brightness(1.2) contrast(1.1) saturate(1) !important;
}

/* Ensure logo is always visible */
.nav-logo img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* SVG logo specific styles */
.nav-logo img[src*=".svg"] {
  filter: brightness(1) contrast(1) !important;
}

[data-theme="dark"] .nav-logo img[src*=".svg"] {
  filter: brightness(1.2) contrast(1.1) saturate(1.1) !important;
}

.navbar.scrolled .nav-logo img[src*=".svg"] {
  filter: brightness(0.9) contrast(1.1) !important;
}

[data-theme="dark"] .navbar.scrolled .nav-logo img[src*=".svg"] {
  filter: brightness(1.1) contrast(1) saturate(1) !important;
}

@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0.5)); }
  100% { filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.8)); }
}

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

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation classes */
.animate-in {
  animation: slideInUp 0.6s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-fade-scale {
  animation: fadeInScale 0.5s ease-out forwards;
}

.navbar.scrolled .nav-logo i {
  background: linear-gradient(135deg, #1E40AF, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all var(--transition-fast);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo-text {
  background: linear-gradient(135deg, #1E40AF, #3B82F6, #6366F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-1);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  font-weight: var(--font-weight-medium);
  color: var(--nav-text-transparent);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
  font-size: var(--text-sm);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-radius: var(--radius-full);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
}

.nav-link:hover,
.nav-link.active {
  color: var(--nav-text-active-transparent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .nav-menu {
  background: rgba(59, 130, 246, 0.1);
}

.navbar.scrolled .nav-link {
  color: var(--nav-text-scrolled);
}

.navbar.scrolled .nav-link::before {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--nav-text-active-scrolled);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
  position: relative;
  z-index: 100000;
}

.nav-item.dropdown {
  position: relative;
  z-index: 100000;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.dropdown-icon {
  font-size: var(--text-xs);
  transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Modern 6amtech-style dropdown */
.dropdown-menu.modern-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: auto;
  min-width: 240px;
  max-width: 280px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  z-index: 99999;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  z-index: 99999;
  padding: var(--space-3);
  margin-top: var(--space-2);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu,
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.active .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  z-index: 100001 !important;
}

/* Specific rule for modern dropdown */
.nav-menu .dropdown:hover .dropdown-menu.modern-dropdown,
.nav-menu .dropdown.active .dropdown-menu.modern-dropdown,
.dropdown:hover .dropdown-menu.modern-dropdown,
.dropdown.active .dropdown-menu.modern-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  z-index: 100002 !important;
  display: block !important;
}

/* Modern dropdown header */
.dropdown-header {
  padding: var(--space-4) var(--space-4) var(--space-2);
  border-bottom: 1px solid #F3F4F6;
}

.dropdown-header h6 {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Modern dropdown list */
.dropdown-list {
  list-style: none;
  margin: 0;
  padding: var(--space-3) 0;
}

.dropdown-list li {
  margin: 0;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  text-decoration: none;
  color: #374151;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-fast);
  border: none;
  background: none;
}

.dropdown-link:hover {
  background: #F9FAFB;
  color: #111827;
}

/* Modern dropdown icons */
.dropdown-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: white;
  flex-shrink: 0;
}

.dropdown-icon-wrapper.purple {
  background: linear-gradient(135deg, #8B5CF6, #A855F7);
}

.dropdown-icon-wrapper.blue {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.dropdown-icon-wrapper.orange {
  background: linear-gradient(135deg, #F97316, #EA580C);
}

/* Ensure dropdown appears above everything */
.nav-menu .dropdown.active .dropdown-menu.modern-dropdown,
.dropdown.active .dropdown-menu.modern-dropdown,
.nav-item.dropdown:hover .dropdown-menu.modern-dropdown,
.nav-item.dropdown.active .dropdown-menu.modern-dropdown {
  z-index: 100002 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  display: block !important;
}





/* Keep dropdown open when hovering over menu */
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-group {
  margin-bottom: var(--space-4);
}

.dropdown-group:last-child {
  margin-bottom: 0;
}

.dropdown-header {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
  padding: 0 var(--space-3);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  margin-bottom: var(--space-1);
}

.dropdown-item:hover {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-color);
  transform: translateX(3px);
}

.dropdown-item i {
  font-size: var(--text-lg);
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

.dropdown-item span {
  flex: 1;
}

.dropdown-item strong {
  display: block;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 2px;
}

.dropdown-item small {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: var(--leading-tight);
}

.dropdown-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: var(--space-4) 0;
}

/* ===== BREADCRUMB NAVIGATION ===== */
.breadcrumb-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: var(--space-3) 0;
  position: sticky;
  top: 70px;
  z-index: 998;
  transition: all var(--transition-fast);
}

.breadcrumb {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--text-sm);
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  margin: 0 var(--space-2);
  color: var(--text-secondary);
  font-weight: var(--font-weight-normal);
}

.breadcrumb-item a {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.breadcrumb-item.active span {
  color: var(--text-primary);
  font-weight: var(--font-weight-medium);
}

.breadcrumb-item i {
  font-size: var(--text-xs);
}

/* Dark mode dropdown styles */
[data-theme="dark"] .dropdown-menu {
  background: rgba(15, 23, 42, 0.98);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .dropdown-header {
  color: #94A3B8;
}

[data-theme="dark"] .dropdown-item {
  color: #CBD5E1;
}

[data-theme="dark"] .dropdown-item:hover {
  background: rgba(59, 130, 246, 0.2);
  color: #FFFFFF;
}

[data-theme="dark"] .dropdown-item small {
  color: #94A3B8;
}

[data-theme="dark"] .dropdown-divider {
  background: rgba(255, 255, 255, 0.1);
}

/* Dark mode for modern dropdown */
[data-theme="dark"] .dropdown-menu.modern-dropdown {
  background: #1F2937;
  border-color: #374151;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}



[data-theme="dark"] .dropdown-link {
  color: #E5E7EB;
}

[data-theme="dark"] .dropdown-link:hover {
  background: #374151;
  color: #FFFFFF;
}

/* Dark mode breadcrumb styles */
[data-theme="dark"] .breadcrumb-nav {
  background: rgba(15, 23, 42, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .breadcrumb-item a {
  color: #94A3B8;
}

[data-theme="dark"] .breadcrumb-item a:hover {
  color: #60A5FA;
}

[data-theme="dark"] .breadcrumb-item.active span {
  color: #FFFFFF;
}

[data-theme="dark"] .breadcrumb-item:not(:last-child)::after {
  color: #64748B;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Theme Toggle Button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) rotate(180deg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .theme-toggle {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
  border-color: rgba(59, 130, 246, 0.2);
}

.navbar.scrolled .theme-toggle:hover {
  background: rgba(59, 130, 246, 0.2);
  color: #1E40AF;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-btn::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 var(--transition-slow);
}

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

.documentation-btn {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.documentation-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.submit-ticket-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  color: #6366F1;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: var(--font-weight-semibold);
}

.submit-ticket-btn:hover {
  background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.95));
  color: #4F46E5;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
  border-color: rgba(99, 102, 241, 0.2);
}

/* Scrolled state button styles */
.navbar.scrolled .documentation-btn {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
  border-color: rgba(59, 130, 246, 0.2);
}

.navbar.scrolled .documentation-btn:hover {
  background: rgba(59, 130, 246, 0.2);
  color: #1E40AF;
  border-color: rgba(59, 130, 246, 0.3);
}

.navbar.scrolled .submit-ticket-btn {
  background: linear-gradient(135deg, #3B82F6, #6366F1);
  color: white;
  border-color: transparent;
}

.navbar.scrolled .submit-ticket-btn:hover {
  background: linear-gradient(135deg, #1E40AF, #4F46E5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10000;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.hamburger:active {
  transform: scale(0.95);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.bar {
  width: 22px;
  height: 3px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hamburger.active {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.navbar.scrolled .hamburger {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.navbar.scrolled .bar {
  background: #3B82F6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ===== MODERN HERO CONTENT ===== */
.hero-content {
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease-out;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.badge-icon {
  font-size: var(--text-lg);
}

.badge-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
}

/* Hero Title - Enhanced visibility */
.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--leading-tight);
  color: #FFFFFF;
  margin: 0 0 var(--space-6) 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #60A5FA, #3B82F6, #8B5CF6, #A855F7, #60A5FA);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--font-weight-extrabold);
  animation: gradientShift 4s ease-in-out infinite;
}

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

/* Hero Subtitle - Enhanced visibility */
.hero-subtitle {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto var(--space-8) auto;
  animation: fadeInUp 0.8s ease-out 0.4s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-weight: var(--font-weight-medium);
}

/* ===== HERO CTA BUTTONS ===== */
.hero-cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-12);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-radius: 12px;
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-base);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 44px; /* Accessibility: minimum touch target */
  cursor: pointer;
}

.btn-primary:focus, .btn-secondary:focus {
  outline: 2px solid #60A5FA;
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, #3B82F6, #6366F1, #8B5CF6);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.btn-primary::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;
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* ===== HERO FEATURES ===== */
.hero-features {
  display: flex;
  gap: var(--space-8);
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-item:hover {
  color: white;
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60A5FA;
  font-size: var(--text-lg);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: rgba(96, 165, 250, 0.2);
  color: #93C5FD;
  transform: scale(1.1);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.7);
  animation: fadeInUp 0.8s ease-out 1s both;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

.scroll-text {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== HERO BACKGROUND ELEMENTS ===== */
.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(139, 92, 246, 0.1));
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

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

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.1); opacity: 0.2; }
}

/* ===== THEME NOTIFICATION ===== */
.theme-notification {
  position: fixed;
  top: 100px;
  right: var(--space-6);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-tooltip);
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.theme-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.theme-notification i {
  color: var(--primary-color);
  font-size: var(--text-base);
}

/* Dark theme notification styles */
[data-theme="dark"] .theme-notification {
  background: rgba(31, 41, 55, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.1); opacity: 0.2; }
}

/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

/* ===== SOLUTIONS SECTION ===== */
.solutions {
  padding: var(--space-20) 0;
  background: var(--bg-secondary);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.solution-card {
  background: var(--bg-primary);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(59, 130, 246, 0.2);
}

.solution-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}

.solution-card:hover .solution-icon {
  transform: scale(1.1) rotate(5deg);
}

.solution-icon i {
  font-size: var(--text-2xl);
  color: white;
}

.solution-title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}

.solution-description {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

.solution-features {
  list-style: none;
  text-align: left;
  position: relative;
  z-index: 1;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.solution-features i {
  color: var(--secondary-color);
  font-size: var(--text-xs);
}

/* ===== INSTALLATION SERVICES SECTION ===== */
.installation-services {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.installation-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

/* Installation Grid */
.installation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Installation Cards */
.installation-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.installation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.installation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.installation-card.featured {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.installation-card.featured::before {
  opacity: 1;
  background: linear-gradient(90deg, #F59E0B, #D97706);
}

.installation-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.installation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  position: relative;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.installation-icon i {
  font-size: var(--text-3xl);
  color: white;
}

.installation-header {
  margin-bottom: var(--space-6);
}

.installation-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.installation-subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.installation-price {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-color);
  margin-bottom: var(--space-4);
}

.installation-timeline {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-6);
  padding: var(--space-2) var(--space-3);
  background: rgba(99, 102, 241, 0.1);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--primary-color);
}

.installation-timeline i {
  color: var(--primary-color);
}

.installation-features {
  margin-bottom: var(--space-8);
}

.feature-category {
  margin-bottom: var(--space-6);
}

.feature-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
}

.installation-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-secondary);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.installation-features .feature-item:hover {
  background: rgba(99, 102, 241, 0.05);
  transform: translateX(3px);
}

.installation-features .feature-item i {
  color: var(--success-color);
  font-size: var(--text-sm);
  width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.installation-features .feature-item.excluded i {
  color: var(--error-color);
}

.installation-features .feature-item.excluded {
  opacity: 0.6;
}

.installation-features .feature-item span {
  line-height: var(--leading-relaxed);
  font-weight: var(--font-weight-medium);
}

.installation-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.installation-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.installation-btn.featured {
  background: linear-gradient(135deg, #F59E0B, #D97706);
}

.installation-btn.featured:hover {
  background: linear-gradient(135deg, #D97706, #F59E0B);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* ===== DARK MODE INSTALLATION SECTION ===== */
[data-theme="dark"] .installation-services {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%) !important;
}

[data-theme="dark"] .installation-services::before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dark-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dark-dots)"/></svg>');
  opacity: 0.3;
}

[data-theme="dark"] .installation-card {
  background: linear-gradient(135deg, #1E293B, #334155) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(96, 165, 250, 0.3) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .installation-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
  border-color: rgba(96, 165, 250, 0.5) !important;
  background: linear-gradient(135deg, #334155, #475569) !important;
}

[data-theme="dark"] .installation-card.featured {
  background: linear-gradient(135deg, #1E293B, #334155) !important;
  border: 2px solid #60A5FA !important;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4) !important;
}

[data-theme="dark"] .installation-badge {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

[data-theme="dark"] .installation-icon {
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

[data-theme="dark"] .installation-title {
  color: #FFFFFF !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .installation-subtitle {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .installation-price {
  color: #60A5FA !important;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.5) !important;
}

[data-theme="dark"] .installation-timeline {
  background: rgba(59, 130, 246, 0.2) !important;
  border-left-color: #60A5FA !important;
  color: #CBD5E1 !important;
}

[data-theme="dark"] .installation-timeline i {
  color: #60A5FA !important;
}

[data-theme="dark"] .category-title {
  color: #FFFFFF !important;
  border-bottom-color: rgba(96, 165, 250, 0.4) !important;
}

[data-theme="dark"] .category-title::after {
  background: #60A5FA !important;
}

[data-theme="dark"] .installation-features .feature-item {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .installation-features .feature-item:hover {
  background: rgba(59, 130, 246, 0.15) !important;
}

[data-theme="dark"] .installation-features .feature-item i {
  color: #10B981 !important;
}

[data-theme="dark"] .installation-features .feature-item.excluded i {
  color: #EF4444 !important;
}

[data-theme="dark"] .installation-features .feature-item span {
  color: #CBD5E1 !important;
  font-weight: 500 !important;
}

[data-theme="dark"] .installation-btn {
  background: linear-gradient(135deg, #3B82F6, #1E40AF) !important;
  color: white !important;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;
  border: none !important;
}

[data-theme="dark"] .installation-btn:hover {
  background: linear-gradient(135deg, #1E40AF, #3B82F6) !important;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6) !important;
  color: white !important;
}

[data-theme="dark"] .installation-btn.featured {
  background: linear-gradient(135deg, #F59E0B, #D97706) !important;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4) !important;
  color: white !important;
}

[data-theme="dark"] .installation-btn.featured:hover {
  background: linear-gradient(135deg, #D97706, #F59E0B) !important;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6) !important;
  color: white !important;
}

/* Dark mode section headers */
[data-theme="dark"] .installation-services .section-title {
  color: #FFFFFF !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .installation-services .section-description {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .installation-services .highlight-word {
  background: linear-gradient(135deg, #60A5FA, #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .installation-services .highlight-word::after {
  background: linear-gradient(135deg, #60A5FA, #10B981);
}

/* ===== DARK MODE COMPANY SECTION ===== */
[data-theme="dark"] .company {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%) !important;
}

[data-theme="dark"] .company .section-title {
  color: #FFFFFF !important;
}

[data-theme="dark"] .company .section-description {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .company .lead-text {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .company .company-story {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .company h3 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .company p {
  color: #CBD5E1 !important;
}

/* Dark mode highlight cards */
[data-theme="dark"] .highlight-card {
  background: linear-gradient(135deg, #1E293B, #334155) !important;
  border: 1px solid rgba(96, 165, 250, 0.2) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .highlight-card:hover {
  border-color: rgba(96, 165, 250, 0.4) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .highlight-content h3 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .highlight-content p {
  color: #CBD5E1 !important;
}

/* Dark mode company stats */
[data-theme="dark"] .stat-item {
  background: linear-gradient(135deg, #1E293B, #334155) !important;
  border: 1px solid rgba(96, 165, 250, 0.2) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .stat-number {
  color: #60A5FA !important;
  text-shadow: 0 0 15px rgba(96, 165, 250, 0.3) !important;
}

[data-theme="dark"] .company-stats .stat-number {
  color: #60A5FA !important;
  text-shadow: 0 0 15px rgba(96, 165, 250, 0.3) !important;
}

[data-theme="dark"] .company .stat-number {
  color: #60A5FA !important;
  text-shadow: 0 0 15px rgba(96, 165, 250, 0.3) !important;
}

html[data-theme="dark"] .stat-number {
  color: #60A5FA !important;
  text-shadow: 0 0 15px rgba(96, 165, 250, 0.3) !important;
}

/* Additional overrides for company section numbers */
[data-theme="dark"] .company-overview .stat-number {
  color: #60A5FA !important;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.5) !important;
  font-weight: var(--font-weight-extrabold) !important;
}

[data-theme="dark"] .overview-text .stat-number {
  color: #60A5FA !important;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.5) !important;
}

body[data-theme="dark"] .stat-number {
  color: #60A5FA !important;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.5) !important;
}

[data-theme="dark"] .stat-label {
  color: #CBD5E1 !important;
}

/* Dark mode company values */
[data-theme="dark"] .company-values {
  border-top-color: rgba(96, 165, 250, 0.2) !important;
}

[data-theme="dark"] .values-title {
  color: #FFFFFF !important;
}

[data-theme="dark"] .values-description {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .value-item {
  background: linear-gradient(135deg, #1E293B, #334155) !important;
  border: 1px solid rgba(96, 165, 250, 0.2) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .value-item:hover {
  border-color: rgba(96, 165, 250, 0.4) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .value-content h4 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .value-content p {
  color: #CBD5E1 !important;
}

/* Dark mode Mission & Vision */
[data-theme="dark"] .mission-vision-impact {
  background: transparent !important;
}

[data-theme="dark"] .mvi-title {
  color: #FFFFFF !important;
}

[data-theme="dark"] .mvi-description {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .modern-card {
  background: linear-gradient(135deg, #1E293B, #334155) !important;
  border: 1px solid rgba(96, 165, 250, 0.2) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .modern-card:hover {
  border-color: rgba(96, 165, 250, 0.4) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .modern-card .card-content h3 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .modern-card .card-content .lead-text {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .point-item {
  background: rgba(59, 130, 246, 0.1) !important;
  border-left-color: #60A5FA !important;
}

[data-theme="dark"] .point-item:hover {
  background: rgba(59, 130, 246, 0.15) !important;
}

[data-theme="dark"] .point-item i {
  color: #60A5FA !important;
}

[data-theme="dark"] .point-item span {
  color: #CBD5E1 !important;
}

/* Dark mode Get Started section */
[data-theme="dark"] .get-started.modern-cta {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%) !important;
}

[data-theme="dark"] .cta-badge {
  background: rgba(59, 130, 246, 0.2) !important;
  border-color: rgba(96, 165, 250, 0.3) !important;
}

[data-theme="dark"] .cta-badge .badge-text {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .cta-title {
  color: #FFFFFF !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .cta-description {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .get-started-steps {
  background: transparent !important;
}

[data-theme="dark"] .step-item {
  background: linear-gradient(135deg, #1E293B, #334155) !important;
  border: 1px solid rgba(96, 165, 250, 0.2) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .step-item:hover {
  border-color: rgba(96, 165, 250, 0.4) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .step-number {
  background: linear-gradient(135deg, #3B82F6, #1E40AF) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4) !important;
}

[data-theme="dark"] .step-content h4 {
  color: #FFFFFF !important;
}

[data-theme="dark"] .step-content p {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .trust-indicators {
  background: transparent !important;
}

[data-theme="dark"] .trust-item {
  color: #CBD5E1 !important;
}

[data-theme="dark"] .trust-item i {
  color: #10B981 !important;
}

/* Dark mode mobile menu */
@media (max-width: 768px) {
  [data-theme="dark"] .nav-menu {
    background: rgba(15, 23, 42, 0.98) !important;
    border-top-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  }

  [data-theme="dark"] .nav-link {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #CBD5E1 !important;
  }

  [data-theme="dark"] .nav-link:hover,
  [data-theme="dark"] .nav-link.active {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #FFFFFF !important;
  }

  [data-theme="dark"] .nav-actions {
    background: rgba(15, 23, 42, 0.98) !important;
    border-top-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  }

  [data-theme="dark"] .nav-btn {
    color: #CBD5E1 !important;
    border-color: rgba(96, 165, 250, 0.3) !important;
  }

  [data-theme="dark"] .nav-btn:hover {
    background: rgba(59, 130, 246, 0.2) !important;
    color: #FFFFFF !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
  }

  [data-theme="dark"] .hamburger {
    background: rgba(59, 130, 246, 0.25) !important;
    border-color: rgba(96, 165, 250, 0.4) !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2) !important;
  }

  [data-theme="dark"] .hamburger:hover {
    background: rgba(59, 130, 246, 0.35) !important;
    border-color: rgba(96, 165, 250, 0.5) !important;
  }

  [data-theme="dark"] .bar {
    background: #FFFFFF !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
  }

  [data-theme="dark"] .navbar.scrolled .hamburger {
    background: rgba(59, 130, 246, 0.3) !important;
    border-color: rgba(96, 165, 250, 0.4) !important;
  }

  [data-theme="dark"] .navbar.scrolled .bar {
    background: #60A5FA !important;
  }

  /* Mobile dropdown styles */
  .dropdown-menu {
    position: static !important;
    min-width: 100% !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    margin: var(--space-2) 0 !important;
    padding: var(--space-2) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
  }

  /* Mobile modern dropdown styles */
  .dropdown-menu.modern-dropdown {
    padding: 0 !important;
    border-radius: var(--radius-lg) !important;
  }

  .modern-dropdown .dropdown-list {
    padding: var(--space-3) 0 !important;
  }

  .dropdown-link {
    padding: var(--space-3) var(--space-4) !important;
  }

  .dropdown-icon-wrapper {
    width: 28px !important;
    height: 28px !important;
    font-size: var(--text-xs) !important;
  }

  .dropdown.active .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 300px !important;
  }

  .dropdown-item {
    padding: var(--space-3) var(--space-2) !important;
    margin-bottom: var(--space-1) !important;
    border-radius: var(--radius-md) !important;
  }

  .dropdown-item:last-child {
    margin-bottom: 0 !important;
  }

  .dropdown-item strong {
    font-size: var(--text-sm) !important;
  }

  .dropdown-item small {
    font-size: var(--text-xs) !important;
  }

  [data-theme="dark"] .dropdown-menu {
    background: rgba(15, 23, 42, 0.95) !important;
  }

  [data-theme="dark"] .dropdown-menu.modern-dropdown {
    background: #1F2937 !important;
    border-color: #374151 !important;
  }

  /* Mobile navigation improvements */
  .nav-menu {
    max-height: calc(100vh - 80px) !important;
    overflow-y: auto !important;
    padding: var(--space-4) !important;
  }

  .nav-item {
    margin-bottom: var(--space-2) !important;
  }

  .nav-link {
    padding: var(--space-3) var(--space-4) !important;
    border-radius: var(--radius-lg) !important;
    font-size: var(--text-base) !important;
  }

  .dropdown-toggle {
    justify-content: space-between !important;
  }

  .dropdown-icon {
    transition: transform 0.3s ease !important;
  }

  .dropdown.active .dropdown-icon {
    transform: rotate(180deg) !important;
  }

  /* Mobile breadcrumb styles */
  .breadcrumb-nav {
    padding: var(--space-2) 0 !important;
  }

  .breadcrumb {
    font-size: var(--text-xs) !important;
  }

  .breadcrumb-item i {
    display: none !important;
  }

  /* Mobile About Section */
  .about-hero {
    grid-template-columns: 1fr !important;
    gap: var(--space-12) !important;
    text-align: center !important;
  }

  .about-content {
    order: 2 !important;
  }

  .about-visual {
    order: 1 !important;
  }

  .about-title {
    font-size: var(--text-3xl) !important;
  }

  .lead-text {
    font-size: var(--text-lg) !important;
  }

  .secondary-text {
    font-size: var(--text-base) !important;
  }

  .about-features {
    gap: var(--space-3) !important;
  }

  .feature-item {
    flex-direction: column !important;
    text-align: center !important;
    gap: var(--space-3) !important;
  }

  .feature-item:hover {
    transform: translateY(-4px) !important;
  }

  .visual-card {
    padding: var(--space-6) !important;
  }

  .visual-overlay {
    position: static !important;
    margin-top: var(--space-4) !important;
  }

  .stats-showcase {
    padding: var(--space-8) !important;
  }

  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-6) !important;
  }

  .stat-card {
    padding: var(--space-6) !important;
  }

  .stat-card .stat-number {
    font-size: var(--text-3xl) !important;
  }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* Enhanced mobile menu visibility */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed !important;
    left: -100% !important;
    top: 70px !important;
    width: 100% !important;
    height: calc(100vh - 70px) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    transition: left 0.3s ease !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
  }

  .nav-menu.active {
    left: 0 !important;
  }

  .nav-actions {
    position: fixed !important;
    left: -100% !important;
    top: auto !important;
    bottom: 0 !important;
    width: 100% !important;
    height: auto !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    transition: left 0.3s ease !important;
    z-index: 9999 !important;
    padding: var(--space-4) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
  }

  .nav-actions.active {
    left: 0 !important;
  }

  /* Dark mode mobile menu enhancements */
  [data-theme="dark"] .nav-menu {
    background: rgba(15, 23, 42, 0.98) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  [data-theme="dark"] .nav-actions {
    background: rgba(15, 23, 42, 0.98) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
}

/* Dark mode responsive improvements */
@media (max-width: 1200px) {
  [data-theme="dark"] .installation-card.featured {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  }
}

@media (max-width: 768px) {
  [data-theme="dark"] .installation-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(51, 65, 85, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  [data-theme="dark"] .installation-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }

  [data-theme="dark"] .installation-title {
    color: #F8FAFC;
  }

  [data-theme="dark"] .installation-subtitle {
    color: #CBD5E1;
  }

  [data-theme="dark"] .installation-price {
    color: #60A5FA;
    text-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
  }

  [data-theme="dark"] .category-title {
    color: #F8FAFC;
    border-bottom-color: rgba(96, 165, 250, 0.4);
  }

  [data-theme="dark"] .installation-features .feature-item span {
    color: #CBD5E1;
  }
}

/* Dark mode focus improvements */
[data-theme="dark"] .installation-btn:focus {
  outline: 3px solid rgba(96, 165, 250, 0.6);
  outline-offset: 2px;
}

[data-theme="dark"] .installation-card:focus-within {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

/* Dark mode animation improvements */
[data-theme="dark"] .installation-card {
  transition: all 0.4s ease;
}

[data-theme="dark"] .installation-card:hover {
  transform: translateY(-10px);
  border-color: rgba(96, 165, 250, 0.3);
}

[data-theme="dark"] .installation-features .feature-item:hover {
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
}

/* Dark mode grid improvements */
[data-theme="dark"] .installation-grid {
  position: relative;
}

[data-theme="dark"] .installation-grid::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  border-radius: var(--radius-3xl);
  z-index: -1;
}

/* Dark mode section header improvements */
[data-theme="dark"] .installation-services .section-header {
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .installation-services .section-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* Dark mode enhanced contrast for better readability */
[data-theme="dark"] .installation-card {
  border: 1px solid rgba(96, 165, 250, 0.2);
}

[data-theme="dark"] .installation-card.featured {
  border: 2px solid #60A5FA;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.25));
}

[data-theme="dark"] .installation-badge {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  border: 1px solid rgba(245, 158, 11, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Dark mode text improvements */
[data-theme="dark"] .installation-title {
  color: #F8FAFC;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .installation-subtitle {
  color: #CBD5E1;
}

[data-theme="dark"] .installation-features .feature-item span {
  color: #CBD5E1;
  font-weight: var(--font-weight-medium);
}

/* Dark mode glow effects */
[data-theme="dark"] .installation-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  border-radius: var(--radius-2xl);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

[data-theme="dark"] .installation-card:hover::after {
  opacity: 1;
}

[data-theme="dark"] .installation-card.featured::after {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  opacity: 1;
}

/* Dark mode icon enhancements */
[data-theme="dark"] .installation-icon {
  background: linear-gradient(135deg, #3B82F6, #1E40AF);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4), 0 0 20px rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .installation-card.featured .installation-icon {
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4), 0 0 20px rgba(245, 158, 11, 0.2);
}

/* Dark mode button glow */
[data-theme="dark"] .installation-btn {
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4), 0 0 15px rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .installation-btn:hover {
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6), 0 0 20px rgba(59, 130, 246, 0.3);
}

[data-theme="dark"] .installation-btn.featured {
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4), 0 0 15px rgba(245, 158, 11, 0.2);
}

[data-theme="dark"] .installation-btn.featured:hover {
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.6), 0 0 20px rgba(245, 158, 11, 0.3);
}

/* Additional dark mode overrides with higher specificity */
html[data-theme="dark"] .installation-services .installation-card {
  background: linear-gradient(135deg, #1E293B, #334155) !important;
  border: 1px solid rgba(96, 165, 250, 0.3) !important;
  color: #CBD5E1 !important;
}

html[data-theme="dark"] .installation-services .installation-card .installation-title {
  color: #FFFFFF !important;
}

html[data-theme="dark"] .installation-services .installation-card .installation-subtitle {
  color: #CBD5E1 !important;
}

html[data-theme="dark"] .installation-services .installation-card .installation-price {
  color: #60A5FA !important;
}

html[data-theme="dark"] .installation-services .installation-card .category-title {
  color: #FFFFFF !important;
}

html[data-theme="dark"] .installation-services .installation-card .feature-item span {
  color: #CBD5E1 !important;
}

html[data-theme="dark"] .installation-services .installation-card.featured {
  background: linear-gradient(135deg, #1E293B, #334155) !important;
  border: 2px solid #60A5FA !important;
}







.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-16);
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: var(--bg-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 2px solid var(--border-light);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(16, 185, 129, 0.02));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.pricing-card.featured {
  border-color: #ff6b35;
  background: linear-gradient(135deg, #fff 0%, #fff8f6 100%);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: var(--space-6);
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border-light);
}

.plan-name {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.plan-subtitle {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.original-price {
  font-size: var(--text-lg);
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.current-price {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-color);
}

.pricing-card.featured .current-price {
  color: #ff6b35;
}

.features-list {
  margin-bottom: var(--space-8);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.feature-item:hover {
  background: var(--bg-secondary);
}

.feature-item i {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item.included i {
  background: var(--secondary-color);
  color: white;
}

.feature-item.excluded i {
  background: var(--error-color);
  color: white;
}

.feature-item.partial i {
  background: var(--warning-color);
  color: white;
}

.feature-item span {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
}

.feature-item.included span {
  color: var(--text-primary);
}

.feature-item.excluded span {
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.pricing-btn {
  width: 100%;
  padding: var(--space-4) var(--space-6);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.pricing-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.featured-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.featured-btn:hover {
  background: linear-gradient(135deg, #e55a2b, #e8851a);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Additional Services */
.additional-services {
  margin-top: var(--space-20);
  padding-top: var(--space-16);
  border-top: 1px solid var(--border-light);
  position: relative;
  z-index: 1;
}

.services-title {
  text-align: center;
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-12);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}

.service-item {
  text-align: center;
  padding: var(--space-6);
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.service-item i {
  font-size: var(--text-3xl);
  color: var(--primary-color);
  margin-bottom: var(--space-4);
  display: block;
}

.service-item h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.service-item p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* Responsive Design for Installation Services */
@media (max-width: 1200px) {
  .installation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .installation-card.featured {
    transform: none;
  }

  .installation-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .installation-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding: 0 var(--space-4);
  }

  .installation-card {
    padding: var(--space-6);
  }

  .installation-card.featured {
    transform: none;
  }

  .installation-icon {
    width: 60px;
    height: 60px;
  }

  .installation-icon i {
    font-size: var(--text-2xl);
  }

  .installation-title {
    font-size: var(--text-xl);
  }

  .installation-price {
    font-size: var(--text-3xl);
  }

  .category-title {
    font-size: var(--text-base);
  }

  .installation-features .feature-item {
    font-size: var(--text-sm);
    padding: var(--space-1);
  }

  .installation-timeline {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-2);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .pricing-card {
    padding: var(--space-6);
  }

  .current-price {
    font-size: var(--text-3xl);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
  }

  .service-item {
    padding: var(--space-4);
  }
}

@media (max-width: 480px) {
  .installation-services {
    padding: var(--space-16) 0;
  }

  .pricing-card {
    padding: var(--space-4);
  }

  .current-price {
    font-size: var(--text-2xl);
  }

  .feature-item {
    margin-bottom: var(--space-3);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== COMPANY SECTION ===== */
.company {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Company Overview Enhancements */
.overview-intro {
  margin: var(--space-12) 0;
  text-align: center;
}

.overview-intro .lead-text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* Company Highlights */
.company-highlights {
  margin: var(--space-16) 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.highlight-card {
  background: var(--bg-primary);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  text-align: center;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.highlight-icon {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  display: block;
}

.highlight-content h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.highlight-content p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* Company Values */
.company-values {
  margin: var(--space-20) 0;
  padding: var(--space-16) 0;
  border-top: 1px solid var(--border-light);
}

.values-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-4);
}

.values-description {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: var(--space-12);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.value-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary-color);
}

.value-icon {
  font-size: var(--text-2xl);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-full);
  color: white;
  flex-shrink: 0;
}

.value-content h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.value-content p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* Company Achievements */
.company-achievements {
  margin: var(--space-20) 0;
  padding: var(--space-16) 0;
  border-top: 1px solid var(--border-light);
}

.achievements-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-4);
}

.achievements-description {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: var(--space-12);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-8);
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

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

.timeline-year {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-sm);
  min-width: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  padding: var(--space-6);
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  margin: 0 var(--space-6);
  transition: all var(--transition-normal);
}

.timeline-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.timeline-content h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.company-overview {
  margin-bottom: var(--space-20);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-top: var(--space-16);
}

.overview-text h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.overview-text p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-6);
  max-width: 100%;
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: var(--space-6);
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  overflow: hidden;
  min-width: 0;
  flex: 1;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-color);
  margin-bottom: var(--space-2);
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: var(--leading-tight);
}

.stat-label {
  color: var(--text-secondary);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-sm);
}

/* ===== MODERN ABOUT SECTION ===== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-bottom: var(--space-20);
}

.about-content {
  max-width: 100%;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--primary-color);
  margin-bottom: var(--space-6);
}

.badge-icon {
  font-size: var(--text-lg);
}

.about-title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--font-weight-extrabold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  margin-bottom: var(--space-8);
}

.lead-text {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  font-weight: var(--font-weight-medium);
}

.secondary-text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: var(--text-2xl);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), #3B82F6);
  border-radius: var(--radius-xl);
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.feature-content p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.about-visual {
  position: relative;
}

.visual-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: var(--space-8);
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

.visual-overlay {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-8);
  right: var(--space-8);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-content h4 {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.overlay-content p {
  font-size: var(--text-base);
  color: var(--text-secondary);
}

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

.overview-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
}

/* ===== ENHANCED STATS SECTION ===== */
.stats-showcase {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(59, 130, 246, 0.05));
  border-radius: var(--radius-3xl);
  padding: var(--space-16);
  margin-bottom: var(--space-16);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.stats-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.stats-header h3 {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.stats-header p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.stat-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), #3B82F6);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.stat-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  display: block;
}

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

.stat-card .stat-number {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-color);
  margin-bottom: var(--space-2);
  display: block;
  line-height: 1;
}

.stat-card .stat-label {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  display: block;
}

.stat-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ===== DARK MODE ABOUT SECTION ===== */
[data-theme="dark"] .about-badge {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
  border-color: rgba(59, 130, 246, 0.3);
  color: #60A5FA;
}

[data-theme="dark"] .about-title {
  color: #FFFFFF;
}

[data-theme="dark"] .gradient-text {
  background: linear-gradient(135deg, #60A5FA, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .lead-text {
  color: #E2E8F0;
}

[data-theme="dark"] .secondary-text {
  color: #94A3B8;
}

[data-theme="dark"] .feature-item {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .feature-item:hover {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .feature-content h4 {
  color: #FFFFFF;
}

[data-theme="dark"] .feature-content p {
  color: #94A3B8;
}

[data-theme="dark"] .visual-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
  border-color: rgba(59, 130, 246, 0.3);
}

[data-theme="dark"] .visual-overlay {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .overlay-content h4 {
  color: #FFFFFF;
}

[data-theme="dark"] .overlay-content p {
  color: #94A3B8;
}

[data-theme="dark"] .stats-showcase {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
  border-color: rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .stats-header h3 {
  color: #FFFFFF;
}

[data-theme="dark"] .stats-header p {
  color: #94A3B8;
}

[data-theme="dark"] .stat-card {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .stat-card:hover {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .stat-card .stat-number {
  color: #60A5FA;
}

[data-theme="dark"] .stat-card .stat-label {
  color: #FFFFFF;
}

[data-theme="dark"] .stat-description {
  color: #94A3B8;
}

/* Mission, Vision, Impact */
.mission-vision-impact {
  margin: var(--space-20) 0;
  padding: var(--space-16) 0;
  border-top: 1px solid var(--border-light);
}

.mvi-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-4);
}

.mvi-description {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: var(--space-12);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.modern-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(20px);
  padding: var(--space-10);
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

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

.card-background-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(99,102,241,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
  opacity: 0.3;
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mission-icon {
  background: linear-gradient(135deg, #3B82F6, #1E40AF);
}

.vision-icon {
  background: linear-gradient(135deg, #10B981, #059669);
}

.card-icon i {
  font-size: var(--text-3xl);
  color: white;
}

.modern-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-content h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.card-content .lead-text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.mission-points,
.vision-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.point-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: rgba(99, 102, 241, 0.05);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.point-item:hover {
  background: rgba(99, 102, 241, 0.1);
  border-left-color: var(--primary-color);
  transform: translateX(5px);
}

.point-item i {
  color: var(--primary-color);
  font-size: var(--text-base);
  width: 20px;
  flex-shrink: 0;
}

.point-item span {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

/* Impact Metrics */
.impact-metrics {
  margin-top: var(--space-16);
  padding-top: var(--space-16);
  border-top: 1px solid var(--border-light);
}

.impact-title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--space-8);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}

.metric-item {
  text-align: center;
  padding: var(--space-6);
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.metric-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.metric-number {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-color);
  margin-bottom: var(--space-2);
}

.metric-label {
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.metric-description {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

/* Team Section */
.team-section {
  margin-bottom: var(--space-20);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.team-member {
  background: var(--bg-primary);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.member-image {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.team-member:hover .member-overlay {
  opacity: 1;
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.social-links {
  display: flex;
  gap: var(--space-4);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.member-info {
  padding: var(--space-6);
}

.member-info h4 {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.member-role {
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

.member-bio {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* Culture Section */
.culture-section {
  background: var(--bg-secondary);
  padding: var(--space-16);
  border-radius: var(--radius-2xl);
  margin-top: var(--space-16);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.culture-item {
  background: var(--bg-primary);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all var(--transition-normal);
}

.culture-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.culture-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  transition: all var(--transition-normal);
}

.culture-item:hover .culture-icon {
  transform: scale(1.1) rotate(5deg);
}

.culture-icon i {
  font-size: var(--text-lg);
  color: white;
}

.culture-item h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.culture-item p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* ===== GET STARTED SECTION ===== */
.get-started.modern-cta {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.cta-shape-1,
.cta-shape-2,
.cta-shape-3 {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

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

.cta-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.cta-shape-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 30%;
  animation-delay: 4s;
}

.wave-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="rgba(255,255,255,0.1)"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="rgba(255,255,255,0.1)"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: cover;
  opacity: 0.3;
}

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

.get-started-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-badge .badge-icon {
  font-size: var(--text-base);
}

.cta-badge .badge-text {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.9);
}

.cta-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
}

.cta-description {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
}

.get-started .section-title {
  color: white;
  text-align: left;
  margin-bottom: var(--space-4);
}

.get-started .section-description {
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  margin-bottom: var(--space-8);
  font-size: var(--text-lg);
}

.get-started-steps {
  margin-bottom: var(--space-8);
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: white;
  color: var(--primary-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.step-content h4 {
  color: white;
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-2);
}

.step-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.modern-cta-buttons {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-2xl);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 2px solid transparent;
  min-width: 200px;
}

.btn-cta .btn-content {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  position: relative;
  z-index: 2;
}

.btn-cta .btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-cta:hover .btn-glow {
  transform: translateX(100%);
}

.primary-cta {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.secondary-cta {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-cta:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.trust-indicators {
  display: flex;
  gap: var(--space-6);
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--space-6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
}

.trust-item i {
  color: #4ADE80;
  font-size: var(--text-base);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.get-started-image {
  text-align: center;
  position: relative;
}

.get-started-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--space-6);
  color: var(--text-primary);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.section-description {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.subtitle-text {
  color: var(--text-secondary);
  font-weight: var(--font-weight-normal);
}

.section-description {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== MODERN PRODUCTS SECTION ===== */
.products-section {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  width: 100%;
}

.products-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  width: 100%;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="product-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(99,102,241,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23product-grid)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

/* Featured Product */
.featured-product {
  margin-bottom: var(--space-16);
  width: 100%;
}

.product-card.featured {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-3xl);
  padding: var(--space-10);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-10);
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  max-width: none;
}

.product-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card.featured:hover::before {
  opacity: 1;
}

.product-card.featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.featured-badge {
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  z-index: 2;
}

.product-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.featured-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  color: white;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.product-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin: 0;
}

.product-tagline {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin: var(--space-1) 0 0 0;
}

.product-description {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  font-size: var(--text-lg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.feature-item i {
  color: var(--success-color);
  font-size: var(--text-sm);
}

.product-actions {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

/* Mobile App Badges */
.mobile-app-badges {
  margin: var(--space-8) 0;
  padding: var(--space-6);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.badges-title {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  text-align: center;
}

.badges-container {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.app-badge {
  display: block;
  transition: all 0.3s ease;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.app-badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.app-badge img {
  height: 60px;
  width: auto;
  display: block;
}

/* Product Visual/Mockup */
.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
  flex-shrink: 0;
}

.product-mockup {
  width: 280px;
  height: 200px;
  background: linear-gradient(135deg, #1F2937, #374151);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.mockup-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  overflow: hidden;
}

.mockup-header {
  height: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-2);
}

.mockup-chart {
  height: 60px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2);
  position: relative;
}

.mockup-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 30%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.mockup-stats {
  display: flex;
  gap: var(--space-2);
}

.stat-item {
  flex: 1;
  height: 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.product-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  position: relative;
}

.product-icon i {
  font-size: var(--text-3xl);
  color: white;
}

.product-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #3B82F6, #1E40AF);
  color: white;
}

.product-card .product-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.product-card .product-description {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.product-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.highlight-item i {
  color: var(--primary-color);
  font-size: var(--text-base);
  width: 20px;
}

.product-action {
  margin-top: auto;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-lg);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .product-card.featured {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
    padding: var(--space-8);
  }

  .product-visual {
    order: -1;
    min-width: auto;
  }

  .product-mockup {
    width: 240px;
    height: 170px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Dark Theme Product Styles */
[data-theme="dark"] .product-card.featured {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.9));
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .product-card {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

[data-theme="dark"] .mockup-screen {
  background: var(--bg-tertiary);
}

[data-theme="dark"] .stat-item {
  background: var(--bg-tertiary);
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
  padding: var(--space-20) 0;
  background: var(--bg-secondary);
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
}

.why-choose-text .section-title {
  text-align: left;
  margin-bottom: var(--space-8);
}

.highlight-word {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--font-weight-extrabold);
  position: relative;
}

.highlight-word::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: var(--radius-full);
  opacity: 0.3;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.feature-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: var(--text-xl);
  color: white;
}

.feature-content h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.feature-content p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ===== RESOURCES SECTION ===== */
.resources {
  padding: var(--space-20) 0;
  background: var(--bg-primary);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.resource-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.resource-card:hover::before {
  transform: scaleX(1);
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.resource-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-secondary);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  transition: all var(--transition-fast);
}

.resource-card:hover .resource-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.resource-icon i {
  font-size: var(--text-2xl);
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.resource-card:hover .resource-icon i {
  color: white;
}

.resource-title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.resource-description {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.resource-link:hover {
  color: var(--primary-dark);
  gap: var(--space-3);
}

.resource-link i {
  font-size: var(--text-sm);
  transition: transform var(--transition-fast);
}

.resource-link:hover i {
  transform: translateX(4px);
}

/* Contact section removed - redirected to support.mightyschool.xyz */

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: var(--text-inverse);
  padding: var(--space-20) 0 var(--space-8);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-dots)"/></svg>');
  opacity: 0.3;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
}

.footer-logo i {
  font-size: var(--text-2xl);
  color: var(--primary-color);
}

.footer-logo-image {
  height: 32px;
  width: auto;
  transition: all var(--transition-fast);
  filter: brightness(1.1) contrast(1.1);
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Dark mode footer logo */
[data-theme="dark"] .footer-logo-image {
  filter: brightness(1.3) contrast(1.2) saturate(1.1) !important;
}

/* Ensure footer logo is always visible */
.footer-logo img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* SVG footer logo specific styles */
.footer-logo img[src*=".svg"] {
  filter: brightness(1) contrast(1) !important;
}

[data-theme="dark"] .footer-logo img[src*=".svg"] {
  filter: brightness(1.2) contrast(1.1) saturate(1.1) !important;
}

[data-theme="dark"] .footer-logo span {
  color: #FFFFFF !important;
}

.footer-description {
  color: var(--gray-400);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.social-links {
  display: flex;
  gap: var(--space-4);
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link i {
  position: relative;
  z-index: 2;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
  color: white;
}

.social-link:hover::before {
  opacity: 1;
}

.footer-title {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-4);
  color: white;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-400);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: var(--space-20) 0;
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
}

.service-card {
  background: var(--bg-primary);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}

.service-icon i {
  font-size: var(--text-3xl);
  color: var(--text-inverse);
}

.service-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-4);
}

.service-description {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
}

.service-features i {
  color: var(--success-color);
  font-size: var(--text-sm);
}

/* ===== PRODUCTS SECTION ===== */
.products {
  padding: var(--space-20) 0;
  background: var(--bg-secondary);
}

.products-grid {
  display: grid;
  gap: var(--space-8);
  justify-items: center;
}

.product-card {
  background: var(--bg-primary);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  max-width: 600px;
  width: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

/* Removed duplicate featured product styles */

.product-image {
  position: relative;
  height: 250px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--accent-color);
  color: var(--text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
}

.product-content {
  padding: var(--space-8);
}

.product-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-4);
}

.product-description {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  line-height: var(--leading-relaxed);
}

.product-features {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
}

.product-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: var(--space-16) 0 var(--space-8);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-logo img {
  width: auto;
  height: 32px;
  filter: brightness(1.1) contrast(1.1);
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Dark mode footer logo in mobile */
[data-theme="dark"] .footer-logo img {
  filter: brightness(1.2) contrast(1.1) saturate(1.1) !important;
}

.footer-logo span {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
}

.footer-description {
  color: var(--gray-400);
  line-height: var(--leading-relaxed);
}

.footer-title {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-4);
  color: var(--text-inverse);
}

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

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-inverse);
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--gray-400);
}

.contact-item i {
  color: var(--primary-color);
  width: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-700);
  color: var(--gray-400);
}

.social-links {
  display: flex;
  gap: var(--space-4);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gray-700);
  color: var(--gray-400);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--text-inverse);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Mobile navbar adjustments */
  .navbar {
    width: 100%;
    top: 0;
    padding: var(--space-3) 0;
  }

  .navbar.scrolled {
    padding: var(--space-2) 0;
  }

  .nav-container {
    padding: 0 var(--space-4) !important;
  }

  /* Mobile logo adjustments */
  .logo-image {
    height: 36px !important;
  }

  .logo-text {
    font-size: var(--text-lg) !important;
  }

  /* Mobile theme toggle */
  .theme-toggle {
    width: 40px !important;
    height: 40px !important;
    font-size: var(--text-sm) !important;
  }

  body {
    margin-top: 0;
  }

  .hero-with-nav {
    padding-top: 70px; /* Mobile navbar height */
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: var(--space-6) 0;
    z-index: 999;
    gap: var(--space-1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    padding: var(--space-3) var(--space-6);
    margin: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    background: rgba(59, 130, 246, 0.1);
    color: #1E293B;
    font-weight: var(--font-weight-medium);
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(59, 130, 246, 0.2);
    color: #1E40AF;
    transform: scale(1.02);
  }

  .nav-actions {
    position: fixed;
    left: -100%;
    top: 280px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: var(--space-4) 0 var(--space-6);
    z-index: 999;
    gap: var(--space-3);
  }

  .nav-actions.active {
    left: 0;
  }

  .theme-toggle {
    margin: 0 auto;
    width: 44px;
    height: 44px;
  }

  .hamburger {
    display: flex;
    width: 44px;
    height: 44px;
    padding: var(--space-2);
    justify-content: center;
    align-items: center;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

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

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



  [data-theme="dark"] .nav-menu {
    background: rgba(15, 23, 42, 0.98) !important;
    border-top-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
  }

  /* Mobile Hero Styles */
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: var(--leading-tight);
  }

  .hero-content {
    padding: var(--space-16) 0 var(--space-12);
  }

  .hero-subtitle {
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
  }

  .hero-cta {
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-features {
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
  }

  .feature-item {
    justify-content: center;
  }

  .floating-shape {
    display: none;
  }

  .hero-badge {
    margin-bottom: var(--space-4);
  }

  /* Mobile theme notification */
  .theme-notification {
    right: var(--space-4);
    top: 80px;
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-3);
  }

  /* Mobile Products Section */
  .product-card.featured {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding: var(--space-6);
    text-align: center;
    margin: 0 var(--space-4);
  }

  .product-visual {
    order: -1;
    min-width: auto;
  }

  .product-mockup {
    width: 200px;
    height: 140px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .product-actions {
    flex-direction: column;
    gap: var(--space-3);
  }

  .mobile-app-badges {
    margin: var(--space-6) 0;
    padding: var(--space-4);
  }

  .badges-container {
    gap: var(--space-3);
  }

  .app-badge img {
    height: 50px;
  }

  .product-header {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }

  .featured-icon {
    margin: 0 auto;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .product-card {
    padding: var(--space-6);
  }

  .product-highlights {
    gap: var(--space-2);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Company overview responsive styles */
  .highlight-grid,
  .values-grid,
  .mission-vision-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 60px;
  }

  .timeline-year {
    position: absolute;
    left: 0;
    min-width: 60px;
  }

  .timeline-content {
    margin-left: var(--space-4);
    margin-right: 0;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .card-content .lead-text {
    font-size: var(--text-sm);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .nav-btn {
    margin: var(--space-2) var(--space-4);
    justify-content: center;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .why-choose-text .section-title {
    text-align: center;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .resource-card {
    padding: var(--space-6);
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .contact-form {
    padding: var(--space-6);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  /* New sections mobile styles */
  .solutions-grid,
  .mvi-grid,
  .team-grid,
  .culture-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .overview-content,
  .get-started-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .overview-content {
    grid-template-areas:
      "image"
      "text";
  }

  .overview-text {
    grid-area: text;
  }

  .overview-image {
    grid-area: image;
  }

  .company-stats {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .modern-cta-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
  }

  .btn-cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .trust-indicators {
    justify-content: center;
    gap: var(--space-4);
  }

  .cta-title {
    font-size: var(--text-4xl);
  }

  .cta-description {
    font-size: var(--text-lg);
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }

  .step-item:hover {
    transform: translateY(-4px);
  }

  .member-image {
    height: 240px;
  }

  .culture-section {
    padding: var(--space-8);
  }
}
