/* Vermittlungsprozess Section */

.prozess-section {
  padding: 96px 0;
  background: #ffffff;
}

.prozess-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.prozess-section__header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.prozess-section__header h2 {
  margin: 0;
  color: #354152;
  font-family: "Fredoka", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.16;
}

.prozess-section__header p {
  margin: 20px 0 0;
  color: #354152;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.prozess-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.prozess-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: #fffaf1;
  border-radius: 16px;
  border: 1px solid #e8e1d2;
}

.prozess-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #d4a017;
  color: #ffffff;
  font-family: "Fredoka", sans-serif;
  font-size: 28px;
  font-weight: 500;
  border-radius: 50%;
  margin-bottom: 24px;
}

.prozess-step__content h3 {
  margin: 0 0 12px;
  color: #354152;
  font-family: "Fredoka", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.prozess-step__content p {
  margin: 0;
  color: #4a5565;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.prozess-fee {
  background: #f5f5f5;
  border-left: 4px solid #d4a017;
  padding: 24px 32px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 32px;
}

.prozess-fee__content h4 {
  margin: 0 0 8px;
  color: #354152;
  font-family: "Fredoka", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.prozess-fee__content p {
  margin: 0;
  color: #4a5565;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.prozess-cta {
  text-align: center;
}

.prozess-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: #d4a017;
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.prozess-button:hover {
  background: #bb8d12;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .prozess-section {
    padding: 72px 0;
  }
  
  .prozess-section__header {
    margin-bottom: 40px;
  }
  
  .prozess-section__header h2 {
    font-size: 40px;
  }
  
  .prozess-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  
  .prozess-step__number {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .prozess-section__header h2 {
    font-size: 32px;
  }
  
  .prozess-grid {
    grid-template-columns: 1fr;
  }
  
  .prozess-step {
    padding: 20px;
  }
  
  .prozess-step__number {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  
  .prozess-step__content h3 {
    font-size: 22px;
  }
}
