.process {
  background: #ffffff;
  padding: clamp(40px, 8vw, 80px) 0;
}

.process-header {
  text-align: center;
  margin-bottom: clamp(40px, 8vw, 60px);
}

.process h2 {
  color: var(--bg-dark);
}

.process-subtitle {
  color: #374151;
  font-size: clamp(17px, 2.5vw, 19px);
  line-height: 1.7;
}

.process-vertical {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5em;
}

.process-card {
  background: #f9f9f9;
  border-radius: 16px;
  border: 2px solid var(--border-light);
  padding: 2em;
  transition: border-color 0.3s ease;
  display: flex;
  gap: 1.5em;
  align-items: flex-start;
}

.process-card:hover {
  border-color: var(--primary-yellow);
}

.step-icon-wrapper {
  flex-shrink: 0;
}

.step-icon-box {
  width: 140px;
  height: 200px;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: 24px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.step-icon-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-box svg {
  width: 50px;
  height: 50px;
}

.step-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75em;
}

.step-number {
  color: var(--primary-yellow);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 0;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--bg-dark);
  font-weight: 600;
  margin-bottom: 0;
  font-size: clamp(19px, 2.5vw, 24px);
  flex: 1;
  min-width: 200px;
}

.step-content p {
  color: #374151;
  margin-bottom: 0;
  line-height: 1.7;
  font-size: clamp(16px, 2vw, 18px);
  width: 100%;
}

.step-note {
  font-style: italic;
  color: #374151;
  font-size: clamp(15px, 2vw, 17px);
  margin-top: 0.75em;
  padding: 0.75em;
  background: rgba(255, 186, 0, 0.08);
  border-radius: 8px;
  border-left: 3px solid var(--primary-yellow);
  line-height: 1.6;
}

/* MOBILE - Extra Small (up to 480px) */
@media (max-width: 480px) {
  .process-vertical {
      grid-template-columns: 1fr;
      gap: 1.5em;
  }
  
  .process-card {
      padding: 1.5em;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  
  .step-icon-box {
      width: 100px;
      height: 150px;
  }
  
  .step-icon-box svg {
      width: 40px;
      height: 40px;
  }
  
  .step-number {
      font-size: 24px;
  }

}

/* TABLET - Small to Medium (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .process-vertical {
      grid-template-columns: 1fr;
      gap: 2em;
  }
  
  .process-card {
      padding: 1.75em;
  }
  
  .step-icon-box {
      width: 120px;
      height: 180px;
  }
  
  .step-icon-box svg {
      width: 45px;
      height: 45px;
  }

}

/* TABLET to DESKTOP - Medium (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .process-vertical {
      grid-template-columns: repeat(2, 1fr);
      gap: 2em;
  }

}