.process-section {
  width: 100%;
  background-color: #fff;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.process-title {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  color: #111;
  margin-bottom: 15px;
}

.process-subtitle {
  font-size: 1.5rem;
  text-align: center;
  color: #666;
  margin-bottom: 80px;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.process-hexagon-container {
  position: relative;
  padding: 30px 0;
}

.process-steps {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Connector line */
.process-connector {
  position: absolute;
  top: 60px;
  left: 60px;
  width: 4px;
  height: calc(100% - 120px);
  background: linear-gradient(to bottom, #0033cc 0%, #0052cc 100%);
  z-index: 0;
}

.process-step {
  display: flex;
  margin-bottom: 90px;
  position: relative;
  opacity: 0.6;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hexagon styling */
.hexagon {
  position: relative;
  width: 120px;
  height: 120px;
  margin-right: 50px;
  flex-shrink: 0;
}

.hex-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 2px solid #0033cc;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 51, 204, 0.1);
}

.hex-content {
  text-align: center;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0033cc;
  line-height: 1;
  display: block;
}

.step-content {
  flex-grow: 1;
  padding-top: 10px;
}

.step-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 15px 0;
  transition: color 0.3s ease;
}

.step-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Interactive states */
.process-step:hover .hex-inner {
  background: #0033cc;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 51, 204, 0.2);
}

.process-step:hover .step-number {
  color: #fff;
}

.process-step:hover .step-content h3 {
  color: #0033cc;
}

.process-step.active .hex-inner {
  border-color: #0033cc;
  background: rgba(0, 51, 204, 0.03);
}

/* Decorator circles */
.hexagon::before, 
.hexagon::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0033cc;
  z-index: 2;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hexagon::before {
  top: -5px;
  left: 50%;
  transform: translateX(-50%) scale(0);
}

.hexagon::after {
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scale(0);
}

.process-step:hover .hexagon::before,
.process-step:hover .hexagon::after,
.process-step.active .hexagon::before,
.process-step.active .hexagon::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Responsive styles */
@media (max-width: 992px) {
  .process-step {
    margin-bottom: 60px;
  }
  
  .process-title {
    font-size: 3rem;
  }
  
  .process-subtitle {
    font-size: 1.3rem;
  }
  
  .hexagon {
    width: 100px;
    height: 100px;
    margin-right: 30px;
  }
  
  .step-number {
    font-size: 2.2rem;
  }
  
  .step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .process-connector {
    left: 50px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 80px 20px;
  }
  
  .process-subtitle {
    margin-bottom: 50px;
  }
  
  .hexagon {
    width: 80px;
    height: 80px;
    margin-right: 25px;
  }
  
  .step-number {
    font-size: 1.8rem;
  }
  
  .step-content h3 {
    font-size: 1.5rem;
  }
  
  .step-content p {
    font-size: 1rem;
  }
  
  .process-connector {
    left: 40px;
  }
}

/* Animation for scroll reveal */
.process-step:nth-child(1) { transition-delay: 0s; }
.process-step:nth-child(2) { transition-delay: 0.1s; }
.process-step:nth-child(3) { transition-delay: 0.2s; }
.process-step:nth-child(4) { transition-delay: 0.3s; }
.process-step:nth-child(5) { transition-delay: 0.4s; }
.process-step:nth-child(6) { transition-delay: 0.5s; }

.process-wrapper {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 0 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-container {
  display: flex;
  gap: 80px;
  width: 100%;
  align-items: flex-start;
}

.process-left {
  flex: 0 0 280px;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
}

/* 세로선 + 진행선 */
.process-timeline {
  position: relative;
  flex: 1;
  border-left: 2px solid #ddd;
  padding-left: 60px;
  padding-top: 100px;
  padding-bottom: 40px;
}

.line-progress {
  position: absolute;
  top: 0;
  left: -2px;
  width: 2px;
  background-color: #0033cc;
  height: 0;  
  z-index: 1;
  transition: height 0.3s ease;
}

/* Step */
.step {
  position: relative;
  margin-bottom: 80px;
  min-height: 120px;
  opacity: 0.2;
  transform: translateY(30px);
  transition: all 0.5s ease;
  z-index: 2;
}

.step.active {
  opacity: 1;
  transform: translateY(0);
}

/* 🔥 마커 - 선 위에 정확히 겹치게 */
.marker {
  position: absolute;
  left: -71px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #ccc;
  border-radius: 50%;
  z-index: 3;
  border: 3px solid #fff;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

.step.active .marker {
  background-color: #0033cc;
}

/* 텍스트 */
.content {
  padding-left: 0;
}

.step-num {
  font-size: 40px;          
  font-weight: 800;          
  color: #0033cc;
  margin-bottom: 0;
  display: inline-block;
  margin-right: 12px;
}

.step h3 {
  display: inline-block;
  font-size: 32px;          
  font-weight: 800;
  color: #111;
  margin: 0 0 8px 0;
}

.step p {
  font-size: 20px;           
  color: #666;
  margin: 6px 0 0;
  line-height: 1.7;
  white-space: nowrap;
}

