/* Enwave Tech - Core Styles */
/*@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");*/

/* CSS Custom Properties */
/*:root {*/
  /* Colors - Light Theme */
/*  --color-primary: #6d28d9;*/
/*  --color-primary-light: #7c3aed;*/
/*  --color-primary-lighter: #a78bfa;*/
/*  --color-accent: #0ea5e9;*/
/*  --color-background: #ffffff;*/
/*  --color-surface: #f9fafb;*/
/*  --color-surface-elevated: #ffffff;*/
/*  --color-text-primary: #111827;*/
/*  --color-text-secondary: #6b7280;*/
/*  --color-text-muted: #9ca3af;*/
/*  --color-border: #e5e7eb;*/
/*  --color-border-light: #f3f4f6;*/

  /* Dark Theme Colors */
/*  --color-dark-background: #0f0f23;*/
/*  --color-dark-surface: #1a1a2e;*/
/*  --color-dark-surface-elevated: #16213e;*/
/*  --color-dark-text-primary: #f9fafb;*/
/*  --color-dark-text-secondary: #d1d5db;*/
/*  --color-dark-text-muted: #9ca3af;*/
/*  --color-dark-border: #374151;*/
/*  --color-dark-border-light: #4b5563;*/

  /* Typography */
/*  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;*/
/*  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;*/

  /* Spacing */
/*  --space-xs: 0.25rem;*/
/*  --space-sm: 0.5rem;*/
/*  --space-md: 1rem;*/
/*  --space-lg: 1.5rem;*/
/*  --space-xl: 2rem;*/
/*  --space-2xl: 3rem;*/
/*  --space-3xl: 4rem;*/
/*  --space-4xl: 6rem;*/

  /* Border Radius */
/*  --radius-sm: 0.375rem;*/
/*  --radius-md: 0.5rem;*/
/*  --radius-lg: 0.75rem;*/
/*  --radius-xl: 1rem;*/

  /* Shadows */
/*  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);*/
/*  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);*/
/*  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);*/
/*  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);*/

  /* Transitions */
/*  --transition-fast: 150ms ease-in-out;*/
/*  --transition-normal: 250ms ease-in-out;*/
/*  --transition-slow: 350ms ease-in-out;*/

  /* Animation Colors */
/*  --color-surface-hover: #f3f4f6;*/
/*}*/

/* Dark Theme */
/*[data-theme="dark"] {*/
/*  --color-background: var(--color-dark-background);*/
/*  --color-surface: var(--color-dark-surface);*/
/*  --color-surface-elevated: var(--color-dark-surface-elevated);*/
/*  --color-text-primary: var(--color-dark-text-primary);*/
/*  --color-text-secondary: var(--color-dark-text-secondary);*/
/*  --color-text-muted: var(--color-dark-text-muted);*/
/*  --color-border: var(--color-dark-border);*/
/*  --color-border-light: var(--color-dark-border-light);*/
/*}*/

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

/*html {*/
/*  scroll-behavior: smooth;*/
/*  font-size: 16px;*/
/*}*/

/*body {*/
/*  font-family: var(--font-sans);*/
/*  font-weight: 400;*/
/*  line-height: 1.6;*/
/*  color: var(--color-text-primary);*/
/*  background-color: var(--color-background);*/
/*  transition: background-color var(--transition-normal), color var(--transition-normal);*/
/*  -webkit-font-smoothing: antialiased;*/
/*  -moz-osx-font-smoothing: grayscale;*/
/*}*/

/* Typography */
/*h1,*/
/*h2,*/
/*h3,*/
/*h4,*/
/*h5,*/
/*h6 {*/
/*  font-family: var(--font-display);*/
/*  font-weight: 600;*/
/*  line-height: 1.2;*/
/*  color: var(--color-text-primary);*/
/*  margin-bottom: var(--space-md);*/
/*}*/

/*h1 {*/
/*  font-size: clamp(2.5rem, 5vw, 4rem);*/
/*  font-weight: 700;*/
/*  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-lighter) 100%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  background-clip: text;*/
/*}*/

/*h2 {*/
/*  font-size: clamp(2rem, 4vw, 3rem);*/
/*}*/

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

/*h4 {*/
/*  font-size: 1.25rem;*/
/*}*/

/*p {*/
/*  margin-bottom: var(--space-md);*/
/*  color: var(--color-text-secondary);*/
/*}*/

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

/*a:hover {*/
/*  color: var(--color-primary-light);*/
/*}*/

/* Layout */
/*.container {*/
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
/*  padding: 0 var(--space-lg);*/
/*}*/

/*.container-wide {*/
/*  max-width: 1400px;*/
/*  margin: 0 auto;*/
/*  padding: 0 var(--space-lg);*/
/*}*/

/*.section {*/
/*  padding: var(--space-4xl) 0;*/
/*}*/

/*.section-sm {*/
/*  padding: var(--space-2xl) 0;*/
/*}*/

/* Grid System */
/*.grid {*/
/*  display: grid;*/
/*  gap: var(--space-xl);*/
/*}*/

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

/*.grid-3 {*/
/*  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
/*}*/

/*.grid-4 {*/
/*  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
/*}*/

/* Flexbox Utilities */
/*.flex {*/
/*  display: flex;*/
/*}*/

/*.flex-col {*/
/*  flex-direction: column;*/
/*}*/

/*.items-center {*/
/*  align-items: center;*/
/*}*/

/*.justify-center {*/
/*  justify-content: center;*/
/*}*/

/*.justify-between {*/
/*  justify-content: space-between;*/
/*}*/

/*.gap-sm {*/
/*  gap: var(--space-sm);*/
/*}*/

/*.gap-md {*/
/*  gap: var(--space-md);*/
/*}*/

/*.gap-lg {*/
/*  gap: var(--space-lg);*/
/*}*/

/*.gap-xl {*/
/*  gap: var(--space-xl);*/
/*}*/

/* Buttons */
/*.btn {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  gap: var(--space-sm);*/
/*  padding: var(--space-md) var(--space-xl);*/
/*  font-family: var(--font-sans);*/
/*  font-weight: 500;*/
/*  font-size: 0.875rem;*/
/*  line-height: 1;*/
/*  border: none;*/
/*  border-radius: var(--radius-md);*/
/*  cursor: pointer;*/
/*  transition: all var(--transition-normal);*/
/*  text-decoration: none;*/
/*  white-space: nowrap;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*}*/

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

/*.btn-primary {*/
/*  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);*/
/*  color: white;*/
/*  box-shadow: var(--shadow-md);*/
/*}*/

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

/*.btn-primary:active {*/
/*  transform: translateY(0);*/
/*}*/

/*.btn-primary.loading {*/
/*  pointer-events: none;*/
/*  opacity: 0.7;*/
/*}*/

/*.btn-primary.loading::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  margin: -8px 0 0 -8px;*/
/*  border: 2px solid transparent;*/
/*  border-top: 2px solid currentColor;*/
/*  border-radius: 50%;*/
/*  animation: spin 1s linear infinite;*/
/*}*/

/*.btn-secondary {*/
/*  background-color: var(--color-surface-elevated);*/
/*  color: var(--color-text-primary);*/
/*  border: 1px solid var(--color-border);*/
/*}*/

/*.btn-secondary:hover {*/
/*  background-color: var(--color-surface);*/
/*  border-color: var(--color-primary);*/
/*}*/

/*.btn-secondary:active {*/
/*  transform: translateY(0);*/
/*}*/

/*.btn-secondary.loading {*/
/*  pointer-events: none;*/
/*  opacity: 0.7;*/
/*}*/

/*.btn-secondary.loading::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  margin: -8px 0 0 -8px;*/
/*  border: 2px solid transparent;*/
/*  border-top: 2px solid currentColor;*/
/*  border-radius: 50%;*/
/*  animation: spin 1s linear infinite;*/
/*}*/

/*.btn-ghost {*/
/*  background-color: transparent;*/
/*  color: var(--color-text-secondary);*/
/*}*/

/*.btn-ghost:hover {*/
/*  background-color: var(--color-surface);*/
/*  color: var(--color-text-primary);*/
/*}*/

/*.btn-ghost:active {*/
/*  transform: translateY(0);*/
/*}*/

/*.btn-ghost.loading {*/
/*  pointer-events: none;*/
/*  opacity: 0.7;*/
/*}*/

/*.btn-ghost.loading::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  margin: -8px 0 0 -8px;*/
/*  border: 2px solid transparent;*/
/*  border-top: 2px solid currentColor;*/
/*  border-radius: 50%;*/
/*  animation: spin 1s linear infinite;*/
/*}*/

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

/* Cards */
/*.card {*/
/*  background-color: var(--color-surface-elevated);*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-lg);*/
/*  padding: var(--space-xl);*/
/*  box-shadow: var(--shadow-sm);*/
/*  transition: all var(--transition-normal);*/
/*  transform: translateY(0);*/
/*}*/

/*.card:hover {*/
/*  transform: translateY(-4px);*/
/*  box-shadow: var(--shadow-lg);*/
/*  border-color: var(--color-primary-lighter);*/
/*}*/

/*.card-glass {*/
/*  background: rgba(255, 255, 255, 0.1);*/
/*  backdrop-filter: blur(10px);*/
/*  border: 1px solid rgba(255, 255, 255, 0.2);*/
/*}*/

/*[data-theme="dark"] .card-glass {*/
/*  background: rgba(26, 26, 46, 0.6);*/
/*  border: 1px solid rgba(167, 139, 250, 0.2);*/
/*}*/

/*.feature-card,*/
/*.pricing-card,*/
/*.testimonial-card {*/
/*  transition: all var(--transition-normal);*/
/*  transform: translateY(0);*/
/*}*/

/*.feature-card:hover,*/
/*.pricing-card:hover,*/
/*.testimonial-card:hover {*/
/*  transform: translateY(-8px);*/
/*  box-shadow: var(--shadow-xl);*/
/*}*/

/* Header */
/*.header {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  z-index: 1000;*/
/*  background: rgba(255, 255, 255, 0.8);*/
/*  backdrop-filter: blur(10px);*/
/*  border-bottom: 1px solid var(--color-border-light);*/
/*  transition: all var(--transition-normal);*/
/*}*/

/*[data-theme="dark"] .header {*/
/*  background: rgba(15, 15, 35, 0.8);*/
/*  border-bottom-color: var(--color-border);*/
/*}*/

/*.header.scrolled {*/
/*  background: var(--color-surface-elevated);*/
/*  box-shadow: var(--shadow-md);*/
/*}*/

/*.header-content {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  padding: var(--space-md) 0;*/
/*  min-height: 70px;*/
/*}*/

/*.logo {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-sm);*/
/*  font-family: var(--font-display);*/
/*  font-weight: 600;*/
/*  font-size: 1.25rem;*/
/*  color: var(--color-text-primary);*/
/*  text-decoration: none;*/
/*}*/

/*.logo svg {*/
/*  width: 32px;*/
/*  height: 32px;*/
/*  transition: transform var(--transition-fast);*/
/*}*/

/*.logo:hover svg {*/
/*  transform: scale(1.05);*/
/*}*/

/*.nav {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-xl);*/
/*}*/

/*.nav-links {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-lg);*/
/*  list-style: none;*/
/*}*/

/*.nav-link {*/
/*  color: var(--color-text-secondary);*/
/*  font-weight: 500;*/
/*  transition: color var(--transition-fast);*/
/*}*/

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

/*.nav-cta {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-md);*/
/*}*/

/* Mobile Navigation */
/*.mobile-nav-toggle {*/
/*  display: none;*/
/*  background: none;*/
/*  border: none;*/
/*  cursor: pointer;*/
/*  padding: var(--space-sm);*/
/*  color: var(--color-text-primary);*/
/*}*/

/*.mobile-nav {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  right: -100%;*/
/*  width: 300px;*/
/*  height: 100vh;*/
/*  background: var(--color-surface-elevated);*/
/*  border-left: 1px solid var(--color-border);*/
/*  padding: var(--space-xl);*/
/*  transition: right var(--transition-normal);*/
/*  z-index: 1001;*/
/*}*/

/*.mobile-nav.open {*/
/*  right: 0;*/
/*}*/

/*.mobile-nav-overlay {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: rgba(0, 0, 0, 0.5);*/
/*  opacity: 0;*/
/*  visibility: hidden;*/
/*  transition: all var(--transition-normal);*/
/*  z-index: 1000;*/
/*}*/

/*.mobile-nav-overlay.open {*/
/*  opacity: 1;*/
/*  visibility: visible;*/
/*}*/

/* Theme Toggle */
/*.theme-toggle {*/
/*  background: none;*/
/*  border: none;*/
/*  cursor: pointer;*/
/*  padding: var(--space-sm);*/
/*  border-radius: var(--radius-md);*/
/*  color: var(--color-text-secondary);*/
/*  transition: all var(--transition-fast);*/
/*}*/

/*.theme-toggle:hover {*/
/*  background-color: var(--color-surface);*/
/*  color: var(--color-text-primary);*/
/*}*/

/*.theme-toggle svg {*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  transition: transform var(--transition-fast);*/
/*}*/

/* Hero Section */
/*.hero {*/
/*  position: relative;*/
/*  padding: calc(70px + var(--space-4xl)) 0 var(--space-4xl);*/
/*  background: linear-gradient(135deg, var(--color-background) 0%, var(--color-surface) 100%);*/
/*  overflow: hidden;*/
/*}*/

/*.hero-wave {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  opacity: 0.1;*/
/*  z-index: 0;*/
/*}*/

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

/*.hero-badges {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  gap: var(--space-sm);*/
/*  margin-bottom: var(--space-xl);*/
/*  flex-wrap: wrap;*/
/*}*/

/*.badge {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  padding: var(--space-xs) var(--space-md);*/
/*  background-color: var(--color-surface-elevated);*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-xl);*/
/*  font-size: 0.75rem;*/
/*  font-weight: 500;*/
/*  color: var(--color-text-secondary);*/
/*}*/

/*.hero-subtitle {*/
/*  font-size: 1.25rem;*/
/*  color: var(--color-text-secondary);*/
/*  margin-bottom: var(--space-2xl);*/
/*  line-height: 1.5;*/
/*}*/

/*.hero-cta {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  gap: var(--space-md);*/
/*  margin-bottom: var(--space-2xl);*/
/*  flex-wrap: wrap;*/
/*}*/

/* Stats */
/*.stats {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  gap: var(--space-2xl);*/
/*  margin-top: var(--space-2xl);*/
/*  flex-wrap: wrap;*/
/*}*/

/*.stat {*/
/*  text-align: center;*/
/*}*/

/*.stat-value {*/
/*  font-family: var(--font-display);*/
/*  font-size: 2rem;*/
/*  font-weight: 700;*/
/*  color: var(--color-primary);*/
/*  display: block;*/
/*}*/

/*.stat-label {*/
/*  font-size: 0.875rem;*/
/*  color: var(--color-text-muted);*/
/*}*/

/* Footer */
/*.footer {*/
/*  background-color: var(--color-surface);*/
/*  border-top: 1px solid var(--color-border);*/
/*  padding: var(--space-4xl) 0 var(--space-xl);*/
/*}*/

/*.footer-content {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
/*  gap: var(--space-2xl);*/
/*  margin-bottom: var(--space-2xl);*/
/*}*/

/*.footer-section h4 {*/
/*  font-size: 1rem;*/
/*  font-weight: 600;*/
/*  margin-bottom: var(--space-md);*/
/*  color: var(--color-text-primary);*/
/*}*/

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

/*.footer-links li {*/
/*  margin-bottom: var(--space-sm);*/
/*}*/

/*.footer-links a {*/
/*  color: var(--color-text-secondary);*/
/*  font-size: 0.875rem;*/
/*  transition: color var(--transition-fast);*/
/*}*/

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

/*.footer-bottom {*/
/*  display: flex;*/
/*  justify-content: between;*/
/*  align-items: center;*/
/*  padding-top: var(--space-xl);*/
/*  border-top: 1px solid var(--color-border);*/
/*  font-size: 0.875rem;*/
/*  color: var(--color-text-muted);*/
/*}*/

/*.social-links {*/
/*  display: flex;*/
/*  gap: var(--space-md);*/
/*}*/

/*.social-links a {*/
/*  color: var(--color-text-muted);*/
/*  transition: color var(--transition-fast);*/
/*}*/

/*.social-links a:hover {*/
/*  color: var(--color-primary);*/
/*}*/

/* Responsive Design */
/*@media (max-width: 1200px) {*/
/*  .container {*/
/*    max-width: 1140px;*/
/*    padding: 0 var(--space-lg);*/
/*  }*/

/*  .hero h1 {*/
/*    font-size: 2.5rem;*/
/*  }*/

/*  .feature-grid {*/
/*    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
/*  }*/
/*}*/

/*@media (max-width: 992px) {*/
/*  .container {*/
/*    max-width: 960px;*/
/*    padding: 0 var(--space-md);*/
/*  }*/

/*  .hero h1 {*/
/*    font-size: 2.25rem;*/
/*  }*/

/*  .grid-2 {*/
/*    grid-template-columns: 1fr;*/
/*    gap: var(--space-2xl);*/
/*  }*/

/*  .integration-grid {*/
/*    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
/*  }*/

/*  .testimonial-grid {*/
/*    grid-template-columns: 1fr;*/
/*  }*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .nav-links,*/
/*  .nav-cta {*/
/*    display: none;*/
/*  }*/

/*  .mobile-nav-toggle {*/
/*    display: block;*/
/*  }*/

/*  .container {*/
/*    padding: 0 var(--space-sm);*/
/*  }*/

/*  .hero h1 {*/
/*    font-size: 2rem;*/
/*    line-height: 1.2;*/
/*  }*/

/*  .hero-subtitle {*/
/*    font-size: 1rem;*/
/*  }*/

/*  .hero-cta {*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    gap: var(--space-md);*/
/*  }*/

/*  .hero-cta .btn {*/
/*    width: 100%;*/
/*    max-width: 280px;*/
/*  }*/

/*  .stats {*/
/*    gap: var(--space-lg);*/
/*    flex-direction: column;*/
/*  }*/

/*  .feature-grid {*/
/*    grid-template-columns: 1fr;*/
/*    gap: var(--space-xl);*/
/*  }*/

/*  .integration-grid {*/
/*    grid-template-columns: repeat(2, 1fr);*/
/*    gap: var(--space-md);*/
/*  }*/

/*  .footer-bottom {*/
/*    flex-direction: column;*/
/*    gap: var(--space-md);*/
/*    text-align: center;*/
/*  }*/

/*  .section {*/
/*    padding: var(--space-3xl) 0;*/
/*  }*/

/*  .hero {*/
/*    padding: var(--space-2xl) 0;*/
/*  }*/
/*}*/

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

/*  .hero h1 {*/
/*    font-size: 1.75rem;*/
/*  }*/

/*  .hero-badges {*/
/*    flex-wrap: wrap;*/
/*    justify-content: center;*/
/*  }*/

/*  .integration-grid {*/
/*    grid-template-columns: 1fr;*/
/*  }*/

/*  .stats {*/
/*    text-align: center;*/
/*  }*/

/*  .btn {*/
/*    padding: var(--space-sm) var(--space-lg);*/
/*    font-size: 0.875rem;*/
/*  }*/

/*  .btn-lg {*/
/*    padding: var(--space-md) var(--space-xl);*/
/*    font-size: 1rem;*/
/*  }*/
/*}*/

/*@media (max-width: 360px) {*/
/*  .hero h1 {*/
/*    font-size: 1.5rem;*/
/*  }*/

/*  .hero-subtitle {*/
/*    font-size: 0.875rem;*/
/*  }*/

/*  .container {*/
/*    padding: 0 var(--space-xs);*/
/*  }*/
/*}*/

/* Enhanced responsive utilities */

/* Utility Classes */
/*.text-center {*/
/*  text-align: center;*/
/*}*/

/*.text-balance {*/
/*  text-wrap: balance;*/
/*}*/

/*.text-pretty {*/
/*  text-wrap: pretty;*/
/*}*/

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

/*.fade-in {*/
/*  opacity: 0;*/
/*  transform: translateY(20px);*/
/*  transition: all var(--transition-slow);*/
/*}*/

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

/*.slide-up {*/
/*  opacity: 0;*/
/*  transform: translateY(50px);*/
/*  transition: all var(--transition-slow);*/
/*}*/

/*.slide-up.visible {*/
/*  opacity: 1;*/
/*  transform: translateY(0);*/
/*}*/

/*.slide-left {*/
/*  opacity: 0;*/
/*  transform: translateX(50px);*/
/*  transition: all var(--transition-slow);*/
/*}*/

/*.slide-left.visible {*/
/*  opacity: 1;*/
/*  transform: translateX(0);*/
/*}*/

/*.slide-right {*/
/*  opacity: 0;*/
/*  transform: translateX(-50px);*/
/*  transition: all var(--transition-slow);*/
/*}*/

/*.slide-right.visible {*/
/*  opacity: 1;*/
/*  transform: translateX(0);*/
/*}*/

/*.scale-in {*/
/*  opacity: 0;*/
/*  transform: scale(0.8);*/
/*  transition: all var(--transition-slow);*/
/*}*/

/*.scale-in.visible {*/
/*  opacity: 1;*/
/*  transform: scale(1);*/
/*}*/

/*.stagger-child {*/
/*  opacity: 0;*/
/*  transform: translateY(20px);*/
/*  transition: all var(--transition-normal);*/
/*}*/

/*.stagger-child.visible {*/
/*  opacity: 1;*/
/*  transform: translateY(0);*/
/*}*/

/* Parallax Effects */
/*.parallax {*/
/*  will-change: transform;*/
/*}*/

/* Counter Animation */
/*.counter {*/
/*  font-variant-numeric: tabular-nums;*/
/*  transition: all var(--transition-normal);*/
/*}*/

/* Typewriter Effect */
/*.typewriter {*/
/*  overflow: hidden;*/
/*  white-space: nowrap;*/
/*  animation: typing 3.5s steps(40, end);*/
/*}*/

/*@keyframes typing {*/
/*  from {*/
/*    width: 0;*/
/*  }*/
/*  to {*/
/*    width: 100%;*/
/*  }*/
/*}*/

/* Enhanced Button Animations */
/*.btn {*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  transition: all var(--transition-normal);*/
/*  transform: translateY(0);*/
/*}*/

/*.btn:hover {*/
/*  transform: translateY(-2px);*/
/*  box-shadow: var(--shadow-lg);*/
/*}*/

/*.btn:active {*/
/*  transform: translateY(0);*/
/*}*/

/*.btn.loading {*/
/*  pointer-events: none;*/
/*  opacity: 0.7;*/
/*}*/

/*.btn.loading::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  margin: -8px 0 0 -8px;*/
/*  border: 2px solid transparent;*/
/*  border-top: 2px solid currentColor;*/
/*  border-radius: 50%;*/
/*  animation: spin 1s linear infinite;*/
/*}*/

/* Enhanced Card Animations */
/*.feature-card,*/
/*.pricing-card,*/
/*.testimonial-card {*/
/*  transition: all var(--transition-normal);*/
/*  transform: translateY(0);*/
/*}*/

/*.feature-card:hover,*/
/*.pricing-card:hover,*/
/*.testimonial-card:hover {*/
/*  transform: translateY(-8px);*/
/*  box-shadow: var(--shadow-xl);*/
/*}*/

/* Modal Animations */
/*.modal {*/
/*  transition: all var(--transition-normal);*/
/*}*/

/*.modal-content {*/
/*  animation: modalSlideIn 0.3s ease-out;*/
/*}*/

/*@keyframes modalSlideIn {*/
/*  from {*/
/*    opacity: 0;*/
/*    transform: scale(0.9) translateY(-50px);*/
/*  }*/
/*  to {*/
/*    opacity: 1;*/
/*    transform: scale(1) translateY(0);*/
/*  }*/
/*}*/

/* Toast Animations */
/*.toast {*/
/*  animation: toastSlideIn 0.3s ease-out;*/
/*}*/

/*@keyframes toastSlideIn {*/
/*  from {*/
/*    transform: translateX(100%) scale(0.9);*/
/*    opacity: 0;*/
/*  }*/
/*  to {*/
/*    transform: translateX(0) scale(1);*/
/*    opacity: 1;*/
/*  }*/
/*}*/

/* Accordion Animations */
/*.accordion {*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-lg);*/
/*  overflow: hidden;*/
/*}*/

/*.accordion-item {*/
/*  border-bottom: 1px solid var(--color-border);*/
/*}*/

/*.accordion-item:last-child {*/
/*  border-bottom: none;*/
/*}*/

/*.accordion-trigger {*/
/*  width: 100%;*/
/*  padding: var(--space-lg);*/
/*  background: none;*/
/*  border: none;*/
/*  text-align: left;*/
/*  font-size: 1rem;*/
/*  font-weight: 500;*/
/*  color: var(--color-text-primary);*/
/*  cursor: pointer;*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  transition: all var(--transition-fast);*/
/*}*/

/*.accordion-trigger:hover {*/
/*  background-color: var(--color-surface-hover);*/
/*}*/

/*.accordion-trigger[aria-expanded="true"] {*/
/*  background-color: var(--color-surface-elevated);*/
/*}*/

/*.accordion-icon {*/
/*  transition: transform var(--transition-fast);*/
/*}*/

/*.accordion-trigger[aria-expanded="true"] .accordion-icon {*/
/*  transform: rotate(180deg);*/
/*}*/

/*.accordion-content {*/
/*  padding: 0 var(--space-lg) var(--space-lg);*/
/*  color: var(--color-text-secondary);*/
/*  line-height: 1.6;*/
/*}*/

/*.accordion-panel {*/
/*  transition: max-height var(--transition-normal) ease-out;*/
/*  overflow: hidden;*/
/*}*/

/* Tab Animations */
/*.tabs {*/
/*  width: 100%;*/
/*}*/

/*.tab-list {*/
/*  display: flex;*/
/*  border-bottom: 1px solid var(--color-border);*/
/*  margin-bottom: var(--space-lg);*/
/*  overflow-x: auto;*/
/*}*/

/*.tab-trigger {*/
/*  background: none;*/
/*  border: none;*/
/*  padding: var(--space-md) var(--space-lg);*/
/*  font-size: 0.875rem;*/
/*  font-weight: 500;*/
/*  color: var(--color-text-secondary);*/
/*  cursor: pointer;*/
/*  border-bottom: 2px solid transparent;*/
/*  transition: all var(--transition-fast);*/
/*  white-space: nowrap;*/
/*  position: relative;*/
/*}*/

/*.tab-trigger::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  width: 0;*/
/*  height: 2px;*/
/*  background: var(--color-primary);*/
/*  transition: width var(--transition-normal);*/
/*}*/

/*.tab-trigger[aria-selected="true"] {*/
/*  color: var(--color-primary);*/
/*  border-bottom-color: var(--color-primary);*/
/*}*/

/*.tab-trigger[aria-selected="true"]::after {*/
/*  width: 100%;*/
/*}*/

/*.tab-panel {*/
/*  display: none;*/
/*  animation: tabFadeIn 0.3s ease-out;*/
/*}*/

/*@keyframes tabFadeIn {*/
/*  from {*/
/*    opacity: 0;*/
/*    transform: translateY(10px);*/
/*  }*/
/*  to {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/

/* Pricing Tables */
/*.pricing-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
/*  gap: var(--space-xl);*/
/*  margin-top: var(--space-2xl);*/
/*}*/

/*.pricing-card {*/
/*  background: var(--color-surface-elevated);*/
/*  border: 2px solid var(--color-border);*/
/*  border-radius: var(--radius-lg);*/
/*  padding: var(--space-2xl);*/
/*  text-align: center;*/
/*  position: relative;*/
/*  transition: all var(--transition-normal);*/
/*}*/

/*.pricing-card:hover {*/
/*  transform: translateY(-4px);*/
/*  box-shadow: var(--shadow-xl);*/
/*}*/

/*.pricing-card.featured {*/
/*  border-color: var(--color-primary);*/
/*  background: linear-gradient(135deg, var(--color-surface-elevated) 0%, rgba(109, 40, 217, 0.05) 100%);*/
/*}*/

/*.pricing-badge {*/
/*  position: absolute;*/
/*  top: -12px;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);*/
/*  color: white;*/
/*  padding: var(--space-xs) var(--space-md);*/
/*  border-radius: var(--radius-xl);*/
/*  font-size: 0.75rem;*/
/*  font-weight: 600;*/
/*}*/

/*.pricing-plan {*/
/*  font-size: 1.25rem;*/
/*  font-weight: 600;*/
/*  color: var(--color-text-primary);*/
/*  margin-bottom: var(--space-sm);*/
/*}*/

/*.pricing-price {*/
/*  font-family: var(--font-display);*/
/*  font-size: 3rem;*/
/*  font-weight: 700;*/
/*  color: var(--color-primary);*/
/*  margin-bottom: var(--space-xs);*/
/*}*/

/*.pricing-period {*/
/*  color: var(--color-text-muted);*/
/*  font-size: 0.875rem;*/
/*  margin-bottom: var(--space-xl);*/
/*}*/

/*.pricing-features {*/
/*  list-style: none;*/
/*  margin-bottom: var(--space-xl);*/
/*}*/

/*.pricing-features li {*/
/*  padding: var(--space-sm) 0;*/
/*  color: var(--color-text-secondary);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-sm);*/
/*}*/

/*.pricing-features li::before {*/
/*  content: "✓";*/
/*  color: var(--color-primary);*/
/*  font-weight: 600;*/
/*}*/

/* Stepper/Timeline */
/*.stepper {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  gap: var(--space-lg);*/
/*  margin: var(--space-2xl) 0;*/
/*  flex-wrap: wrap;*/
/*}*/

/*.step {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: center;*/
/*  text-align: center;*/
/*  flex: 1;*/
/*  min-width: 150px;*/
/*  position: relative;*/
/*}*/

/*.step:not(:last-child)::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 20px;*/
/*  right: -50%;*/
/*  width: 100%;*/
/*  height: 2px;*/
/*  background: var(--color-border);*/
/*  z-index: 0;*/
/*}*/

/*.step.active:not(:last-child)::after {*/
/*  background: var(--color-primary);*/
/*}*/

/*.step-icon {*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  border-radius: 50%;*/
/*  background: var(--color-surface);*/
/*  border: 2px solid var(--color-border);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  margin-bottom: var(--space-md);*/
/*  position: relative;*/
/*  z-index: 1;*/
/*  transition: all var(--transition-fast);*/
/*}*/

/*.step.active .step-icon {*/
/*  background: var(--color-primary);*/
/*  border-color: var(--color-primary);*/
/*  color: white;*/
/*}*/

/*.step-title {*/
/*  font-weight: 600;*/
/*  color: var(--color-text-primary);*/
/*  margin-bottom: var(--space-xs);*/
/*}*/

/*.step-description {*/
/*  font-size: 0.875rem;*/
/*  color: var(--color-text-secondary);*/
/*}*/

/* Code Blocks */
/*.code-block {*/
/*  background: var(--color-surface);*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-md);*/
/*  padding: var(--space-lg);*/
/*  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;*/
/*  font-size: 0.875rem;*/
/*  overflow-x: auto;*/
/*  position: relative;*/
/*}*/

/*.code-block::before {*/
/*  content: attr(data-language);*/
/*  position: absolute;*/
/*  top: var(--space-sm);*/
/*  right: var(--space-sm);*/
/*  font-size: 0.75rem;*/
/*  color: var(--color-text-muted);*/
/*  text-transform: uppercase;*/
/*}*/

/* Integration Cards */
/*.integration-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
/*  gap: var(--space-lg);*/
/*}*/

/*.integration-card {*/
/*  background: var(--color-surface-elevated);*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-lg);*/
/*  padding: var(--space-lg);*/
/*  text-align: center;*/
/*  cursor: pointer;*/
/*  transition: all var(--transition-normal);*/
/*}*/

/*.integration-card:hover {*/
/*  transform: translateY(-2px);*/
/*  box-shadow: var(--shadow-md);*/
/*  border-color: var(--color-primary-lighter);*/
/*}*/

/*.integration-logo {*/
/*  width: 48px;*/
/*  height: 48px;*/
/*  margin: 0 auto var(--space-md);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/

/*.integration-name {*/
/*  font-weight: 600;*/
/*  color: var(--color-text-primary);*/
/*  margin-bottom: var(--space-xs);*/
/*}*/

/*.integration-description {*/
/*  font-size: 0.875rem;*/
/*  color: var(--color-text-secondary);*/
/*}*/

/* Feature Cards */
/*.feature-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
/*  gap: var(--space-xl);*/
/*}*/

/*.feature-card {*/
/*  background: var(--color-surface-elevated);*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-lg);*/
/*  padding: var(--space-2xl);*/
/*  text-align: center;*/
/*  transition: all var(--transition-normal);*/
/*}*/

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

/*.feature-icon {*/
/*  width: 64px;*/
/*  height: 64px;*/
/*  margin: 0 auto var(--space-lg);*/
/*  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);*/
/*  border-radius: var(--radius-lg);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  color: white;*/
/*}*/

/*.feature-title {*/
/*  font-size: 1.25rem;*/
/*  font-weight: 600;*/
/*  color: var(--color-text-primary);*/
/*  margin-bottom: var(--space-md);*/
/*}*/

/*.feature-description {*/
/*  color: var(--color-text-secondary);*/
/*  line-height: 1.6;*/
/*}*/

/* Testimonial Cards */
/*.testimonial-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
/*  gap: var(--space-xl);*/
/*}*/

/*.testimonial-card {*/
/*  background: var(--color-surface-elevated);*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-lg);*/
/*  padding: var(--space-2xl);*/
/*  position: relative;*/
/*}*/

/*.testimonial-quote {*/
/*  font-size: 1.125rem;*/
/*  color: var(--color-text-primary);*/
/*  margin-bottom: var(--space-lg);*/
/*  line-height: 1.6;*/
/*}*/

/*.testimonial-quote::before {*/
/*  content: '"';*/
/*  font-size: 3rem;*/
/*  color: var(--color-primary);*/
/*  position: absolute;*/
/*  top: var(--space-md);*/
/*  left: var(--space-lg);*/
/*  line-height: 1;*/
/*}*/

/*.testimonial-author {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-md);*/
/*}*/

/*.testimonial-avatar {*/
/*  width: 48px;*/
/*  height: 48px;*/
/*  border-radius: 50%;*/
/*  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  color: white;*/
/*  font-weight: 600;*/
/*}*/

/*.testimonial-info h4 {*/
/*  font-size: 1rem;*/
/*  font-weight: 600;*/
/*  color: var(--color-text-primary);*/
/*  margin: 0;*/
/*}*/

/*.testimonial-info p {*/
/*  font-size: 0.875rem;*/
/*  color: var(--color-text-secondary);*/
/*  margin: 0;*/
/*}*/

/* Form Styles */
/*.form-group {*/
/*  margin-bottom: var(--space-lg);*/
/*  position: relative;*/
/*}*/

/*.form-label {*/
/*  display: block;*/
/*  font-weight: 500;*/
/*  color: var(--color-text-primary);*/
/*  margin-bottom: var(--space-sm);*/
/*}*/

/*.form-input,*/
/*.form-textarea,*/
/*.form-select {*/
/*  width: 100%;*/
/*  padding: var(--space-md);*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-md);*/
/*  background: var(--color-surface-elevated);*/
/*  color: var(--color-text-primary);*/
/*  font-family: var(--font-sans);*/
/*  font-size: 0.875rem;*/
/*  transition: all var(--transition-fast);*/
/*}*/

/*.form-input:focus,*/
/*.form-textarea:focus,*/
/*.form-select:focus {*/
/*  outline: none;*/
/*  border-color: var(--color-primary);*/
/*  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);*/
/*  transform: scale(1.02);*/
/*}*/

/*.form-textarea {*/
/*  resize: vertical;*/
/*  min-height: 120px;*/
/*}*/

/*.form-checkbox {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-sm);*/
/*}*/

/*.form-checkbox input {*/
/*  width: 16px;*/
/*  height: 16px;*/
/*}*/

/*.field-error {*/
/*  animation: shake 0.5s ease-in-out;*/
/*}*/

/* Honeypot (hidden spam protection) */
/*.honeypot {*/
/*  position: absolute;*/
/*  left: -9999px;*/
/*  opacity: 0;*/
/*  pointer-events: none;*/
/*}*/

/* Loading States */
/*.loading {*/
/*  opacity: 0.6;*/
/*  pointer-events: none;*/
/*}*/

/*.loading-spinner {*/
/*  display: inline-block;*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  border: 2px solid var(--color-border);*/
/*  border-radius: 50%;*/
/*  border-top-color: var(--color-primary);*/
/*  animation: spin 1s linear infinite;*/
/*}*/

/* Utility Animation Classes */
/*.animate-pulse {*/
/*  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;*/
/*}*/

/*.animate-bounce {*/
/*  animation: bounce 1s infinite;*/
/*}*/

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

/*.animate-glow {*/
/*  animation: glow 2s ease-in-out infinite alternate;*/
/*}*/

/* Reduced Motion Support */
/*@media (prefers-reduced-motion: reduce) {*/
/*  *,*/
/*  *::before,*/
/*  *::after {*/
/*    animation-duration: 0.01ms !important;*/
/*    animation-iteration-count: 1 !important;*/
/*    transition-duration: 0.01ms !important;*/
/*    scroll-behavior: auto !important;*/
/*  }*/

/*  .parallax {*/
/*    transform: none !important;*/
/*  }*/
/*}*/

/* Performance Optimizations */
/*.will-change-transform {*/
/*  will-change: transform;*/
/*}*/

/*.will-change-opacity {*/
/*  will-change: opacity;*/
/*}*/

/*.gpu-accelerated {*/
/*  transform: translateZ(0);*/
/*  backface-visibility: hidden;*/
/*  perspective: 1000px;*/
/*}*/

/* Animation Keyframes */
/*@keyframes fadeIn {*/
/*  from {*/
/*    opacity: 0;*/
/*    transform: translateY(30px);*/
/*  }*/
/*  to {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/

/*@keyframes slideUp {*/
/*  from {*/
/*    opacity: 0;*/
/*    transform: translateY(50px);*/
/*  }*/
/*  to {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/

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

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

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

/*@keyframes pulse {*/
/*  0%,*/
/*  100% {*/
/*    transform: scale(1);*/
/*  }*/
/*  50% {*/
/*    transform: scale(1.05);*/
/*  }*/
/*}*/

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

/*@keyframes bounce {*/
/*  0%,*/
/*  20%,*/
/*  53%,*/
/*  80%,*/
/*  100% {*/
/*    transform: translate3d(0, 0, 0);*/
/*  }*/
/*  40%,*/
/*  43% {*/
/*    transform: translate3d(0, -30px, 0);*/
/*  }*/
/*  70% {*/
/*    transform: translate3d(0, -15px, 0);*/
/*  }*/
/*  90% {*/
/*    transform: translate3d(0, -4px, 0);*/
/*  }*/
/*}*/

/*@keyframes shake {*/
/*  0%,*/
/*  100% {*/
/*    transform: translateX(0);*/
/*  }*/
/*  10%,*/
/*  30%,*/
/*  50%,*/
/*  70%,*/
/*  90% {*/
/*    transform: translateX(-10px);*/
/*  }*/
/*  20%,*/
/*  40%,*/
/*  60%,*/
/*  80% {*/
/*    transform: translateX(10px);*/
/*  }*/
/*}*/

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

/*@keyframes glow {*/
/*  0%,*/
/*  100% {*/
/*    box-shadow: 0 0 5px var(--color-primary);*/
/*  }*/
/*  50% {*/
/*    box-shadow: 0 0 20px var(--color-primary), 0 0 30px var(--color-primary);*/
/*  }*/
/*}*/

/*@keyframes spin {*/
/*  to {*/
/*    transform: rotate(360deg);*/
/*  }*/
/*}*/


/* Enwave Tech - Core Styles */
/*@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");*/

/* CSS Custom Properties */
/*:root {*/
  /* Colors - Light Theme */
/*  --color-primary: #6d28d9;*/
/*  --color-primary-light: #7c3aed;*/
/*  --color-primary-lighter: #a78bfa;*/
/*  --color-accent: #0ea5e9;*/
/*  --color-background: #ffffff;*/
/*  --color-surface: #f9fafb;*/
/*  --color-surface-elevated: #ffffff;*/
/*  --color-text-primary: #111827;*/
/*  --color-text-secondary: #6b7280;*/
/*  --color-text-muted: #9ca3af;*/
/*  --color-border: #e5e7eb;*/
/*  --color-border-light: #f3f4f6;*/

  /* Dark Theme Colors */
/*  --color-dark-background: #0f0f23;*/
/*  --color-dark-surface: #1a1a2e;*/
/*  --color-dark-surface-elevated: #16213e;*/
/*  --color-dark-text-primary: #f9fafb;*/
/*  --color-dark-text-secondary: #d1d5db;*/
/*  --color-dark-text-muted: #9ca3af;*/
/*  --color-dark-border: #374151;*/
/*  --color-dark-border-light: #4b5563;*/

  /* Typography */
/*  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;*/
/*  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;*/

  /* Spacing */
/*  --space-xs: 0.25rem;*/
/*  --space-sm: 0.5rem;*/
/*  --space-md: 1rem;*/
/*  --space-lg: 1.5rem;*/
/*  --space-xl: 2rem;*/
/*  --space-2xl: 3rem;*/
/*  --space-3xl: 4rem;*/
/*  --space-4xl: 6rem;*/

  /* Border Radius */
/*  --radius-sm: 0.375rem;*/
/*  --radius-md: 0.5rem;*/
/*  --radius-lg: 0.75rem;*/
/*  --radius-xl: 1rem;*/

  /* Shadows */
/*  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);*/
/*  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);*/
/*  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);*/
/*  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);*/

  /* Transitions */
/*  --transition-fast: 150ms ease-in-out;*/
/*  --transition-normal: 250ms ease-in-out;*/
/*  --transition-slow: 350ms ease-in-out;*/

  /* Animation Colors */
/*  --color-surface-hover: #f3f4f6;*/
/*}*/

/* Dark Theme */
/*[data-theme="dark"] {*/
/*  --color-background: var(--color-dark-background);*/
/*  --color-surface: var(--color-dark-surface);*/
/*  --color-surface-elevated: var(--color-dark-surface-elevated);*/
/*  --color-text-primary: var(--color-dark-text-primary);*/
/*  --color-text-secondary: var(--color-dark-text-secondary);*/
/*  --color-text-muted: var(--color-dark-text-muted);*/
/*  --color-border: var(--color-dark-border);*/
/*  --color-border-light: var(--color-dark-border-light);*/
/*}*/

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

/*html {*/
/*  scroll-behavior: smooth;*/
/*  font-size: 16px;*/
/*}*/

/*body {*/
/*  font-family: var(--font-sans);*/
/*  font-weight: 400;*/
/*  line-height: 1.6;*/
/*  color: var(--color-text-primary);*/
/*  background-color: var(--color-background);*/
/*  transition: background-color var(--transition-normal), color var(--transition-normal);*/
/*  -webkit-font-smoothing: antialiased;*/
/*  -moz-osx-font-smoothing: grayscale;*/
/*}*/

/* Typography */
/*h1,*/
/*h2,*/
/*h3,*/
/*h4,*/
/*h5,*/
/*h6 {*/
/*  font-family: var(--font-display);*/
/*  font-weight: 600;*/
/*  line-height: 1.2;*/
/*  color: var(--color-text-primary);*/
/*  margin-bottom: var(--space-md);*/
/*}*/

/*h1 {*/
/*  font-size: clamp(2.5rem, 5vw, 4rem);*/
/*  font-weight: 700;*/
/*  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-lighter) 100%);*/
/*  -webkit-background-clip: text;*/
/*  -webkit-text-fill-color: transparent;*/
/*  background-clip: text;*/
/*}*/

/*h2 {*/
/*  font-size: clamp(2rem, 4vw, 3rem);*/
/*}*/

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

/*h4 {*/
/*  font-size: 1.25rem;*/
/*}*/

/*p {*/
/*  margin-bottom: var(--space-md);*/
/*  color: var(--color-text-secondary);*/
/*}*/

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

/*a:hover {*/
/*  color: var(--color-primary-light);*/
/*}*/

/* Layout */
/*.container {*/
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
/*  padding: 0 var(--space-lg);*/
/*}*/

/*.container-wide {*/
/*  max-width: 1400px;*/
/*  margin: 0 auto;*/
/*  padding: 0 var(--space-lg);*/
/*}*/

/*.section {*/
/*  padding: var(--space-4xl) 0;*/
/*}*/

/*.section-sm {*/
/*  padding: var(--space-2xl) 0;*/
/*}*/

/* Grid System */
/*.grid {*/
/*  display: grid;*/
/*  gap: var(--space-xl);*/
/*}*/

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

/*.grid-3 {*/
/*  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
/*}*/

/*.grid-4 {*/
/*  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
/*}*/

/* Flexbox Utilities */
/*.flex {*/
/*  display: flex;*/
/*}*/

/*.flex-col {*/
/*  flex-direction: column;*/
/*}*/

/*.items-center {*/
/*  align-items: center;*/
/*}*/

/*.justify-center {*/
/*  justify-content: center;*/
/*}*/

/*.justify-between {*/
/*  justify-content: space-between;*/
/*}*/

/*.gap-sm {*/
/*  gap: var(--space-sm);*/
/*}*/

/*.gap-md {*/
/*  gap: var(--space-md);*/
/*}*/

/*.gap-lg {*/
/*  gap: var(--space-lg);*/
/*}*/

/*.gap-xl {*/
/*  gap: var(--space-xl);*/
/*}*/

/* Buttons */
/*.btn {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  gap: var(--space-sm);*/
/*  padding: var(--space-md) var(--space-xl);*/
/*  font-family: var(--font-sans);*/
/*  font-weight: 500;*/
/*  font-size: 0.875rem;*/
/*  line-height: 1;*/
/*  border: none;*/
/*  border-radius: var(--radius-md);*/
/*  cursor: pointer;*/
/*  transition: all var(--transition-normal);*/
/*  text-decoration: none;*/
/*  white-space: nowrap;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*}*/

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

/*.btn-primary {*/
/*  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);*/
/*  color: white;*/
/*  box-shadow: var(--shadow-md);*/
/*}*/

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

/*.btn-primary:active {*/
/*  transform: translateY(0);*/
/*}*/

/*.btn-primary.loading {*/
/*  pointer-events: none;*/
/*  opacity: 0.7;*/
/*}*/

/*.btn-primary.loading::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  margin: -8px 0 0 -8px;*/
/*  border: 2px solid transparent;*/
/*  border-top: 2px solid currentColor;*/
/*  border-radius: 50%;*/
/*  animation: spin 1s linear infinite;*/
/*}*/

/*.btn-secondary {*/
/*  background-color: var(--color-surface-elevated);*/
/*  color: var(--color-text-primary);*/
/*  border: 1px solid var(--color-border);*/
/*}*/

/*.btn-secondary:hover {*/
/*  background-color: var(--color-surface);*/
/*  border-color: var(--color-primary);*/
/*}*/

/*.btn-secondary:active {*/
/*  transform: translateY(0);*/
/*}*/

/*.btn-secondary.loading {*/
/*  pointer-events: none;*/
/*  opacity: 0.7;*/
/*}*/

/*.btn-secondary.loading::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  margin: -8px 0 0 -8px;*/
/*  border: 2px solid transparent;*/
/*  border-top: 2px solid currentColor;*/
/*  border-radius: 50%;*/
/*  animation: spin 1s linear infinite;*/
/*}*/

/*.btn-ghost {*/
/*  background-color: transparent;*/
/*  color: var(--color-text-secondary);*/
/*}*/

/*.btn-ghost:hover {*/
/*  background-color: var(--color-surface);*/
/*  color: var(--color-text-primary);*/
/*}*/

/*.btn-ghost:active {*/
/*  transform: translateY(0);*/
/*}*/

/*.btn-ghost.loading {*/
/*  pointer-events: none;*/
/*  opacity: 0.7;*/
/*}*/

/*.btn-ghost.loading::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  margin: -8px 0 0 -8px;*/
/*  border: 2px solid transparent;*/
/*  border-top: 2px solid currentColor;*/
/*  border-radius: 50%;*/
/*  animation: spin 1s linear infinite;*/
/*}*/

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

/* Cards */
/*.card {*/
/*  background-color: var(--color-surface-elevated);*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-lg);*/
/*  padding: var(--space-xl);*/
/*  box-shadow: var(--shadow-sm);*/
/*  transition: all var(--transition-normal);*/
/*  transform: translateY(0);*/
/*}*/

/*.card:hover {*/
/*  transform: translateY(-4px);*/
/*  box-shadow: var(--shadow-lg);*/
/*  border-color: var(--color-primary-lighter);*/
/*}*/

/*.card-glass {*/
/*  background: rgba(255, 255, 255, 0.1);*/
/*  backdrop-filter: blur(10px);*/
/*  border: 1px solid rgba(255, 255, 255, 0.2);*/
/*}*/

/*[data-theme="dark"] .card-glass {*/
/*  background: rgba(26, 26, 46, 0.6);*/
/*  border: 1px solid rgba(167, 139, 250, 0.2);*/
/*}*/

/*.feature-card,*/
/*.pricing-card,*/
/*.testimonial-card {*/
/*  transition: all var(--transition-normal);*/
/*  transform: translateY(0);*/
/*}*/

/*.feature-card:hover,*/
/*.pricing-card:hover,*/
/*.testimonial-card:hover {*/
/*  transform: translateY(-8px);*/
/*  box-shadow: var(--shadow-xl);*/
/*}*/

/* Header */
/*.header {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  z-index: 1000;*/
/*  background: rgba(255, 255, 255, 0.8);*/
/*  backdrop-filter: blur(10px);*/
/*  border-bottom: 1px solid var(--color-border-light);*/
/*  transition: all var(--transition-normal);*/
/*}*/

/*[data-theme="dark"] .header {*/
/*  background: rgba(15, 15, 35, 0.8);*/
/*  border-bottom-color: var(--color-border);*/
/*}*/

/*.header.scrolled {*/
/*  background: var(--color-surface-elevated);*/
/*  box-shadow: var(--shadow-md);*/
/*}*/

/*.header-content {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: space-between;*/
/*  padding: var(--space-md) 0;*/
/*  min-height: 70px;*/
/*}*/

/*.logo {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-sm);*/
/*  font-family: var(--font-display);*/
/*  font-weight: 600;*/
/*  font-size: 1.25rem;*/
/*  color: var(--color-text-primary);*/
/*  text-decoration: none;*/
/*}*/

/*.logo svg {*/
/*  width: 32px;*/
/*  height: 32px;*/
/*  transition: transform var(--transition-fast);*/
/*}*/

/*.logo:hover svg {*/
/*  transform: scale(1.05);*/
/*}*/

/*.nav {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-xl);*/
/*}*/

/*.nav-links {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-lg);*/
/*  list-style: none;*/
/*}*/

/*.nav-link {*/
/*  color: var(--color-text-secondary);*/
/*  font-weight: 500;*/
/*  transition: color var(--transition-fast);*/
/*}*/

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

/*.nav-cta {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-md);*/
/*}*/

/* Mobile Navigation */
/*.mobile-nav-toggle {*/
/*  display: none;*/
/*  background: none;*/
/*  border: none;*/
/*  cursor: pointer;*/
/*  padding: var(--space-sm);*/
/*  color: var(--color-text-primary);*/
/*}*/

/*.mobile-nav {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  right: -100%;*/
/*  width: 300px;*/
/*  height: 100vh;*/
/*  background: var(--color-surface-elevated);*/
/*  border-left: 1px solid var(--color-border);*/
/*  padding: var(--space-xl);*/
/*  transition: right var(--transition-normal);*/
/*  z-index: 1001;*/
/*}*/

/*.mobile-nav.open {*/
/*  right: 0;*/
/*}*/

/*.mobile-nav-overlay {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: rgba(0, 0, 0, 0.5);*/
/*  opacity: 0;*/
/*  visibility: hidden;*/
/*  transition: all var(--transition-normal);*/
/*  z-index: 1000;*/
/*}*/

/*.mobile-nav-overlay.open {*/
/*  opacity: 1;*/
/*  visibility: visible;*/
/*}*/

/* Theme Toggle */
/*.theme-toggle {*/
/*  background: none;*/
/*  border: none;*/
/*  cursor: pointer;*/
/*  padding: var(--space-sm);*/
/*  border-radius: var(--radius-md);*/
/*  color: var(--color-text-secondary);*/
/*  transition: all var(--transition-fast);*/
/*}*/

/*.theme-toggle:hover {*/
/*  background-color: var(--color-surface);*/
/*  color: var(--color-text-primary);*/
/*}*/

/*.theme-toggle svg {*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  transition: transform var(--transition-fast);*/
/*}*/

/* Hero Section */
/*.hero {*/
/*  position: relative;*/
/*  padding: calc(70px + var(--space-4xl)) 0 var(--space-4xl);*/
/*  background: linear-gradient(135deg, var(--color-background) 0%, var(--color-surface) 100%);*/
/*  overflow: hidden;*/
/*}*/

/*.hero-wave {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  opacity: 0.1;*/
/*  z-index: 0;*/
/*}*/

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

/*.hero-badges {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  gap: var(--space-sm);*/
/*  margin-bottom: var(--space-xl);*/
/*  flex-wrap: wrap;*/
/*}*/

/*.badge {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  padding: var(--space-xs) var(--space-md);*/
/*  background-color: var(--color-surface-elevated);*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-xl);*/
/*  font-size: 0.75rem;*/
/*  font-weight: 500;*/
/*  color: var(--color-text-secondary);*/
/*}*/

/*.hero-subtitle {*/
/*  font-size: 1.25rem;*/
/*  color: var(--color-text-secondary);*/
/*  margin-bottom: var(--space-2xl);*/
/*  line-height: 1.5;*/
/*}*/

/*.hero-cta {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  gap: var(--space-md);*/
/*  margin-bottom: var(--space-2xl);*/
/*  flex-wrap: wrap;*/
/*}*/

/* Stats */
/*.stats {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  gap: var(--space-2xl);*/
/*  margin-top: var(--space-2xl);*/
/*  flex-wrap: wrap;*/
/*}*/

/*.stat {*/
/*  text-align: center;*/
/*}*/

/*.stat-value {*/
/*  font-family: var(--font-display);*/
/*  font-size: 2rem;*/
/*  font-weight: 700;*/
/*  color: var(--color-primary);*/
/*  display: block;*/
/*}*/

/*.stat-label {*/
/*  font-size: 0.875rem;*/
/*  color: var(--color-text-muted);*/
/*}*/

/* Footer */
/*.footer {*/
/*  background-color: var(--color-surface);*/
/*  border-top: 1px solid var(--color-border);*/
/*  padding: var(--space-4xl) 0 var(--space-xl);*/
/*}*/

/*.footer-content {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
/*  gap: var(--space-2xl);*/
/*  margin-bottom: var(--space-2xl);*/
/*}*/

/*.footer-section h4 {*/
/*  font-size: 1rem;*/
/*  font-weight: 600;*/
/*  margin-bottom: var(--space-md);*/
/*  color: var(--color-text-primary);*/
/*}*/

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

/*.footer-links li {*/
/*  margin-bottom: var(--space-sm);*/
/*}*/

/*.footer-links a {*/
/*  color: var(--color-text-secondary);*/
/*  font-size: 0.875rem;*/
/*  transition: color var(--transition-fast);*/
/*}*/

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

/*.footer-bottom {*/
/*  display: flex;*/
/*  justify-content: between;*/
/*  align-items: center;*/
/*  padding-top: var(--space-xl);*/
/*  border-top: 1px solid var(--color-border);*/
/*  font-size: 0.875rem;*/
/*  color: var(--color-text-muted);*/
/*}*/

/*.social-links {*/
/*  display: flex;*/
/*  gap: var(--space-md);*/
/*}*/

/*.social-links a {*/
/*  color: var(--color-text-muted);*/
/*  transition: color var(--transition-fast);*/
/*}*/

/*.social-links a:hover {*/
/*  color: var(--color-primary);*/
/*}*/

/* Responsive Design */
/*@media (max-width: 1200px) {*/
/*  .container {*/
/*    max-width: 1140px;*/
/*    padding: 0 var(--space-lg);*/
/*  }*/

/*  .hero h1 {*/
/*    font-size: 2.5rem;*/
/*  }*/

/*  .feature-grid {*/
/*    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
/*  }*/
/*}*/

/*@media (max-width: 992px) {*/
/*  .container {*/
/*    max-width: 960px;*/
/*    padding: 0 var(--space-md);*/
/*  }*/

/*  .hero h1 {*/
/*    font-size: 2.25rem;*/
/*  }*/

/*  .grid-2 {*/
/*    grid-template-columns: 1fr;*/
/*    gap: var(--space-2xl);*/
/*  }*/

/*  .integration-grid {*/
/*    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
/*  }*/

/*  .testimonial-grid {*/
/*    grid-template-columns: 1fr;*/
/*  }*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .nav-links,*/
/*  .nav-cta {*/
/*    display: none;*/
/*  }*/

/*  .mobile-nav-toggle {*/
/*    display: block;*/
/*  }*/

/*  .container {*/
/*    padding: 0 var(--space-sm);*/
/*  }*/

/*  .hero h1 {*/
/*    font-size: 2rem;*/
/*    line-height: 1.2;*/
/*  }*/

/*  .hero-subtitle {*/
/*    font-size: 1rem;*/
/*  }*/

/*  .hero-cta {*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    gap: var(--space-md);*/
/*  }*/

/*  .hero-cta .btn {*/
/*    width: 100%;*/
/*    max-width: 280px;*/
/*  }*/

/*  .stats {*/
/*    gap: var(--space-lg);*/
/*    flex-direction: column;*/
/*  }*/

/*  .feature-grid {*/
/*    grid-template-columns: 1fr;*/
/*    gap: var(--space-xl);*/
/*  }*/

/*  .integration-grid {*/
/*    grid-template-columns: repeat(2, 1fr);*/
/*    gap: var(--space-md);*/
/*  }*/

/*  .footer-bottom {*/
/*    flex-direction: column;*/
/*    gap: var(--space-md);*/
/*    text-align: center;*/
/*  }*/

/*  .section {*/
/*    padding: var(--space-3xl) 0;*/
/*  }*/

/*  .hero {*/
/*    padding: var(--space-2xl) 0;*/
/*  }*/
/*}*/

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

/*  .hero h1 {*/
/*    font-size: 1.75rem;*/
/*  }*/

/*  .hero-badges {*/
/*    flex-wrap: wrap;*/
/*    justify-content: center;*/
/*  }*/

/*  .integration-grid {*/
/*    grid-template-columns: 1fr;*/
/*  }*/

/*  .stats {*/
/*    text-align: center;*/
/*  }*/

/*  .btn {*/
/*    padding: var(--space-sm) var(--space-lg);*/
/*    font-size: 0.875rem;*/
/*  }*/

/*  .btn-lg {*/
/*    padding: var(--space-md) var(--space-xl);*/
/*    font-size: 1rem;*/
/*  }*/
/*}*/

/*@media (max-width: 360px) {*/
/*  .hero h1 {*/
/*    font-size: 1.5rem;*/
/*  }*/

/*  .hero-subtitle {*/
/*    font-size: 0.875rem;*/
/*  }*/

/*  .container {*/
/*    padding: 0 var(--space-xs);*/
/*  }*/
/*}*/

/* Enhanced responsive utilities */

/* Utility Classes */
/*.text-center {*/
/*  text-align: center;*/
/*}*/

/*.text-balance {*/
/*  text-wrap: balance;*/
/*}*/

/*.text-pretty {*/
/*  text-wrap: pretty;*/
/*}*/

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

/*.fade-in {*/
/*  opacity: 0;*/
/*  transform: translateY(20px);*/
/*  transition: all var(--transition-slow);*/
/*}*/

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

/*.slide-up {*/
/*  opacity: 0;*/
/*  transform: translateY(50px);*/
/*  transition: all var(--transition-slow);*/
/*}*/

/*.slide-up.visible {*/
/*  opacity: 1;*/
/*  transform: translateY(0);*/
/*}*/

/*.slide-left {*/
/*  opacity: 0;*/
/*  transform: translateX(50px);*/
/*  transition: all var(--transition-slow);*/
/*}*/

/*.slide-left.visible {*/
/*  opacity: 1;*/
/*  transform: translateX(0);*/
/*}*/

/*.slide-right {*/
/*  opacity: 0;*/
/*  transform: translateX(-50px);*/
/*  transition: all var(--transition-slow);*/
/*}*/

/*.slide-right.visible {*/
/*  opacity: 1;*/
/*  transform: translateX(0);*/
/*}*/

/*.scale-in {*/
/*  opacity: 0;*/
/*  transform: scale(0.8);*/
/*  transition: all var(--transition-slow);*/
/*}*/

/*.scale-in.visible {*/
/*  opacity: 1;*/
/*  transform: scale(1);*/
/*}*/

/*.stagger-child {*/
/*  opacity: 0;*/
/*  transform: translateY(20px);*/
/*  transition: all var(--transition-normal);*/
/*}*/

/*.stagger-child.visible {*/
/*  opacity: 1;*/
/*  transform: translateY(0);*/
/*}*/

/* Parallax Effects */
/*.parallax {*/
/*  will-change: transform;*/
/*}*/

/* Counter Animation */
/*.counter {*/
/*  font-variant-numeric: tabular-nums;*/
/*  transition: all var(--transition-normal);*/
/*}*/

/* Typewriter Effect */
/*.typewriter {*/
/*  overflow: hidden;*/
/*  white-space: nowrap;*/
/*  animation: typing 3.5s steps(40, end);*/
/*}*/

/*@keyframes typing {*/
/*  from {*/
/*    width: 0;*/
/*  }*/
/*  to {*/
/*    width: 100%;*/
/*  }*/
/*}*/

/* Enhanced Button Animations */
/*.btn {*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  transition: all var(--transition-normal);*/
/*  transform: translateY(0);*/
/*}*/

/*.btn:hover {*/
/*  transform: translateY(-2px);*/
/*  box-shadow: var(--shadow-lg);*/
/*}*/

/*.btn:active {*/
/*  transform: translateY(0);*/
/*}*/

/*.btn.loading {*/
/*  pointer-events: none;*/
/*  opacity: 0.7;*/
/*}*/

/*.btn.loading::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  width: 16px;*/
/*  height: 16px;*/
/*  margin: -8px 0 0 -8px;*/
/*  border: 2px solid transparent;*/
/*  border-top: 2px solid currentColor;*/
/*  border-radius: 50%;*/
/*  animation: spin 1s linear infinite;*/
/*}*/

/* Enhanced Card Animations */
/*.feature-card,*/
/*.pricing-card,*/
/*.testimonial-card {*/
/*  transition: all var(--transition-normal);*/
/*  transform: translateY(0);*/
/*}*/

/*.feature-card:hover,*/
/*.pricing-card:hover,*/
/*.testimonial-card:hover {*/
/*  transform: translateY(-8px);*/
/*  box-shadow: var(--shadow-xl);*/
/*}*/

/* Modal Animations */
/*.modal {*/
/*  transition: all var(--transition-normal);*/
/*}*/

/*.modal-content {*/
/*  animation: modalSlideIn 0.3s ease-out;*/
/*}*/

/*@keyframes modalSlideIn {*/
/*  from {*/
/*    opacity: 0;*/
/*    transform: scale(0.9) translateY(-50px);*/
/*  }*/
/*  to {*/
/*    opacity: 1;*/
/*    transform: scale(1) translateY(0);*/
/*  }*/
/*}*/

/* Toast Animations */
/*.toast {*/
/*  animation: toastSlideIn 0.3s ease-out;*/
/*}*/

/*@keyframes toastSlideIn {*/
/*  from {*/
/*    transform: translateX(100%) scale(0.9);*/
/*    opacity: 0;*/
/*  }*/
/*  to {*/
/*    transform: translateX(0) scale(1);*/
/*    opacity: 1;*/
/*  }*/
/*}*/

/* Accordion Animations */
/*.accordion {*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-lg);*/
/*  overflow: hidden;*/
/*}*/

/*.accordion-item {*/
/*  border-bottom: 1px solid var(--color-border);*/
/*}*/

/*.accordion-item:last-child {*/
/*  border-bottom: none;*/
/*}*/

/*.accordion-trigger {*/
/*  width: 100%;*/
/*  padding: var(--space-lg);*/
/*  background: none;*/
/*  border: none;*/
/*  text-align: left;*/
/*  font-size: 1rem;*/
/*  font-weight: 500;*/
/*  color: var(--color-text-primary);*/
/*  cursor: pointer;*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  transition: all var(--transition-fast);*/
/*}*/

/*.accordion-trigger:hover {*/
/*  background-color: var(--color-surface-hover);*/
/*}*/

/*.accordion-trigger[aria-expanded="true"] {*/
/*  background-color: var(--color-surface-elevated);*/
/*}*/

/*.accordion-icon {*/
/*  transition: transform var(--transition-fast);*/
/*}*/

/*.accordion-trigger[aria-expanded="true"] .accordion-icon {*/
/*  transform: rotate(180deg);*/
/*}*/

/*.accordion-content {*/
/*  padding: 0 var(--space-lg) var(--space-lg);*/
/*  color: var(--color-text-secondary);*/
/*  line-height: 1.6;*/
/*}*/

/*.accordion-panel {*/
/*  transition: max-height var(--transition-normal) ease-out;*/
/*  overflow: hidden;*/
/*}*/

/* Tab Animations */
/*.tabs {*/
/*  width: 100%;*/
/*}*/

/*.tab-list {*/
/*  display: flex;*/
/*  border-bottom: 1px solid var(--color-border);*/
/*  margin-bottom: var(--space-lg);*/
/*  overflow-x: auto;*/
/*}*/

/*.tab-trigger {*/
/*  background: none;*/
/*  border: none;*/
/*  padding: var(--space-md) var(--space-lg);*/
/*  font-size: 0.875rem;*/
/*  font-weight: 500;*/
/*  color: var(--color-text-secondary);*/
/*  cursor: pointer;*/
/*  border-bottom: 2px solid transparent;*/
/*  transition: all var(--transition-fast);*/
/*  white-space: nowrap;*/
/*  position: relative;*/
/*}*/

/*.tab-trigger::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  width: 0;*/
/*  height: 2px;*/
/*  background: var(--color-primary);*/
/*  transition: width var(--transition-normal);*/
/*}*/

/*.tab-trigger[aria-selected="true"] {*/
/*  color: var(--color-primary);*/
/*  border-bottom-color: var(--color-primary);*/
/*}*/

/*.tab-trigger[aria-selected="true"]::after {*/
/*  width: 100%;*/
/*}*/

/*.tab-panel {*/
/*  display: none;*/
/*  animation: tabFadeIn 0.3s ease-out;*/
/*}*/

/*@keyframes tabFadeIn {*/
/*  from {*/
/*    opacity: 0;*/
/*    transform: translateY(10px);*/
/*  }*/
/*  to {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/

/* Pricing Tables */
/*.pricing-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
/*  gap: var(--space-xl);*/
/*  margin-top: var(--space-2xl);*/
/*}*/

/*.pricing-card {*/
/*  background: var(--color-surface-elevated);*/
/*  border: 2px solid var(--color-border);*/
/*  border-radius: var(--radius-lg);*/
/*  padding: var(--space-2xl);*/
/*  text-align: center;*/
/*  position: relative;*/
/*  transition: all var(--transition-normal);*/
/*}*/

/*.pricing-card:hover {*/
/*  transform: translateY(-4px);*/
/*  box-shadow: var(--shadow-xl);*/
/*}*/

/*.pricing-card.featured {*/
/*  border-color: var(--color-primary);*/
/*  background: linear-gradient(135deg, var(--color-surface-elevated) 0%, rgba(109, 40, 217, 0.05) 100%);*/
/*}*/

/*.pricing-badge {*/
/*  position: absolute;*/
/*  top: -12px;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);*/
/*  color: white;*/
/*  padding: var(--space-xs) var(--space-md);*/
/*  border-radius: var(--radius-xl);*/
/*  font-size: 0.75rem;*/
/*  font-weight: 600;*/
/*}*/

/*.pricing-plan {*/
/*  font-size: 1.25rem;*/
/*  font-weight: 600;*/
/*  color: var(--color-text-primary);*/
/*  margin-bottom: var(--space-sm);*/
/*}*/

/*.pricing-price {*/
/*  font-family: var(--font-display);*/
/*  font-size: 3rem;*/
/*  font-weight: 700;*/
/*  color: var(--color-primary);*/
/*  margin-bottom: var(--space-xs);*/
/*}*/

/*.pricing-period {*/
/*  color: var(--color-text-muted);*/
/*  font-size: 0.875rem;*/
/*  margin-bottom: var(--space-xl);*/
/*}*/

/*.pricing-features {*/
/*  list-style: none;*/
/*  margin-bottom: var(--space-xl);*/
/*}*/

/*.pricing-features li {*/
/*  padding: var(--space-sm) 0;*/
/*  color: var(--color-text-secondary);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-sm);*/
/*}*/

/*.pricing-features li::before {*/
/*  content: "âœ“";*/
/*  color: var(--color-primary);*/
/*  font-weight: 600;*/
/*}*/

/* Stepper/Timeline */
/*.stepper {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  gap: var(--space-lg);*/
/*  margin: var(--space-2xl) 0;*/
/*  flex-wrap: wrap;*/
/*}*/

/*.step {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: center;*/
/*  text-align: center;*/
/*  flex: 1;*/
/*  min-width: 150px;*/
/*  position: relative;*/
/*}*/

/*.step:not(:last-child)::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 20px;*/
/*  right: -50%;*/
/*  width: 100%;*/
/*  height: 2px;*/
/*  background: var(--color-border);*/
/*  z-index: 0;*/
/*}*/

/*.step.active:not(:last-child)::after {*/
/*  background: var(--color-primary);*/
/*}*/

/*.step-icon {*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  border-radius: 50%;*/
/*  background: var(--color-surface);*/
/*  border: 2px solid var(--color-border);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  margin-bottom: var(--space-md);*/
/*  position: relative;*/
/*  z-index: 1;*/
/*  transition: all var(--transition-fast);*/
/*}*/

/*.step.active .step-icon {*/
/*  background: var(--color-primary);*/
/*  border-color: var(--color-primary);*/
/*  color: white;*/
/*}*/

/*.step-title {*/
/*  font-weight: 600;*/
/*  color: var(--color-text-primary);*/
/*  margin-bottom: var(--space-xs);*/
/*}*/

/*.step-description {*/
/*  font-size: 0.875rem;*/
/*  color: var(--color-text-secondary);*/
/*}*/

/* Code Blocks */
/*.code-block {*/
/*  background: var(--color-surface);*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-md);*/
/*  padding: var(--space-lg);*/
/*  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;*/
/*  font-size: 0.875rem;*/
/*  overflow-x: auto;*/
/*  position: relative;*/
/*}*/

/*.code-block::before {*/
/*  content: attr(data-language);*/
/*  position: absolute;*/
/*  top: var(--space-sm);*/
/*  right: var(--space-sm);*/
/*  font-size: 0.75rem;*/
/*  color: var(--color-text-muted);*/
/*  text-transform: uppercase;*/
/*}*/

/* Integration Cards */
/*.integration-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
/*  gap: var(--space-lg);*/
/*}*/

/*.integration-card {*/
/*  background: var(--color-surface-elevated);*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-lg);*/
/*  padding: var(--space-lg);*/
/*  text-align: center;*/
/*  cursor: pointer;*/
/*  transition: all var(--transition-normal);*/
/*}*/

/*.integration-card:hover {*/
/*  transform: translateY(-2px);*/
/*  box-shadow: var(--shadow-md);*/
/*  border-color: var(--color-primary-lighter);*/
/*}*/

/*.integration-logo {*/
/*  width: 48px;*/
/*  height: 48px;*/
/*  margin: 0 auto var(--space-md);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/

/*.integration-name {*/
/*  font-weight: 600;*/
/*  color: var(--color-text-primary);*/
/*  margin-bottom: var(--space-xs);*/
/*}*/

/*.integration-description {*/
/*  font-size: 0.875rem;*/
/*  color: var(--color-text-secondary);*/
/*}*/

/* Feature Cards */
/*.feature-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
/*  gap: var(--space-xl);*/
/*}*/

/*.feature-card {*/
/*  background: var(--color-surface-elevated);*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-lg);*/
/*  padding: var(--space-2xl);*/
/*  text-align: center;*/
/*  transition: all var(--transition-normal);*/
/*}*/

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

/*.feature-icon {*/
/*  width: 64px;*/
/*  height: 64px;*/
/*  margin: 0 auto var(--space-lg);*/
/*  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);*/
/*  border-radius: var(--radius-lg);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  color: white;*/
/*}*/

/*.feature-title {*/
/*  font-size: 1.25rem;*/
/*  font-weight: 600;*/
/*  color: var(--color-text-primary);*/
/*  margin-bottom: var(--space-md);*/
/*}*/

/*.feature-description {*/
/*  color: var(--color-text-secondary);*/
/*  line-height: 1.6;*/
/*}*/

/* Testimonial Cards */
/*.testimonial-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
/*  gap: var(--space-xl);*/
/*}*/

/*.testimonial-card {*/
/*  background: var(--color-surface-elevated);*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-lg);*/
/*  padding: var(--space-2xl);*/
/*  position: relative;*/
/*}*/

/*.testimonial-quote {*/
/*  font-size: 1.125rem;*/
/*  color: var(--color-text-primary);*/
/*  margin-bottom: var(--space-lg);*/
/*  line-height: 1.6;*/
/*}*/

/*.testimonial-quote::before {*/
/*  content: '"';*/
/*  font-size: 3rem;*/
/*  color: var(--color-primary);*/
/*  position: absolute;*/
/*  top: var(--space-md);*/
/*  left: var(--space-lg);*/
/*  line-height: 1;*/
/*}*/

/*.testimonial-author {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-md);*/
/*}*/

/*.testimonial-avatar {*/
/*  width: 48px;*/
/*  height: 48px;*/
/*  border-radius: 50%;*/
/*  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  color: white;*/
/*  font-weight: 600;*/
/*}*/

/*.testimonial-info h4 {*/
/*  font-size: 1rem;*/
/*  font-weight: 600;*/
/*  color: var(--color-text-primary);*/
/*  margin: 0;*/
/*}*/

/*.testimonial-info p {*/
/*  font-size: 0.875rem;*/
/*  color: var(--color-text-secondary);*/
/*  margin: 0;*/
/*}*/

/* Form Styles */
/*.form-group {*/
/*  margin-bottom: var(--space-lg);*/
/*  position: relative;*/
/*}*/

/*.form-label {*/
/*  display: block;*/
/*  font-weight: 500;*/
/*  color: var(--color-text-primary);*/
/*  margin-bottom: var(--space-sm);*/
/*}*/

/*.form-input,*/
/*.form-textarea,*/
/*.form-select {*/
/*  width: 100%;*/
/*  padding: var(--space-md);*/
/*  border: 1px solid var(--color-border);*/
/*  border-radius: var(--radius-md);*/
/*  background: var(--color-surface-elevated);*/
/*  color: var(--color-text-primary);*/
/*  font-family: var(--font-sans);*/
/*  font-size: 0.875rem;*/
/*  transition: all var(--transition-fast);*/
/*}*/

/*.form-input:focus,*/
/*.form-textarea:focus,*/
/*.form-select:focus {*/
/*  outline: none;*/
/*  border-color: var(--color-primary);*/
/*  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);*/
/*  transform: scale(1.02);*/
/*}*/

/*.form-textarea {*/
/*  resize: vertical;*/
/*  min-height: 120px;*/
/*}*/

/*.form-checkbox {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: var(--space-sm);*/
/*}*/

/*.form-checkbox input {*/
/*  width: 16px;*/
/*  height: 16px;*/
/*}*/

/*.field-error {*/
/*  animation: shake 0.5s ease-in-out;*/
/*}*/

/* Honeypot (hidden spam protection) */
/*.honeypot {*/
/*  position: absolute;*/
/*  left: -9999px;*/
/*  opacity: 0;*/
/*  pointer-events: none;*/
/*}*/

/* Loading States */
/*.loading {*/
/*  opacity: 0.6;*/
/*  pointer-events: none;*/
/*}*/

/*.loading-spinner {*/
/*  display: inline-block;*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  border: 2px solid var(--color-border);*/
/*  border-radius: 50%;*/
/*  border-top-color: var(--color-primary);*/
/*  animation: spin 1s linear infinite;*/
/*}*/

/* Utility Animation Classes */
/*.animate-pulse {*/
/*  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;*/
/*}*/

/*.animate-bounce {*/
/*  animation: bounce 1s infinite;*/
/*}*/

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

/*.animate-glow {*/
/*  animation: glow 2s ease-in-out infinite alternate;*/
/*}*/

/* Reduced Motion Support */
/*@media (prefers-reduced-motion: reduce) {*/
/*  *,*/
/*  *::before,*/
/*  *::after {*/
/*    animation-duration: 0.01ms !important;*/
/*    animation-iteration-count: 1 !important;*/
/*    transition-duration: 0.01ms !important;*/
/*    scroll-behavior: auto !important;*/
/*  }*/

/*  .parallax {*/
/*    transform: none !important;*/
/*  }*/
/*}*/

/* Performance Optimizations */
/*.will-change-transform {*/
/*  will-change: transform;*/
/*}*/

/*.will-change-opacity {*/
/*  will-change: opacity;*/
/*}*/

/*.gpu-accelerated {*/
/*  transform: translateZ(0);*/
/*  backface-visibility: hidden;*/
/*  perspective: 1000px;*/
/*}*/

/* Animation Keyframes */
/*@keyframes fadeIn {*/
/*  from {*/
/*    opacity: 0;*/
/*    transform: translateY(30px);*/
/*  }*/
/*  to {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/

/*@keyframes slideUp {*/
/*  from {*/
/*    opacity: 0;*/
/*    transform: translateY(50px);*/
/*  }*/
/*  to {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/

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

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

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

/*@keyframes pulse {*/
/*  0%,*/
/*  100% {*/
/*    transform: scale(1);*/
/*  }*/
/*  50% {*/
/*    transform: scale(1.05);*/
/*  }*/
/*}*/

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

/*@keyframes bounce {*/
/*  0%,*/
/*  20%,*/
/*  53%,*/
/*  80%,*/
/*  100% {*/
/*    transform: translate3d(0, 0, 0);*/
/*  }*/
/*  40%,*/
/*  43% {*/
/*    transform: translate3d(0, -30px, 0);*/
/*  }*/
/*  70% {*/
/*    transform: translate3d(0, -15px, 0);*/
/*  }*/
/*  90% {*/
/*    transform: translate3d(0, -4px, 0);*/
/*  }*/
/*}*/

/*@keyframes shake {*/
/*  0%,*/
/*  100% {*/
/*    transform: translateX(0);*/
/*  }*/
/*  10%,*/
/*  30%,*/
/*  50%,*/
/*  70%,*/
/*  90% {*/
/*    transform: translateX(-10px);*/
/*  }*/
/*  20%,*/
/*  40%,*/
/*  60%,*/
/*  80% {*/
/*    transform: translateX(10px);*/
/*  }*/
/*}*/

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

/*@keyframes glow {*/
/*  0%,*/
/*  100% {*/
/*    box-shadow: 0 0 5px var(--color-primary);*/
/*  }*/
/*  50% {*/
/*    box-shadow: 0 0 20px var(--color-primary), 0 0 30px var(--color-primary);*/
/*  }*/
/*}*/

/*@keyframes spin {*/
/*  to {*/
/*    transform: rotate(360deg);*/
/*  }*/
/*}*/


/* Enwave Tech - Core Styles */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

/* CSS Custom Properties */
:root {
  /* Colors - Light Theme */
--color-primary: #0f172a;           /* Deep navy (main brand) */
  --color-primary-light: #1e293b;
  --color-primary-lighter: #334155;

  --color-accent: #22c55e;            /* Fresh green accent */
  
  --color-background: #f8fafc;        /* Soft off-white */
  --color-surface: #ffffff;
  --color-surface-elevated: #ffffff;

  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;

  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;

  /* Dark Theme Colors */
  --color-dark-background: #020617;   /* Ultra dark (white logo pop karega 🔥) */
  --color-dark-surface: #0f172a;
  --color-dark-surface-elevated: #1e293b;

  --color-dark-text-primary: #f8fafc;
  --color-dark-text-secondary: #cbd5f5;
  --color-dark-text-muted: #64748b;

  --color-dark-border: #1e293b;
  --color-dark-border-light: #334155;

  /* Animation / Hover */
  --color-surface-hover: #f1f5f9;

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  /* Animation Colors */
  --color-surface-hover: #f3f4f6;
}


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

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-background);
  transition: background-color var(--transition-normal), color var(--transition-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-lighter) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

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

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

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

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

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

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

.section-sm {
  padding: var(--space-2xl) 0;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-xl);
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

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

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-primary.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.btn-secondary {
  background-color: var(--color-surface-elevated);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background-color: var(--color-surface);
  border-color: var(--color-primary);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-secondary.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-secondary.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-text-secondary);
}

.btn-ghost:hover {
  background-color: var(--color-surface);
  color: var(--color-text-primary);
}

.btn-ghost:active {
  transform: translateY(0);
}

.btn-ghost.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-ghost.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Cards */
.card {
  background-color: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  transform: translateY(0);
}

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

.card-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .card-glass {
  /* background: rgba(26, 26, 46, 0.6); */
  border: 1px solid rgba(167, 139, 250, 0.2);
}

.feature-card,
.pricing-card,
.testimonial-card {
  transition: all var(--transition-normal);
  transform: translateY(0);
}

.feature-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-normal);
}

/* [data-theme="dark"] .header {
  background: rgba(15, 15, 35, 0.8);
  border-bottom-color: var(--color-border);
} */

.header.scrolled {
  background: var(--color-surface-elevated);
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  min-height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-text-primary);
  text-decoration: none;
}

.logo svg {
  width: 32px;
  height: 32px;
  transition: transform var(--transition-fast);
}

.logo:hover svg {
  transform: scale(1.05);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-link {
  color: var(--color-text-secondary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

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

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  color: var(--color-text-primary);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--color-surface-elevated);
  border-left: 1px solid var(--color-border);
  padding: var(--space-xl);
  transition: right var(--transition-normal);
  z-index: 1001;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1000;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  background-color: var(--color-surface);
  color: var(--color-text-primary);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  padding: calc(70px + var(--space-4xl)) 0 var(--space-4xl);
  background: linear-gradient(135deg, var(--color-background) 0%, var(--color-surface) 100%);
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

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

.hero-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-md);
  background-color: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Footer */
.footer {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-4xl) 0 var(--space-xl);
}

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

.footer-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

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

.social-links a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
    padding: 0 var(--space-lg);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 960px;
    padding: 0 var(--space-md);
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .integration-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

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

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .stats {
    gap: var(--space-lg);
    flex-direction: column;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

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

  .hero {
    padding: var(--space-2xl) 0;
  }
}

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

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .stats {
    text-align: center;
  }

  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
  }

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

@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.875rem;
  }

  .container {
    padding: 0 var(--space-xs);
  }
}

/* Enhanced responsive utilities */

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-slow);
}

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

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all var(--transition-slow);
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(50px);
  transition: all var(--transition-slow);
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: all var(--transition-slow);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-slow);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}

.stagger-child.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax Effects */
.parallax {
  will-change: transform;
}

/* Counter Animation */
.counter {
  font-variant-numeric: tabular-nums;
  transition: all var(--transition-normal);
}

/* Typewriter Effect */
.typewriter {
  overflow: hidden;
  white-space: nowrap;
  animation: typing 3.5s steps(40, end);
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Enhanced Button Animations */
.btn {
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  transform: translateY(0);
}

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

.btn:active {
  transform: translateY(0);
}

.btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Enhanced Card Animations */
.feature-card,
.pricing-card,
.testimonial-card {
  transition: all var(--transition-normal);
  transform: translateY(0);
}

.feature-card:hover,
.pricing-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Modal Animations */
.modal {
  transition: all var(--transition-normal);
}

.modal-content {
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Toast Animations */
.toast {
  animation: toastSlideIn 0.3s ease-out;
}

@keyframes toastSlideIn {
  from {
    transform: translateX(100%) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

/* Accordion Animations */
.accordion {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
}

.accordion-trigger:hover {
  background-color: var(--color-surface-hover);
}

.accordion-trigger[aria-expanded="true"] {
  background-color: var(--color-surface-elevated);
}

.accordion-icon {
  transition: transform var(--transition-fast);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.accordion-panel {
  transition: max-height var(--transition-normal) ease-out;
  overflow: hidden;
}

/* Tab Animations */
.tabs {
  width: 100%;
}

.tab-list {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-lg);
  overflow-x: auto;
}

.tab-trigger {
  background: none;
  border: none;
  padding: var(--space-md) var(--space-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.tab-trigger::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-normal);
}

.tab-trigger[aria-selected="true"] {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.tab-trigger[aria-selected="true"]::after {
  width: 100%;
}

.tab-panel {
  display: none;
  animation: tabFadeIn 0.3s ease-out;
}

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

/* Pricing Tables */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.pricing-card {
  background: var(--color-surface-elevated);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
}

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

.pricing-card.featured {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-surface-elevated) 0%, rgba(109, 40, 217, 0.05) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-plan {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.pricing-period {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-xl);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-xl);
}

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

.pricing-features li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 600;
}

/* Stepper/Timeline */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 150px;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.step.active:not(:last-child)::after {
  background: var(--color-primary);
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
  transition: all var(--transition-fast);
}

.step.active .step-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.step-title {
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.step-description {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/* Code Blocks */
.code-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.875rem;
  overflow-x: auto;
  position: relative;
}

.code-block::before {
  content: attr(data-language);
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

/* Integration Cards */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.integration-card {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.integration-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-lighter);
}

.integration-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-name {
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.integration-description {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-normal);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.feature-description {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Testimonial Cards */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
}

.testimonial-quote {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--color-primary);
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Form Styles */
.form-group {
  margin-bottom: var(--space-lg);
  position: relative;
}

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

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-elevated);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
  transform: scale(1.02);
}

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

.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.form-checkbox input {
  width: 16px;
  height: 16px;
}

.field-error {
  animation: shake 0.5s ease-in-out;
}

/* Honeypot (hidden spam protection) */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  border-top-color: var(--color-primary);
  animation: spin 1s linear infinite;
}

/* Utility Animation Classes */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

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

.animate-glow {
  animation: glow 2s ease-in-out infinite alternate;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .parallax {
    transform: none !important;
  }
}

/* Performance Optimizations */
.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}

.gpu-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

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

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

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}

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

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px var(--color-primary);
  }
  50% {
    box-shadow: 0 0 20px var(--color-primary), 0 0 30px var(--color-primary);
  }
}

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

/* Improved form styling for better consistency */
.contact-form {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

/* [data-theme="dark"] .contact-form {
  background: rgba(26, 26, 46, 0.8);
  border-color: var(--color-border);
  backdrop-filter: blur(10px);
} */

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea,
[data-theme="dark"] .form-select {
  /* background: var(--color-dark-surface); */
  border-color: var(--color-dark-border);
  color: var(--color-dark-text-primary);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}

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

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-checkbox input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  accent-color: var(--color-primary);
}

.form-checkbox-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.form-checkbox-label a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-checkbox-label a:hover {
  color: var(--color-primary-light);
}

/* Enhanced contact options styling */
.contact-option {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.contact-option::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.1), transparent);
  transition: left var(--transition-slow);
}

.contact-option:hover::before {
  left: 100%;
}

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

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform var(--transition-fast);
}

.contact-option:hover .contact-icon {
  transform: scale(1.1);
}

.contact-option h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.contact-option p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

/* Improved contact info cards */
.contact-info {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-normal);
}

.contact-info:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-info .contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.contact-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.contact-info p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
}

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

.contact-info a:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.contact-info address {
  font-style: normal;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Contact Page Specific Styles */

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-label {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-primary);
}

.form-input {
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-surface-elevated);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}

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

select.form-input {
  cursor: pointer;
}

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

/* Checkbox Styles */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
}

.checkbox-input {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-surface-elevated);
  position: relative;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  margin-top: 2px;
}

.checkbox-input:checked + .checkbox-custom {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.checkbox-input:checked + .checkbox-custom::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  color: var(--color-text-secondary);
}

/* Feature Icon Styling for Contact Methods */
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-lg);
  color: white;
  margin: 0 auto;
}

/* Text Center Utility */
.text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-badges {
    justify-content: center;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .contact-form {
    margin-bottom: var(--space-2xl);
  }

  .hero-content {
    padding: 0 var(--space-md);
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .flex.justify-center {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
  }

  .badge {
    width: fit-content;
  }

  .stats {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }
}

/* Dark theme specific adjustments */
[data-theme="dark"] .form-input {
  /* background-color: var(--color-surface); */
  border-color: var(--color-border);
}

[data-theme="dark"] .form-input:focus {
  /* border-color: var(--color-primary-light); */
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.1);
}

[data-theme="dark"] .checkbox-custom {
  background-color: var(--color-surface);
  border-color: var(--color-border);
}



