:root {
  --neural-primary: #0066ff;
  --neural-secondary: #00ccff;
  --neural-accent: #ff0066;
  --neural-dark: #0a0a0f;
  --neural-darker: #050508;
  --neural-light: #f8faff;
  --neural-gray: #1a1a24;
  --neural-text: #ffffff;
  --neural-muted: #8892b0;
  --glow-blue: rgba(0, 102, 255, 0.4);
  --glow-cyan: rgba(0, 204, 255, 0.3);
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--neural-darker);
  color: var(--neural-text);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px; /* Added to account for fixed header */
}

/* Neural Network Background */
.neural-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
}

/* Cursor Trail */
.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, var(--neural-primary), transparent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: all 0.1s ease;
}

/* FIXED HEADER STYLES */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 102, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  background: rgba(5, 5, 8, 0.98);
  border-bottom-color: rgba(0, 102, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 102, 255, 0.1);
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo styling for text logo */
.site-header .logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neural-text);
  text-decoration: none;
  position: relative;
  letter-spacing: -0.5px;
}

.site-header .logo::after {
  content: '●';
  color: var(--neural-primary);
  margin-left: 4px;
  animation: pulse 2s infinite;
}

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

/* Desktop Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.main-nav a {
  color: var(--neural-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a:not(.btn-primary):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neural-primary), var(--neural-secondary));
  transition: width 0.3s ease;
}

.main-nav a:not(.btn-primary):hover:after,
.main-nav a:not(.btn-primary).active:after {
  width: 100%;
}

.main-nav a.btn-primary {
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--neural-primary), var(--neural-secondary));
  color: white;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.main-nav a.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neural-text);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
  top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
  bottom: 0;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 11px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(5, 5, 8, 0.98);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: height 0.4s ease;
  z-index: 1000;
}

.mobile-nav.active {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.2s;
}

.mobile-nav.active ul {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav li {
  margin: 1.5rem 0;
}

.mobile-nav a {
  color: var(--neural-text);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.2s ease;
  padding: 0.5rem 1rem;
  display: inline-block;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--neural-secondary);
}
/* END FIXED HEADER STYLES */

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
  padding: 0 3rem;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--neural-secondary);
  margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--neural-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--neural-primary) 30%, var(--neural-secondary) 70%, #ffffff 100%);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease-in-out infinite;
}

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

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--neural-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.btn-primary {
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, var(--neural-primary), var(--neural-secondary));
  color: var(--neural-text);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
}

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

.btn-secondary {
  padding: 1.2rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--neural-text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--neural-primary);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: left;
}

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

.stat-label {
  font-size: 0.85rem;
  color: var(--neural-muted);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.neural-interface {
  width: 100%;
  max-width: 500px;
  height: 600px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 204, 255, 0.05));
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.interface-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 102, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.interface-dots {
  display: flex;
  gap: 0.5rem;
}

.interface-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neural-primary);
  opacity: 0.6;
}

.interface-dot:nth-child(2) { background: var(--neural-secondary); }
.interface-dot:nth-child(3) { background: var(--neural-accent); }

.interface-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--neural-muted);
}

.interface-body {
  padding: 2rem;
  height: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.data-stream {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.data-line {
  height: 3px;
  background: linear-gradient(90deg, var(--neural-primary), transparent);
  border-radius: 2px;
  animation: dataFlow 3s ease-in-out infinite;
}

.data-line:nth-child(2) { width: 75%; animation-delay: 0.5s; }
.data-line:nth-child(3) { width: 90%; animation-delay: 1s; }
.data-line:nth-child(4) { width: 60%; animation-delay: 1.5s; }
.data-line:nth-child(5) { width: 85%; animation-delay: 2s; }

@keyframes dataFlow {
  0%, 100% { opacity: 0.3; transform: scaleX(0); }
  50% { opacity: 1; transform: scaleX(1); }
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: auto;
}

.metric-card {
  background: rgba(0, 102, 255, 0.05);
  border: 1px solid rgba(0, 102, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neural-primary);
  margin-bottom: 0.3rem;
}

.metric-label {
  font-size: 0.7rem;
  color: var(--neural-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Services Section */
.services {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--neural-darker) 0%, var(--neural-gray) 100%);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--neural-text), var(--neural-primary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--neural-muted);
  max-width: 700px;
  margin: 0 auto;
}

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

.service-card {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 204, 255, 0.02));
  border: 1px solid rgba(0, 102, 255, 0.1);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neural-primary), var(--neural-secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--neural-primary), var(--neural-secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--neural-text);
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--neural-primary), var(--neural-secondary));
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::after {
  opacity: 0.3;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--neural-text);
}

.service-description {
  color: var(--neural-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  text-align: left;
}

.service-features li {
  color: var(--neural-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--neural-primary);
  font-weight: 600;
}

/* Enhanced Busywork Section - Cleaner & More Polished */
.busywork {
  padding: 10rem 0;
  background: linear-gradient(180deg, var(--neural-darker) 0%, rgba(10, 10, 15, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.busywork::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 0, 102, 0.03) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(0, 102, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.busywork-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
}

.busywork-header {
  text-align: center;
  margin-bottom: 6rem;
}

.busywork-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ff0066 0%, #ff4d8f 50%, #ff6b9e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.busywork-subtitle {
  font-size: 1.3rem;
  color: var(--neural-muted);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

/* Enhanced Comparison Layout */
.busywork-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
  align-items: start;
}

.busywork-column {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.busywork-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  transition: all 0.3s ease;
}

.busywork-column.problem {
  border: 1px solid rgba(255, 0, 102, 0.15);
}

.busywork-column.problem::before {
  background: linear-gradient(90deg, #ff0066, #ff4d8f);
}

.busywork-column.solution {
  border: 1px solid rgba(0, 102, 255, 0.15);
}

.busywork-column.solution::before {
  background: linear-gradient(90deg, #0066ff, #00ccff);
}

.busywork-column:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.busywork-column.problem:hover {
  border-color: rgba(255, 0, 102, 0.3);
  box-shadow: 0 25px 60px rgba(255, 0, 102, 0.15);
}

.busywork-column.solution:hover {
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 25px 60px rgba(0, 102, 255, 0.15);
}

/* Enhanced Column Headers */
.column-header {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
}

.column-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.busywork-column:hover .column-icon::before {
  left: 100%;
}

.problem .column-icon {
  background: linear-gradient(135deg, #ff0066, #ff4d8f);
  color: white;
  box-shadow: 0 8px 25px rgba(255, 0, 102, 0.3);
}

.solution .column-icon {
  background: linear-gradient(135deg, #0066ff, #00ccff);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.column-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.problem .column-title {
  color: #ff4d8f;
}

.solution .column-title {
  color: #00ccff;
}

/* Enhanced Lists */
.busywork-list {
  list-style: none;
  margin: 0 0 2.5rem 0;
  padding: 0;
}

.busywork-list li {
  margin-bottom: 1.8rem;
  padding-left: 2.5rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--neural-text);
  transition: all 0.2s ease;
}

.busywork-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.problem .busywork-list li::before {
  background: linear-gradient(135deg, #ff0066, #ff4d8f);
  box-shadow: 0 0 10px rgba(255, 0, 102, 0.4);
}

.solution .busywork-list li::before {
  background: linear-gradient(135deg, #0066ff, #00ccff);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
}

.busywork-list li:hover::before {
  transform: scale(1.2);
}

/* Enhanced Impact Display */
.impact-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--neural-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.impact-value {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.5px;
}

.problem .impact-value {
  color: #ff0066;
  text-shadow: 0 0 20px rgba(255, 0, 102, 0.3);
}

.solution .impact-value {
  color: #00ccff;
  text-shadow: 0 0 20px rgba(0, 204, 255, 0.3);
}

/* Enhanced Feature Boxes */
.busywork-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
}

.feature-box {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 204, 255, 0.02));
  border: 1px solid rgba(0, 102, 255, 0.1);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0066ff, #00ccff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 102, 255, 0.2);
  border-color: rgba(0, 102, 255, 0.3);
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 204, 255, 0.04));
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0066ff, #00ccff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(0, 102, 255, 0.4);
}

.feature-box:hover .feature-icon::before {
  left: 100%;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #00ccff;
  line-height: 1.3;
}

.feature-description {
  color: var(--neural-muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .busywork-comparison {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .busywork-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .busywork {
    padding: 6rem 0;
  }
  
  .busywork-container {
    padding: 0 1.5rem;
  }
  
  .busywork-header {
    margin-bottom: 4rem;
  }
  
  .busywork-comparison {
    margin-bottom: 4rem;
  }
  
  .busywork-column {
    padding: 2.5rem 2rem;
  }
  
  .column-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .column-icon {
    margin: 0;
  }
  
  .busywork-list li {
    font-size: 1rem;
  }
  
  .impact-value {
    font-size: 1.8rem;
  }
  
  .feature-box {
    padding: 2.5rem 2rem;
  }
  
  .busywork-features {
    margin-top: 3rem;
  }
}

/* CTA Section */
.cta {
  padding: 8rem 0;
  background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  text-align: center;
  position: relative;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--neural-text), var(--neural-primary), var(--neural-secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-description {
  font-size: 1.3rem;
  color: var(--neural-muted);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-button {
  padding: 1.5rem 3rem;
  background: linear-gradient(135deg, var(--neural-primary), var(--neural-secondary));
  color: var(--neural-text);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

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

.cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 102, 255, 0.5);
}

.cta-button:hover::before {
  left: 100%;
}

/* Footer */
.footer {
  background: var(--neural-darker);
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(0, 102, 255, 0.1);
}

.footer-text {
  color: var(--neural-muted);
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

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

.footer-link {
  color: var(--neural-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .neural-interface {
    max-width: 400px;
    height: 500px;
  }
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-nav {
    display: block;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 1.5rem;
  }

  .hero, .services, .cta {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section-container {
    padding: 0 1.5rem;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Dropdown Expanding Steps */
.expandable .dropdown {
  display: none;
  padding-top: 1rem;
  color: var(--neural-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.expandable.active .dropdown {
  display: block;
}

.expandable .toggle {
  cursor: pointer;
}
