

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.cycle-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 1;
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.center-circle h3 {
  font-size: 1.5rem;
  color: #667eea;
  margin-bottom: 5px;
}

.center-circle p {
  font-size: 0.9rem;
  color: #666;
}

.step-item {
  position: absolute;
  width: 280px;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.step-item.step-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.step-item.step-2 {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.step-item.step-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.step-item.step-4 {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: #667eea;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.step-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

.arrow {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 5;
}

.arrow svg {
  width: 100%;
  height: 100%;
  fill: rgba(255, 255, 255, 0.6);
}

.arrow-1 {
  top: 20%;
  right: 20%;
  transform: rotate(45deg);
}

.arrow-2 {
  bottom: 20%;
  right: 20%;
  transform: rotate(135deg);
}

.arrow-3 {
  bottom: 20%;
  left: 20%;
  transform: rotate(225deg);
}

.arrow-4 {
  top: 20%;
  left: 20%;
  transform: rotate(315deg);
}

@media (max-width: 968px) {
  .cycle-wrapper {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 30px;
    aspect-ratio: auto;
  }

  .step-item {
    position: static !important;
    transform: none !important;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .center-circle {
    position: static;
    transform: none;
    margin: 30px auto;
    order: -1;
  }

  .arrow {
    display: none;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}
