/* Specific styles for the enhanced design */

.step-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(49, 130, 206, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3182ce, #319cc4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
}

.step-card i {
  font-size: 28px;
}

/* Hero specific adjustments */

.hero {
  padding: 140px 0 100px;
}

.hero .lead {
  font-size: 1.25rem;
}

.screenshot-container {
  transform: perspective(1000px) rotateY(-1deg);
  transition: transform 0.6s ease;
}

.screenshot-container:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Typography improvements */

h2, h3, h4 {
  letter-spacing: -0.5px;
}

/* Button animation */

.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Responsive adjustments */

@media (max-width: 768px) {
  .step-card {
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 70px;
  }
}

