/* ---- Base ---- */
html, body { margin: 0; overflow-x: hidden; min-height: 100%; scroll-behavior: smooth; }
body { background: #ffffff; font-family: 'Poppins', sans-serif; }

/* Hero fix */
.home-page .hero {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  background: transparent;
}
.home-page .hero img {
  max-width: calc(100% - 120px);
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 992px) {
  .home-page .hero img { max-width: calc(100% - 60px); }
}
@media (max-width: 600px) {
  .home-page .hero img { max-width: 100%; }
}

/* Step bar */
.home-page .step-bar {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 8px #FFA500;
  padding: 24px;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto 24px;
  overflow: visible;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .home-page .step-bar {
    max-width: 500px;
    width: 95%;
    margin: 0 auto 24px;
    padding: 20px;
  }
}

.home-page .steps {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}
@media (max-width: 768px) {
  .home-page .steps { grid-template-columns: repeat(2, 1fr); }
}

.home-page .step a {
  width: 110px; height: 110px;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #FFA500;
  border-radius: 50%;
  color: #FFA500; font-weight: bold; font-size: 12px;
  text-align: center; line-height: 1.2;
  text-decoration: none;
  transition: 0.3s ease;
}
.home-page .step a:hover {
  background-color: rgba(255,165,0,0.1);
  transform: scale(1.08);
  border-color: #FF8C00;
}

.process-headline {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFA500;
}
