@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.hero-section {
  background: linear-gradient(135deg, #F8F6F3 0%, #FFFFFF 100%);
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 500px;
}

.hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1F2937;
  margin-bottom: 24px;
}

.text-green {
  color: #10B981;
}

.hero-subtitle {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #6B7280;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #1E40AF;
  padding: 16px 32px;
  border: 2px solid #1E40AF;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #1E40AF;
  color: white;
}

.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6B7280;
}

.feature-icon {
  color: #10B981;
}

.hero-demo {
  position: relative;
}

.demo-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

.demo-header {
  background: #F9FAFB;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #E5E7EB;
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #D1D5DB;
}

.demo-dots span:first-child {
  background: #EF4444;
}

.demo-dots span:nth-child(2) {
  background: #F59E0B;
}

.demo-dots span:nth-child(3) {
  background: #10B981;
}

.demo-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #374151;
}

.demo-content {
  display: flex;
  min-height: 400px;
}

.demo-sidebar {
  width: 200px;
  background: #F9FAFB;
  padding: 16px 0;
  border-right: 1px solid #E5E7EB;
}

.sidebar-item {
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-item:hover {
  background: #F3F4F6;
  color: #374151;
}

.sidebar-item.active {
  background: #EBF8FF;
  color: #1E40AF;
  border-right: 3px solid #1E40AF;
}

.demo-main {
  flex: 1;
  padding: 24px;
}

.demo-main h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 16px;
}

.issue-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

.issue-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.issue-status.critical {
  background: #FEE2E2;
  color: #DC2626;
}

.issue-status.scheduled {
  background: #FEF3C7;
  color: #D97706;
}

.issue-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1F2937;
  margin-bottom: 4px;
}

.issue-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6B7280;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .demo-content {
    flex-direction: column;
  }
  
  .demo-sidebar {
    width: 100%;
    display: flex;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid #E5E7EB;
  }
  
  .sidebar-item {
    white-space: nowrap;
    min-width: 120px;
  }
}