/* ===== Proces spolupráce ===== */
.process {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0a2f5c, #1f487e);
  color: #fff;
  text-align: center;
}

.process h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.process p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #f1f1f1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #ffd700;
  color: #0a2f5c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: .75rem;
  color: #fff;
}

.step p {
  font-size: 1rem;
  color: #e1e1e1;
  line-height: 1.5;
}
