* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: #05070c;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.box {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1100px);
  text-align: center;
  color: #fff;
}

.box h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 92px);
  line-height: 1;
  letter-spacing: .14em;
  font-weight: 800;
  text-shadow: 0 6px 24px rgba(0,0,0,.65);
}

.subtitle {
  margin: 22px 0 0;
  font-size: clamp(20px, 2vw, 34px);
  color: #f5b449;
  letter-spacing: .04em;
  text-shadow: 0 4px 18px rgba(0,0,0,.55);
}

.steps {
  display: none;
}

footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 20px;
  text-align: center;
  color: rgba(255,255,255,.55);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
  font-size: 13px;
}

/* MOBIL */
@media (max-width: 768px) {
  .hero {
    background-image: url("images/hero-mobile.jpg") !important;
  }
  .hero.avif {
    background-image: url("images/hero-mobile.avif") !important;
  }
}

  .box {
    top: 160px;
    width: 90%;
  }

  .box h1 {
    font-size: clamp(34px, 10vw, 52px);
    letter-spacing: .08em;
  }

  .subtitle {
    font-size: 18px;
    margin-top: 14px;
  }

  footer {
    padding: 12px 14px;
    font-size: 12px;
  }
}