/* How It Works Section Styles - POPPINS FONT */
.how-it-works-section {
  padding: 80px 20px;
  background-color: #FFFFFF; /* White background to contrast with blue pricing section below */
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-it-works-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #16224C; /* Brand navy */
  margin-bottom: 16px;
  line-height: 1.2;
}

.how-it-works-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #16224C; /* Brand navy for subtitle */
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.8;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.step-card {
  position: relative;
  background: #FFFFFF; /* Brand white */
  border-radius: 16px;
  padding: 40px 32px;
  /* Enhanced shadow and border for more impact on white background */
  box-shadow: 0 10px 40px -10px rgba(22, 34, 76, 0.15);
  border: 1px solid rgba(22, 34, 76, 0.08);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -15px rgba(22, 34, 76, 0.2);
  border-color: rgba(87, 199, 217, 0.3);
}

.step-number {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 48px;
  height: 48px;
  background: #16224C; /* Brand navy */
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(22, 34, 76, 0.25);
}

.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.step-icon-target {
  color: #57C7D9; /* Brand turquoise */
}

.step-icon-chart {
  color: #F08B5B; /* Brand coral/orange */
}

.step-icon-zap {
  color: #FDB714; /* Brand golden yellow */
}

.step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #16224C; /* Brand navy */
  margin-bottom: 12px;
}

.step-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #16224C; /* Brand navy */
  opacity: 0.7;
  line-height: 1.6;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 60px 20px;
  }
  
  .how-it-works-title {
    font-size: 2rem;
  }
  
  .how-it-works-subtitle {
    font-size: 1.125rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
I'm not 
