/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ===== BASE ===== */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Arial, sans-serif;
  background:


.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

/* =========================
   MOBILMENY
========================= */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
}

/* =========================
   HERO
========================= */
.hero.fullscreen {
  min-height: 100vh;
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0,0,0,0.75);
  padding: 60px 40px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  max-width: 1000px;
  width: 100%;
}

/* =========================
   HERO TEKST
========================= */
.hero-text {
  margin-b
