:root{
  --bg:#ffffff;
  --text:#111113;
  --muted:#6b6b73;
  --line:rgba(0,0,0,.08);
  --shadow: 0 20px 60px rgba(0,0,0,.10);
  --radius: 18px;
  --hero-extra-scroll: 140vh;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Inter", "SF Pro Display", Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

a{color:inherit;text-decoration:none}
.container{width:min(1100px, 92vw); margin:0 auto;}

.topbar{
  position:fixed; inset:0 0 auto 0;
  height:64px;
  background:rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
  z-index:50;
}
.topbar-inner{
  height:64px; display:flex; align-items:center; justify-content:space-between;
}
.brand{font-weight:650; letter-spacing:-.2px;}
.brand-link{
  display:inline-flex;
  align-items:center;
  color:inherit;
  text-decoration:none;
}
.brand-logo{
  display:block;
  height:32px;
  width:auto;
  color:inherit;
  fill:currentColor;
}
.brand-logo text{fill:currentColor;}

.logo-reveal{
  opacity:0;
  transform:translateY(6px);
  animation: logoReveal .7s ease forwards;
  animation-delay:.12s;
}
@keyframes logoReveal{
  from{opacity:0; transform:translateY(6px);}
  to{opacity:1; transform:translateY(0);}
}
@media (prefers-reduced-motion: reduce){
  .logo-reveal{
    animation:none;
    opacity:1;
    transform:none;
  }
}
.nav{display:flex; gap:18px; align-items:center;}
.nav a{font-size:14px; color:rgba(17,17,19,.78)}
.nav a:hover{color:rgba(17,17,19,1)}
.nav .btn,
.nav .btn:hover{
  color:#fff;
}
.nav-menu{display:flex; gap:18px; align-items:center;}
.nav-toggle{
  display:none;
  width:46px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.12);
  background:#f1f2f4;
  padding:8px;
  cursor:pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}
.nav-toggle span{
  display:block;
  height:2px;
  background:#111113;
  border-radius:2px;
  margin:0;
  width:70%;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background:#111113; color:#fff;
  font-weight:600;
  border:1px solid rgba(0,0,0,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-small{padding:9px 12px; border-radius:12px; font-size:13px}
.btn-ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn-ghost:hover{background:rgba(0,0,0,.03)}

.hero{
  height: calc(100vh + var(--hero-extra-scroll, 140vh));
  padding-top:64px;
}
.hero-sticky{
  position:sticky;
  top:64px;
  height: calc(100vh - 64px);
  overflow:hidden;
  border-bottom:1px solid var(--line);
}

.hero-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
  filter: saturate(1.02);
  opacity:0;
  will-change: transform, opacity;
}
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(60% 60% at 50% 35%, rgba(255,255,255,.0), rgba(255,255,255,.55));
}
/* Crossfade Layer */
.hero-bg {
  transition: opacity .55s ease, transform .9s ease, filter .55s ease;
}

.hero-bg-a { opacity: 1; }
.hero-bg-b { opacity: 0; }

/* Optional: leichtes “Premium”-Grain/Depth */
.hero-bg::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(80% 70% at 50% 30%, rgba(0,0,0,0), rgba(0,0,0,.06));
  mix-blend-mode: multiply;
  pointer-events:none;
}

/* Dots (Netflix-like) */
.hero-dots{
  position:absolute;
  top:24px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:row;
  gap:10px;
  z-index:10;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.45);
  border:1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(12px);
}

.hero-dot{
  width:7px;
  height:7px;
  border-radius:999px;
  background:rgba(17,17,19,.22);
  appearance:none;
  padding:0;
  cursor:pointer;
  border-width:1px;
  border-style:solid;
  border-color:rgba(0,0,0,.08);
  outline:none;
  transition: transform .25s ease, background .25s ease, opacity .25s ease;
  opacity:.9;
}

.hero-dot:focus-visible{
  box-shadow:0 0 0 6px rgba(17,17,19,.12);
}

.hero-dot.is-active{
  background:rgba(17,17,19,.55);
  transform: scale(1.8);
  opacity:1;
}


@media (max-width: 860px){
  .hero-dots{
    right:auto;
    left:50%;
    width:fit-content;
    gap:8px;
  }
}


.hero-content{
  position:relative;
  height:100%;
  display:flex;
  align-items:center;
}
.hero-brand-mark{
  display:inline-flex;
  align-items:center;
  padding:12px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.65);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  color:#111113;
  margin-bottom:18px;
  backdrop-filter: blur(16px);
}
.hero-brand-logo{
  height:30px;
  width:auto;
  color:inherit;
  fill:currentColor;
  animation-delay:.22s;
}
.hero-brand-logo rect{
  fill:none;
  stroke:currentColor;
}
.hero-brand-logo text{
  fill:currentColor;
}
.hero-copy{
  position:relative;
  width:min(620px, 92vw);
  padding:32px clamp(22px, 3vw, 36px);
  border-radius:28px;
  background:rgba(255,255,255,.45);
  border:1px solid rgba(255,255,255,.3);
  box-shadow: 0 16px 48px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 640px){
  .hero-copy{
    padding:22px;
    border-radius:22px;
  }
}
.kicker{
  font-size:14px;
  color:rgba(17,17,19,.65);
  letter-spacing:.2px;
  margin-bottom:12px;
}
.headline{
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  margin:0 0 14px;
  letter-spacing:-.6px;
}
.subline{
  font-size: clamp(16px, 1.6vw, 19px);
  line-height:1.5;
  margin:0 0 22px;
  color:rgba(17,17,19,.75);
}
.headline,
.subline {
  transition:
    opacity .45s ease,
    transform .45s ease;
}
.headline, .subline {
  opacity: 1;
  transform: translateY(0);
}

.text-out {
  opacity: 0;
  transform: translateY(22px);
}

.text-in {
  opacity: 1;
  transform: translateY(0);
}


.hero-actions{display:flex; gap:12px; flex-wrap:wrap;}

.progress{
  position:absolute; left:0; right:0; bottom:0;
  height:3px;
  background:rgba(0,0,0,.06);
}
.progress-bar{
  height:3px;
  width:0%;
  background:rgba(0,0,0,.35);
}

.section{padding:84px 0; background:#fff;}
.h2{
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing:-.3px;
  margin:0 0 24px;
}
.grid4{display:grid; grid-template-columns:repeat(4,1fr); gap:16px;}
.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:16px;}
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:20px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}
.card h3{margin:0 0 10px; letter-spacing:-.2px;}
.card p{margin:0; color:rgba(17,17,19,.70); line-height:1.6;}
.price{font-weight:700; margin:10px 0 14px;}
.list{margin:0 0 16px; padding-left:18px; color:rgba(17,17,19,.70);}
.list li{margin:6px 0}
.form{display:grid; gap:10px; margin-top:14px;}
input,textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  outline:none;
  font: inherit;
}
input:focus,textarea:focus{border-color:rgba(0,0,0,.22)}
.small{font-size:12px; color:rgba(17,17,19,.55); margin:0}

.footer{
  padding:28px 0;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-inner{display:flex; justify-content:space-between; align-items:center; gap:16px; color:rgba(17,17,19,.65); font-size:14px;}
.footer-links{display:flex; gap:14px;}

.faq-list{display:grid; gap:12px;}
.faq-item{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px 16px;
  background: rgba(255,255,255,.85);
}
.faq-item summary{
  cursor:pointer;
  font-weight:600;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"+";
  float:right;
  opacity:.6;
}
.faq-item[open] summary::after{
  content:"–";
}
.faq-item p{margin:10px 0 0; color:rgba(17,17,19,.70); line-height:1.6;}

@media (max-width: 860px){
  .topbar-inner{
    align-items:center;
  }
  .nav{
    position:relative;
  }
  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
  .nav-menu{
    position:absolute;
    top:48px;
    right:0;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    padding:14px;
    min-width:220px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    z-index:60;
  }
  .nav-menu.is-open{
    display:flex;
  }
  .nav-menu a{
    font-size:14px;
  }
  .grid4{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
}

@media (max-width: 640px){
  .hero-dots{
    padding:6px 10px;
    gap:6px;
    max-width: calc(100% - 32px);
  }
}

.cookie-banner{
  position:fixed;
  inset:auto 24px 24px 24px;
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  padding:22px 26px;
  border-radius:22px;
  background:#0f1014;
  color:#fff;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  z-index:200;
  transform:translateY(160%);
  opacity:0;
  transition: transform .45s ease, opacity .45s ease;
}
.cookie-banner.is-visible{
  transform:translateY(0);
  opacity:1;
}
.cookie-content{
  flex:1 1 320px;
  min-width:240px;
}
.cookie-content h3{
  margin:0 0 6px;
  font-size:16px;
}
.cookie-content p{
  margin:0 0 14px;
  font-size:14px;
  color:rgba(255,255,255,.82);
}
.cookie-options{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:10px;
}
.cookie-option{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.05);
  color:#fff;
  font-size:13px;
  line-height:1.4;
}
.cookie-option strong{display:block; font-size:14px; margin-bottom:2px;}
.cookie-option span{color:rgba(255,255,255,.75);}
.cookie-option input[type=\"checkbox\"]{
  width:18px;
  height:18px;
}
.cookie-option--locked{
  opacity:.7;
}
.cookie-link{
  display:inline-block;
  font-size:13px;
  color:rgba(255,255,255,.75);
}
.cookie-link:hover{color:#fff;}
.cookie-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.cookie-save{
  background:none;
  border:none;
  color:rgba(255,255,255,.75);
  font-size:13px;
  cursor:pointer;
  text-decoration:underline;
}
.cookie-save:hover{color:#fff;}
@media (max-width:640px){
  .cookie-banner{
    inset:auto 14px 14px 14px;
  }
  .cookie-actions{
    flex-wrap:wrap;
    width:100%;
  }
}

.legal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  display:flex;
  justify-content:center;
  align-items:center;
  padding:40px 20px;
  z-index:250;
  opacity:0;
  pointer-events:none;
  transition:opacity .35s ease;
}
.legal-overlay.is-visible{
  opacity:1;
  pointer-events:auto;
}
.legal-panel{
  background:#fff;
  color:#111;
  border-radius:24px;
  width:min(720px, 92vw);
  max-height:90vh;
  position:relative;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
  padding:30px;
}
.legal-scroll{
  max-height:70vh;
  overflow:auto;
  padding-right:10px;
}
.legal-content h3{
  margin:24px 0 6px;
}
.legal-content p{
  margin:0 0 12px;
  color:rgba(17,17,19,.75);
  line-height:1.6;
}
.legal-close{
  position:absolute;
  top:14px;
  right:18px;
  border:none;
  background:none;
  font-size:24px;
  cursor:pointer;
}
body.legal-open{
  overflow:hidden;
}
