/*--------------------------------------------------------------
# Statistics Section
--------------------------------------------------------------*/
.statistics {
  position: relative;
  overflow: hidden;
}

.statistics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(53, 165, 216, 0.1), rgba(70, 158, 198, 0.1));
  opacity: 0.3;
}

.statistics .container {
  position: relative;
  z-index: 2;
}

.stat-item {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(53, 165, 216, 0.3);
}

.stat-icon {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.2) rotate(5deg);
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 42px;
  }
  
  .stat-icon {
    font-size: 40px;
  }
}

/*--------------------------------------------------------------
# Process Section
--------------------------------------------------------------*/
.process-item {
  padding: 40px 30px;
  background: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.process-item:nth-child(1) { animation-delay: 0.1s; }
.process-item:nth-child(2) { animation-delay: 0.2s; }
.process-item:nth-child(3) { animation-delay: 0.3s; }
.process-item:nth-child(4) { animation-delay: 0.4s; }

.process-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(53, 165, 216, 0.05), rgba(70, 158, 198, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-item:hover::before {
  opacity: 1;
}

.process-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(53, 165, 216, 0.2);
}

.process-number {
  font-size: 80px;
  font-weight: 900;
  color: rgba(53, 165, 216, 0.1);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
  font-family: var(--heading-font);
  transition: all 0.4s ease;
}

.process-item:hover .process-number {
  color: rgba(53, 165, 216, 0.2);
  transform: scale(1.1);
}

.process-icon {
  font-size: 64px;
  color: var(--accent-color);
  margin: 30px 0 25px 0;
  display: inline-block;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.process-item:hover .process-icon {
  transform: scale(1.15) rotate(5deg);
}

.process-item h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  position: relative;
  z-index: 2;
  margin: 0;
  text-align: center;
  flex-grow: 1;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.feature-item {
  padding: 40px 30px;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
  transform: translateX(-30px);
  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }

.feature-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--accent-color), #469EC6);
  transition: height 0.4s ease;
}

.feature-item:hover::after {
  height: 100%;
}

.feature-item:hover {
  transform: translateX(10px) translateY(-5px);
  border-left-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(53, 165, 216, 0.15);
}

.feature-icon {
  font-size: 56px;
  color: var(--accent-color);
  margin-bottom: 25px;
  display: inline-block;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, rgba(53, 165, 216, 0.1), rgba(70, 158, 198, 0.1));
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(53, 165, 216, 0.2), rgba(70, 158, 198, 0.2));
}

.feature-item h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.feature-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  margin: 0;
}

