/* HostingPro - Premium Web Hosting Template */

/* CSS Variables */
:root {
  /* Colors */
  --primary-gradient: linear-gradient(135deg, #804295 0%, #7c72a0 25%, #9b59b6 75%, #f39c12 100%);
  --primary-color: #804295;
  --secondary-color: #7c72a0;
  --accent-color: #9b59b6;
  --warning-color: #f39c12;
  --success-color: #27ae60;
  --danger-color: #e74c3c;
  --info-color: #3498db;
  
  /* Light Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --text-primary: #2c3e50;
  --text-secondary: #6c757d;
  --text-muted: #adb5bd;
  --border-color: #dee2e6;
  --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Border Radius */
  --border-radius-sm: 0.375rem;
  --border-radius: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme */
[data-theme="dark"] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --bg-tertiary: #404040;
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --border-color: #404040;
  --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.4);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: var(--transition);
  overflow-x: hidden;
  max-width: 100vw;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

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

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  gap: 0.5rem;
  white-space: nowrap;
}

.btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.btn-primary {
  color: white;
  background: var(--primary-gradient);
  border: none;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  color: white;
  background: var(--primary-color);
}

.btn-secondary {
  color: var(--text-primary);
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
}

.btn-block {
  width: 100%;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(128, 66, 149, 0.1);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control.error {
  border-color: var(--danger-color);
}

/* Password Toggle Button */
.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
  transition: var(--transition);
}

.password-toggle:hover {
  color: var(--primary-color);
}

/* Password Strength Indicator */
.password-strength {
  margin-top: 0.5rem;
}

.strength-bar {
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.strength-text {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  color: var(--text-muted);
}

/* Field Error Messages */
.field-error {
  color: var(--danger-color);
  font-size: var(--font-size-sm);
  margin-top: 0.25rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

[data-theme="dark"] .navbar {
  background: rgba(26, 26, 26, 0.95);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
  padding: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-brand i {
  font-size: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

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

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

.nav-link i {
  font-size: 0.75rem;
  transition: var(--transition);
}

/* SUBMENU FIXES - ADD THESE STYLES AT THE END OF style.css */

/* Fix desktop dropdown hover (overrides existing styles) */
@media (min-width: 769px) {
  /* Remove any mobile click behavior on desktop */
  .dropdown .nav-link {
    pointer-events: auto !important;
  }
  
  /* Ensure proper dropdown positioning and hover */
  .dropdown {
    position: relative;
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    max-height: none !important;
    padding: 8px 0 !important;
  }
  
  .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 220px !important;
    background: var(--bg-primary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-lg) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
    padding: 8px 0 !important;
    max-height: none !important;
  }
  
  /* Fix submenu hover and positioning */
  .dropdown-item-with-submenu:hover .dropdown-submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    max-height: none !important;
    padding: 8px 0 !important;
  }
  
  .dropdown-submenu {
    position: absolute !important;
    left: 100% !important;
    top: -8px !important;
    min-width: 200px !important;
    background: var(--bg-primary) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-lg) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-10px) !important;
    transition: all 0.3s ease !important;
    z-index: 1001 !important;
    padding: 8px 0 !important;
    max-height: none !important;
  }
}

/* Fix padding for ALL dropdown items with higher specificity */
.dropdown-menu a,
.dropdown-link,
.dropdown-submenu a {
  display: block !important;
  padding: 12px 20px !important;
  color: var(--text-secondary) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border: none !important;
  white-space: nowrap !important;
  background: transparent !important;
}

.dropdown-menu a:hover,
.dropdown-link:hover,
.dropdown-submenu a:hover {
  color: var(--primary-color) !important;
  background: var(--bg-secondary) !important;
  padding-left: 24px !important;
  text-decoration: none !important;
}

/* Fix submenu arrow positioning */
.submenu-arrow {
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
  transition: transform 0.3s ease !important;
  pointer-events: none !important;
}

@media (min-width: 769px) {
  .dropdown-item-with-submenu:hover .submenu-arrow {
    transform: translateY(-50%) rotate(90deg) !important;
  }
}

/* Mobile submenu fixes */
@media (max-width: 768px) {
  .dropdown-submenu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: var(--bg-tertiary) !important;
    margin: 0 !important;
    border-radius: var(--border-radius) !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease, padding 0.3s ease !important;
    padding: 0 !important;
  }
  
  .dropdown-item-with-submenu.active .dropdown-submenu {
    max-height: 300px !important;
    padding: 8px 0 !important;
  }
  
  .dropdown-submenu a {
    padding: 10px 16px 10px 32px !important;
    font-size: 0.9rem !important;
  }
  
  .dropdown-submenu a:hover {
    padding-left: 36px !important;
  }
  
  .submenu-arrow {
    position: static !important;
    transform: translateY(0) !important;
    margin-left: auto !important;
  }
  
  .dropdown-item-with-submenu.active .submenu-arrow {
    transform: rotate(90deg) !important;
  }
}

/* Desktop dropdown functionality */
@media (min-width: 769px) {
  .dropdown:hover .nav-link i {
    transform: rotate(180deg);
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-item-with-submenu:hover .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  
  .dropdown-item-with-submenu:hover .submenu-arrow {
    transform: translateY(-50%) rotate(90deg);
  }
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  color: var(--primary-color);
  background: var(--bg-secondary);
}

.dropdown-menu a i {
  margin-right: 0.5rem;
  width: 1rem;
}

/* Nested Dropdown Styles */
.dropdown-item-with-submenu {
  position: relative;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.dropdown-link:hover {
  color: var(--primary-color);
  background: var(--bg-secondary);
}

.submenu-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  transition: var(--transition);
}

.dropdown-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 200px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: var(--transition);
  z-index: 1001;
}

.dropdown-submenu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.dropdown-submenu a:last-child {
  border-bottom: none;
}

.dropdown-submenu a:hover {
  color: var(--primary-color);
  background: var(--bg-secondary);
}

.dropdown-submenu a i {
  margin-right: 0.5rem;
  width: 1rem;
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.theme-toggle:hover {
  background: var(--bg-tertiary);
  transform: scale(1.05);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
  
  /* Mobile dropdown toggle */
  .dropdown .nav-link {
    cursor: pointer;
    position: relative;
  }
  
  .dropdown .nav-link i {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
  }
  
  .dropdown.active .nav-link i {
    transform: rotate(180deg);
  }
  
  /* Mobile dropdown menu styles */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-secondary);
    margin: 0.5rem 0 0 0;
    border-radius: var(--border-radius);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
  }
  
  .dropdown-menu a:last-child {
    border-bottom: none;
  }
  
  .dropdown-menu a:hover,
  .dropdown-menu a:focus {
    color: var(--primary-color);
    background: var(--bg-tertiary);
  }
  
  /* Mobile nested dropdown styles */
  .dropdown-item-with-submenu {
    position: relative;
  }
  
  .dropdown-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
  }
  
  .dropdown-link:hover,
  .dropdown-link:focus {
    color: var(--primary-color);
    background: var(--bg-tertiary);
  }
  
  .submenu-arrow {
    position: static;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    margin-left: auto;
    transform: translateY(0);
  }
  
  .dropdown-item-with-submenu.active .submenu-arrow {
    transform: rotate(90deg);
  }
  
  .dropdown-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-tertiary);
    margin: 0;
    border-radius: var(--border-radius);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
  }
  
  .dropdown-item-with-submenu.active .dropdown-submenu {
    max-height: 300px;
    padding: 0.25rem 0;
  }
  
  .dropdown-submenu a {
    padding: 0.5rem 1rem 0.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
  }
  
  .dropdown-submenu a:last-child {
    border-bottom: none;
  }
  
  .dropdown-submenu a i {
    margin-right: 0.5rem;
    width: 1rem;
    color: var(--primary-color);
  }
  
  .mobile-toggle {
    display: flex;
  }
}

/* Touch device specific styles */
@media (hover: none) and (pointer: coarse) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-secondary);
    margin-top: 0.5rem;
    border-radius: var(--border-radius);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 500px;
  }
}

/* Accessibility improvements */
.dropdown[aria-expanded="true"] .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .dropdown[aria-expanded="true"] .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }
  
  .dropdown-item-with-submenu[aria-expanded="true"] .dropdown-submenu {
    max-height: 300px;
    padding: 0.25rem 0;
  }
}

/* Focus states for keyboard navigation */
.nav-link:focus,
.dropdown-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Loading state for mobile menu */
.nav-menu.loading {
  pointer-events: none;
  opacity: 0.6;
}

/* Enhanced Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  opacity: 0.1;
  z-index: 0;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.floating-shapes .shape {
  position: absolute;
  background: linear-gradient(135deg, rgba(128, 66, 149, 0.1), rgba(155, 89, 182, 0.1));
  border-radius: 50%;
  animation: float 15s infinite linear;
}

.floating-shapes .shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: -2s;
}

.floating-shapes .shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: -8s;
}

.floating-shapes .shape:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 40%;
  left: 70%;
  animation-delay: -4s;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

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

.hero-description {
  font-size: var(--font-size-xl);
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Live Metrics */
.live-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.metric-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

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

/* Security Badges */
.security-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.security-badge {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.security-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Technology Logos */
.tech-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0.7;
  padding: 2rem 0;
}

.tech-logo {
  font-size: 2rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.tech-logo:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Ticker Section */
.ticker-section {
  background: var(--bg-secondary);
  padding: 1rem 0;
  overflow: hidden;
}

.ticker-wrapper {
  overflow-x: hidden;
  white-space: nowrap;
  width: 100%;
}

.ticker-track {
  display: flex;
  animation: ticker 30s linear infinite;
  gap: 3rem;
  white-space: nowrap;
  overflow-x: hidden;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.ticker-item i {
  color: var(--primary-color);
}

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

/* Section Styles */
section {
  padding: var(--spacing-3xl) 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

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

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Performance Meter */
.performance-meter {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-circle {
  fill: transparent;
  stroke: var(--border-color);
  stroke-width: 4;
  stroke-dasharray: 251.2;
  stroke-dashoffset: 251.2;
  transition: stroke-dashoffset 1s ease;
}

.progress-ring-circle.animated {
  stroke: var(--primary-color);
  stroke-dashoffset: 25.12;
}

/* Data Centers */
.world-map-simple {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 300px;
    margin: 2rem auto;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--border-color);
    overflow: hidden;
}

/* Grid pattern overlay */
.world-map-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.data-center-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-simple 2s infinite;
    box-shadow: 0 4px 15px rgba(128, 66, 149, 0.4);
    z-index: 10;
}

.data-center-dot:hover {
    transform: scale(1.5);
    box-shadow: 0 8px 25px rgba(128, 66, 149, 0.6);
}

@keyframes pulse-simple {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(128, 66, 149, 0.4), 0 0 0 0 rgba(128, 66, 149, 0.7);
    }
    50% {
        box-shadow: 0 4px 15px rgba(128, 66, 149, 0.4), 0 0 0 10px rgba(128, 66, 149, 0);
    }
}

.data-center-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* Dark theme support */
[data-theme="dark"] .world-map-simple {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border-color: var(--border-color);
}

[data-theme="dark"] .world-map-simple::before {
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
}

/* Data Center Tooltips */
.data-center-tooltip {
  max-width: calc(100vw - 2rem);
  white-space: normal;
  word-wrap: break-word;
}

/* Pricing */
.pricing {
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  margin-bottom: 100px;
}

.pricing-card {
  position: relative;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: var(--font-size-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--text-secondary);
}

.amount {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.period {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.pricing-features i {
  color: var(--success-color);
  width: 1rem;
  flex-shrink: 0;
}

/* Pricing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  margin-bottom: 50px;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: var(--border-color);
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-switch.active {
  background: var(--primary-color);
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(30px);
}

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

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.roadmap-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

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

.roadmap-item:nth-child(odd) .roadmap-content {
  text-align: right;
  padding-right: 2rem;
}

.roadmap-item:nth-child(even) .roadmap-content {
  padding-left: 2rem;
}

.roadmap-marker {
  position: static;
  left: 50%;
  width: 1rem;
  height: 1rem;
  background: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: pulse 2s infinite;
}

.roadmap-item.completed .roadmap-marker {
  background: var(--success-color);
  border-color: var(--success-color);
}

.roadmap-item.current .roadmap-marker {
  background: var(--primary-color);
  border-color: var(--primary-color);
  animation: pulse 2s infinite;
}

.roadmap-content {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.roadmap-content h4 {
  color: var(--primary-color);
  font-size: var(--font-size-sm);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.roadmap-content h3 {
  margin-bottom: 0.5rem;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(128, 66, 149, 0.7); }
  50% { box-shadow: 0 0 0 10px rgba(128, 66, 149, 0); }
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

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

.member-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--border-color);
  position: relative;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--bg-secondary);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
}

.member-social a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Reviews */
.reviews {
  background: var(--bg-secondary);
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-stars i {
  color: var(--warning-color);
}

.review-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: var(--font-size-lg);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer h4 {
  margin-bottom: 0.25rem;
  font-size: var(--font-size-base);
}

.reviewer span {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* FAQ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: var(--bg-primary);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-question h3 {
  margin: 0;
  font-size: var(--font-size-lg);
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  background: var(--bg-secondary);
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  margin: 0;
}

/* Newsletter */
.newsletter {
  background: var(--primary-gradient);
  color: white;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-text h2 {
  color: white;
  margin-bottom: 0.5rem;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  min-width: 300px;
  flex: 1;
  max-width: 400px;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
}

.newsletter-form button {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-brand i {
  font-size: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-section ul li a i {
  width: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--bg-tertiary);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

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

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Enhanced Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
}

.chat-toggle {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.chat-toggle:hover {
  transform: scale(1.1);
}

.chat-window {
  position: absolute;
  bottom: 4rem;
  left: 0;
  width: 300px;
  height: 400px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: var(--primary-gradient);
  color: white;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.chat-header h4 {
  margin: 0;
  font-size: var(--font-size-base);
}

.chat-close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}

.chat-message {
  margin-bottom: 1rem;
}

.chat-message.bot {
  background: var(--bg-secondary);
  padding: 0.75rem;
  border-radius: var(--border-radius);
  margin-right: 2rem;
}

.chat-message.user {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  margin-left: 2rem;
  text-align: right;
}

.chat-message.typing {
  opacity: 0.7;
}

.chat-input {
  display: flex;
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  gap: 0.5rem;
}

.chat-input input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: var(--font-size-sm);
}

.chat-input button {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.chat-input button:hover {
  background: var(--accent-color);
}

/* Live Chat Preview */
.live-chat-preview {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  max-width: 250px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.live-chat-preview.show {
  opacity: 1;
  transform: translateY(0);
}

/* Auth Pages */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  padding: 2rem 1rem;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header .nav-brand {
  justify-content: center;
  margin-bottom: 1rem;
}

.auth-header h1 {
  font-size: var(--font-size-2xl);
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--text-secondary);
  margin: 0;
}

.auth-form {
  margin-bottom: 1.5rem;
}

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

.auth-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.auth-links a:hover {
  text-decoration: underline;
}

.divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: var(--text-muted);
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.divider span {
  padding: 0 1rem;
  font-size: var(--font-size-sm);
}

/* Lock Screen Specific Styles */
.lock-screen-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: -1;
}

.lock-screen-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.lock-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.lock-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-xl);
  padding: 3rem 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  text-align: center;
}

[data-theme="dark"] .lock-card {
  background: rgba(26, 26, 26, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
}

.lock-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

.lock-avatar::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.session-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--border-radius);
  padding: 1rem;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}

.countdown {
  font-weight: 600;
  color: var(--warning-color);
}

/* Hosting Pages */
.hosting-hero {
  background: var(--primary-gradient);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
}

.hosting-hero h1 {
  font-size: var(--font-size-4xl);
  margin-bottom: 1rem;
}

.hosting-hero p {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.hosting-features {
  padding: 4rem 0;
}

.hosting-comparison {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

.comparison-table {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: var(--bg-secondary);
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.text-success {
  color: var(--success-color);
}

.text-danger {
  color: var(--danger-color);
}

/* Domain Pages */
.domain-search {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

.search-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-form input {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
  font-size: var(--font-size-lg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.domain-results {
  margin-top: 2rem;
}

.domain-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.domain-item:hover {
  box-shadow: var(--shadow);
}

.domain-name {
  font-weight: 600;
  color: var(--text-primary);
}

.domain-price {
  color: var(--primary-color);
  font-weight: 700;
}

.domain-status {
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.domain-status.available {
  background: rgba(39, 174, 96, 0.1);
  color: var(--success-color);
}

.domain-status.taken {
  background: rgba(231, 76, 60, 0.1);
  color: var(--danger-color);
}

/* Loading spinner */
.loading-spinner {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: inherit;
}

[data-theme="dark"] .loading-overlay {
  background: rgba(26, 26, 26, 0.9);
}

/* Notification styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  transform: translateX(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 350px;
  min-width: 250px;
}

.notification-success {
  border-left-color: var(--success-color);
  border-left-width: 4px;
  color: var(--success-color);
}

.notification-error {
  border-left-color: var(--danger-color);
  border-left-width: 4px;
  color: var(--danger-color);
}

.notification-info {
  border-left-color: var(--info-color);
  border-left-width: 4px;
  color: var(--info-color);
}

.notification-warning {
  border-left-color: var(--warning-color);
  border-left-width: 4px;
  color: var(--warning-color);
}

/* Tooltip styles */
.tooltip {
  position: absolute;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Animation keyframes */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

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

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

.animate-in {
  animation: slideInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar .container {
    padding: 0.75rem 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .live-metrics {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .security-badges {
    gap: 0.5rem;
  }
  
  .tech-logos {
    gap: 1rem;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .roadmap-timeline::before {
    left: 1rem;
  }
  
  .roadmap-item {
    flex-direction: row !important;
    padding-left: 0;
  }
  
  .roadmap-item .roadmap-content {
    text-align: left !important;
    padding-left: 2.5rem !important;
    padding-right: 0 !important;
    width: calc(100% - 2.5rem);
  }
  
  .roadmap-marker {
    position: absolute;
    left: 1rem !important;
    transform: translateX(-50%);
    flex-shrink: 0;
  }
  
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-form {
    min-width: auto;
    max-width: none;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .search-form {
    flex-direction: column;
  }
  
  .search-form input {
    min-width: auto;
  }
  
  .domain-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .chat-window {
    width: calc(100vw - 4rem);
    max-width: 300px;
  }
  
  .live-chat-preview {
    right: 1rem;
    bottom: 120px;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  section {
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  /* Hero Actions Mobile Fix */
  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
  
  /* Security Badges Mobile Fix */
  .security-badges {
    justify-content: center;
    gap: 0.25rem;
  }
  
  .security-badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    min-width: 0;
    flex: 1;
    max-width: calc(50% - 0.25rem);
    text-align: center;
  }
  
  .security-badge span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  /* Tech Logos Mobile Fix */
  .tech-logos {
    gap: 0.75rem;
    justify-content: center;
    padding: 1rem 0;
  }
  
  .tech-logo {
    font-size: 1.25rem;
  }
  
  /* Pricing Cards Mobile Fix */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .pricing-card {
    margin: 0;
    max-width: 100%;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }
  
  /* Live Metrics Mobile Fix */
  .live-metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .metric-card {
    padding: 1rem;
  }
  
  /* Team Grid Mobile Fix */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Review Cards Mobile Fix */
  .reviews-slider {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Newsletter Form Mobile Fix */
  .newsletter-form {
    min-width: auto;
    width: 100%;
    flex-direction: column;
  }
  
  .newsletter-form input {
    min-width: auto;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  /* Chat Window Mobile Fix */
  .chat-window {
    width: calc(100vw - 2rem);
    max-width: 300px;
    left: 1rem;
    right: 1rem;
  }
  
  /* Pricing Toggle Mobile Fix */
  .pricing-toggle {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .back-to-top,
  .chat-widget {
    bottom: 1rem;
  }
  
  .back-to-top {
    right: 1rem;
  }
  
  .chat-widget {
    left: 1rem;
  }
  
  .auth-card {
    padding: 1.5rem;
  }
}

/* Extra Small Devices (320px and below) */
@media (max-width: 375px) {
  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .back-to-top,
  .chat-widget,
  .newsletter,
  .floating-shapes {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-none { display: none; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }

.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }

.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success-color); }
.text-danger { color: var(--danger-color); }
.text-warning { color: var(--warning-color); }
.text-info { color: var(--info-color); }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-success { background-color: var(--success-color); }
.bg-danger { background-color: var(--danger-color); }
.bg-warning { background-color: var(--warning-color); }
.bg-info { background-color: var(--info-color); }

.border { border: 1px solid var(--border-color); }
.border-top { border-top: 1px solid var(--border-color); }
.border-bottom { border-bottom: 1px solid var(--border-color); }
.border-left { border-left: 1px solid var(--border-color); }
.border-right { border-right: 1px solid var(--border-color); }

.rounded { border-radius: var(--border-radius); }
.rounded-sm { border-radius: var(--border-radius-sm); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-xl { border-radius: var(--border-radius-xl); }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Focus Visible */
*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .floating-shapes,
  .ticker-track {
    animation: none !important;
  }
}