/* Hero Section Redesign Styles */

/* Main hero container */
.hero {
  padding: 40px 0 80px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
}

/* Improved two-column layout */
.hero-container {
  display: flex;
  align-items: start;
  gap: 40px;
  position: relative;
  padding: 20px 0;
}

/* Left column - text content */
.hero-content {
  flex: 1;
  max-width: 550px;
  padding-right: 20px;
}

/* Right column - visual elements */
.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  /* margin-top: -30px; /* Removed to allow flexbox align-items: center to work */ */
}

/* Enhanced infographic container */
.infographic-container {
  width: 100%;
  margin: 0 0 30px;
  padding: 20px 10px;
  background: #f9f9f9;
  border-radius: 12px;
  position: relative;
}

/* Improved infographic steps */
.infographic-step {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.infographic-step:hover {
  transform: scale(1.05);
}

/* Enhanced icon styling */
.infographic-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

.infographic-icon i {
  font-size: 28px;
  color: #FF6600;
}

/* Improved label styling */
.infographic-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  text-align: center;
  margin-top: 8px;
}

/* Enhanced arrow styling */
.infographic-arrow {
  height: 3px;
  background-color: #FF6600;
  position: relative;
  margin: 0 5px;
  z-index: 1;
}

.infographic-arrow::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -5px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #FF6600;
}

/* Integrated CTA section */
.hero-cta-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Enhanced CTA button */
.hero-cta-button {
  width: 100%;
  padding: 18px 30px;
  background-color: #FF6600;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(255, 102, 0, 0.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hero-cta-button:hover {
  background-color: #e55c00;
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
  transform: translateY(-2px);
}

.hero-cta-button i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.hero-cta-button:hover i {
  transform: translateX(5px);
}

/* Trust indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  margin: 0 15px;
  font-size: 14px;
  color: #555;
}

.trust-item i {
  color: #FF6600;
  margin-right: 6px;
  font-size: 16px;
}

/* Stats display */
.stats-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #FF6600;
  display: block;
}

.stat-label {
  font-size: 12px;
  color: #555;
  display: block;
  margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    gap: 50px;
  }
  
  .hero-content, .hero-visual {
    max-width: 100%;
    width: 100%;
  }
  
  .hero-content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .infographic-container {
    flex-direction: column;
    padding: 20px 10px;
  }
  
  .infographic-step {
    margin: 10px 0;
  }
  
  .infographic-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
    width: 30px;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-item {
    margin: 5px 0;
  }
  
  .stats-container {
    flex-wrap: wrap;
  }
  
  .stat-item {
    flex: 0 0 50%;
    margin-bottom: 15px;
  }
}
