/* Çalışma Süreci Bölümü */
.ms__processGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.ms__processCard {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 174, 0, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
}

.ms__processCard:hover {
  background: rgba(255, 174, 0, 0.05);
  border-color: rgba(255, 174, 0, 0.2);
  transform: translateY(-4px);
}

.ms__processNumber {
  position: absolute;
  top: -12px;
  left: 24px;
  background: #ffae00;
  color: #0a0a0c;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(255, 174, 0, 0.3);
}

.ms__processTitle {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 16px 0 12px;
}

.ms__processDesc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 15px;
}

/* İstatistikler Bölümü */
.ms__statsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.ms__statCard {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(255, 174, 0, 0.1) 0%, rgba(255, 174, 0, 0.05) 100%);
  border: 1px solid rgba(255, 174, 0, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.ms__statCard:hover {
  background: linear-gradient(135deg, rgba(255, 174, 0, 0.15) 0%, rgba(255, 174, 0, 0.08) 100%);
  transform: translateY(-2px);
}

.ms__statNumber {
  font-size: 48px;
  font-weight: 900;
  color: #ffae00;
  line-height: 1;
  margin-bottom: 8px;
}

.ms__statLabel {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Teknolojiler Bölümü */
.ms__techGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.ms__techCategory {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.ms__techCategory:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 174, 0, 0.2);
}

.ms__techTitle {
  font-size: 20px;
  font-weight: 700;
  color: #ffae00;
  margin-bottom: 20px;
  text-align: center;
}

.ms__techList {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.ms__techItem {
  background: rgba(255, 174, 0, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 174, 0, 0.2);
  transition: all 0.2s ease;
}

.ms__techItem:hover {
  background: rgba(255, 174, 0, 0.2);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .ms__processGrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ms__processCard {
    padding: 28px 20px;
  }
  
  .ms__processNumber {
    width: 40px;
    height: 40px;
    font-size: 16px;
    top: -10px;
    left: 20px;
  }
  
  .ms__processTitle {
    font-size: 18px;
    margin: 12px 0 10px;
  }
  
  .ms__statsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .ms__statCard {
    padding: 32px 16px;
  }
  
  .ms__statNumber {
    font-size: 36px;
  }
  
  .ms__statLabel {
    font-size: 14px;
  }
  
  .ms__techGrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .ms__techCategory {
    padding: 24px 20px;
  }
}
