.process {
  background: #ffffff;
  padding: 120px 8%;
}

.process-container {
  max-width: 1250px;
  margin: auto;
}

.process-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.process-header span {
  color: #e5091b;
  font-size: 13px;  
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.process-header h2 {
  color: #061f20;
  font-size: 56px;  
  font-family: 'Inter', sans-serif;
  margin: 18px 0;
}

.process-header p {
  color: #5f6f72;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

.process-step {
  position: relative;
  background: #f7f3ef;
  border-radius: 28px;
  padding: 35px 28px;
  border: 1px solid rgba(6,31,32,0.08);
  transition: 0.35s ease;
}

.process-step:hover {
  background: #061f20;
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(6,31,32,0.16);
}

.step-number {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  background: #ffffff;
  color: #e5091b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-bottom: 28px;
  box-shadow: 0 14px 35px rgba(6,31,32,0.08);
}

.step-content h3 {
  color: #061f20;
  font-size: 28px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 12px;
}

.step-content p {
  color: #5f6f72;
  font-size: 15.5px;
  font-family: 'Inter', sans-serif;
  line-height: 1.75;
}

.process-step:hover .step-content h3,
.process-step:hover .step-content p {
  color: #ffffff;
}

.process-step:hover .step-content p {
  color: rgba(255,255,255,0.75);
}

.process-step:hover .step-number {
  background: #e5091b;
  color: #ffffff;
}

@media (max-width: 1000px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .process {
    padding: 90px 6%;
  }

  .process-header h2 {
    font-size: 38px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }
}