*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:url("../images/background-home.png") no-repeat center center fixed;
  background-size:cover;
  color:#fff;
}

.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:40px;
  padding:80px 20px 10px;
}

.hero--leistungen{
  min-height:auto;
  padding-bottom:0;
}

.header-row{
  position:relative;
  width:100%;
  max-width:1100px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.nav{
  position:absolute;
  left:0;
  top:30px;
  transform:translateX(40%);
  z-index:50;
}

.hamburger{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  border-radius:20px;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 18px 55px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.10);
  color:#fff;
  font-weight:800;
  font-size:15px;
  cursor:pointer;
}

.hamburger:hover{
  background:rgba(0,0,0,.52);
}

.hamburger-icon{
  font-size:22px;
}

.menu{
  position:absolute;
  top:calc(100% + 12px);
  left:0;
  width:240px;
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:12px;
  border-radius:18px;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 22px 70px rgba(0,0,0,.40), inset 0 0 0 1px rgba(255,255,255,.10);
  opacity:0;
  transform:translateY(-8px);
  pointer-events:none;
  transition:.25s ease;
}

.menu.open{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.menu a{
  text-decoration:none;
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  font-weight:800;
}

.menu a:hover{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
}

.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
  z-index:40;
}

.menu-overlay.active{
  opacity:1;
  pointer-events:auto;
  backdrop-filter:blur(6px);
}

.logo{
  margin-top:-115px;
  margin-bottom:-30px;
}

.logo img{
  max-width:500px;
  width:100%;
  display:block;
}

.hero-box{
  max-width:720px;
  width:100%;
  padding:40px 36px;
  margin-top:-50px;
  border-radius:20px;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 30px 80px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.12);
}

.hero-box--small{
  max-width:800px;
  padding:26px 30px;
  margin-bottom:30px;
}

.hero-box--small h1{
  font-size:30px;
  margin-bottom:10px;
}

.hero-box--small .subtitle{
  font-size:15px;
  line-height:1.55;
  opacity:.9;
}

.hero-points{
  list-style:none;
  margin:0 0 26px 0;
}

.hero-points li{
  position:relative;
  padding-left:28px;
  margin-bottom:10px;
}

.hero-points li::before{
  content:"✓";
  position:absolute;
  left:0;
  font-weight:800;
}

.btn{
  padding:12px 20px;
  border-radius:10px;
  font-weight:800;
  font-size:14px;
  text-decoration:none;
  display:inline-block;
}

.btn.primary{
  background:#2f89c5;
  color:#fff;
}

.btn.primary:hover{
  opacity:.92;
}

.leistungen-page{
  position:relative;
  z-index:1;
}

.leistungen-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:20px 20px 10px;
  display:flex;
  flex-direction:column;
  gap:26px;
}

.page-online-service .leistungen-wrap{
  margin-left:670px;
}


.leistung{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:26px;
  align-items:stretch;
}

.leistung--reverse{
  grid-template-columns:1fr 1.05fr;
}

.leistung--reverse .leistung-media{
  order:2;
}

.leistung--reverse .leistung-box{
  order:1;
}

.leistung-media img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 28px 80px rgba(0,0,0,.25);
}

.leistung-box{
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.22);
  border-radius:22px;
  padding:26px;
  box-shadow:0 24px 70px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.10);
}

.leistung-box h2{
  font-size:26px;
  margin-bottom:10px;
}

.leistung-box p{
  opacity:.92;
  line-height:1.6;
  margin-bottom:14px;
}

.leistung-points{
  list-style:none;
  margin:0 0 18px 0;
}

.leistung-points li{
  position:relative;
  padding-left:22px;
  margin-bottom:8px;
}

.leistung-points li::before{
  content:"✓";
  position:absolute;
  left:0;
  font-weight:800;
}

.footer{
  width:100%;
  display:flex;
  justify-content:center;
  margin:60px 0 40px;
}

.footer-inner{
  max-width:600px;
  width:100%;
  padding:16px 22px;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(14px);
  border-radius:20px;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 30px 80px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.10);
}

.footer-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  font-size:13px;
  white-space:nowrap;
}

.footer-links{
  display:flex;
  gap:16px;
  align-items:center;
}

.footer-links a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  opacity:.9;
  display:flex;
  align-items:center;
  gap:6px;
}

.footer-links a:hover{
  opacity:1;
  text-decoration:underline;
}

.footer-copy{
  opacity:.75;
}

.ig-icon{
  width:16px;
  height:16px;
  fill:currentColor;
}

@media (max-width: 768px){

  .nav{
    position:relative;
    transform:none;
    top:0;
    margin-bottom:10px;
  }

  .logo{
    margin-top:-60px;
    margin-bottom:-15px;
  }

  .logo img{
    max-width:360px;
  }

  .hero-box{
    padding:28px 22px;
    margin-top:-30px;
  }

  .hero-box h1{
    font-size:24px;
  }

  .hero-box .subtitle{
    font-size:14px;
  }


  .leistungen-page .leistung{
    grid-template-columns:1fr;
  }

  .leistungen-page .leistung-media{
    order:1;
    width:100%;
  }

  .leistungen-page .leistung-box{
    order:2;
    width:100%;
  }

 
  .page-online-service .leistungen-wrap{
    margin-left:0;
    margin-right:auto;
  }

  .footer{
    margin-bottom:20px;
    padding-bottom:calc(20px + env(safe-area-inset-bottom));
  }

  .footer-content{
    flex-direction:column;
    text-align:center;
  }

  .footer-copy{
    text-align:center;
  }

}

