/* Enterprise Demo Page Styles */

.enterprise-demo-page {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  min-height: 100vh;
}

.enterprise-demo-hero {
  padding: 80px 0 120px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.enterprise-demo-content {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.enterprise-demo-left {
  padding-top: 40px;
}

.enterprise-demo-heading {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.enterprise-demo-subheading {
  font-size: 24px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  font-weight: 400;
}

.enterprise-demo-process {
  margin-top: 48px;
}

.process-heading {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.process-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-right: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.enterprise-demo-right {
  position: relative;
}

.enterprise-demo-form-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.enterprise-demo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enterprise-demo-form .form-group {
  margin: 0;
}

.enterprise-demo-form input,
.enterprise-demo-form select,
.enterprise-demo-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.enterprise-demo-form input::placeholder,
.enterprise-demo-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.enterprise-demo-form input:focus,
.enterprise-demo-form select:focus,
.enterprise-demo-form textarea:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.enterprise-demo-form select {
  cursor: pointer;
  color: #ffffff;
}

.enterprise-demo-form select option {
  background: #2a2a2a;
  color: #ffffff;
}

.enterprise-demo-form button {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0;
}

.enterprise-demo-form button.blue {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.enterprise-demo-form button.blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .enterprise-demo-content {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 600px;
  }
  
  .enterprise-demo-hero {
    padding: 60px 0 80px;
  }
  
  .enterprise-demo-heading {
    font-size: 48px;
  }
  
  .enterprise-demo-subheading {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .enterprise-demo-hero {
    padding: 40px 0 60px;
  }
  
  .enterprise-demo-heading {
    font-size: 40px;
  }
  
  .enterprise-demo-subheading {
    font-size: 18px;
    margin-bottom: 32px;
  }
  
  .enterprise-demo-form-container {
    padding: 30px;
  }
  
  .enterprise-demo-process {
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .enterprise-demo-heading {
    font-size: 32px;
  }
  
  .enterprise-demo-form-container {
    padding: 20px;
  }
  
  .enterprise-demo-form input,
  .enterprise-demo-form select,
  .enterprise-demo-form textarea {
    padding: 14px;
  }
} 