
:root{
  --bg:#030303;
  --panel:#0d0d0f;
  --text:#f7f7f8;
  --muted:#b9b9c0;
  --gold:#d7a83e;
  --gold-light:#f1d17b;
  --border:rgba(255,255,255,.09);
  --gold-border:rgba(215,168,62,.42);
  --shell:1240px;
  --header-h:86px;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--header-h) + 20px);
  overflow-y:scroll;
}
body{
  margin:0;
  padding-top:var(--header-h);
  overflow-x:hidden;
  color:var(--text);
  background:
    radial-gradient(circle at 50% 17%,rgba(215,168,62,.10),transparent 27%),
    linear-gradient(180deg,#020202,#050505 55%,#020202);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  line-height:1.55;
}
a{color:inherit}
.site-shell,.container{
  width:calc(100% - 40px);
  max-width:var(--shell);
  margin-left:auto;
  margin-right:auto;
}

/* One fixed header geometry on every page */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:var(--header-h);
  z-index:9999;
  background:#030303;
  border-bottom:1px solid var(--gold-border);
  box-shadow:0 6px 22px rgba(0,0,0,.28);
}
.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  gap:24px;
  position:relative;
}
.header-inner::before,
.header-inner::after,
.brand::before,
.brand::after,
.main-menu::before,
.main-menu::after{
  content:none!important;
  display:none!important;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  flex:0 0 auto;
  min-width:300px;
}
.brand img{
  width:72px;
  height:50px;
  object-fit:contain;
  display:block;
}
.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1;
  white-space:nowrap;
}
.brand-copy strong{
  font-size:1.14rem;
  letter-spacing:.11em;
}
.brand-copy small{
  margin-top:7px;
  color:var(--gold-light);
  font-size:.62rem;
  letter-spacing:.12em;
}
.main-menu{
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:4px;
  flex-wrap:nowrap;
}
.main-menu a{
  display:block;
  text-decoration:none;
  font-size:.88rem;
  font-weight:850;
  letter-spacing:.015em;
  white-space:nowrap;
  padding:12px 10px;
  border-radius:9px;
}
.main-menu a:hover{
  color:var(--gold-light);
  background:rgba(255,255,255,.035);
}

/* Never show hamburger on desktop */
.menu-toggle{
  display:none!important;
  appearance:none;
  border:0;
  outline:0;
  box-shadow:none;
}

/* Anchor targets remain visible below the fixed header */
#angebot,#ablauf{
  scroll-margin-top:calc(var(--header-h) + 18px);
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.hero-inner{
  text-align:center;
  padding:62px 0 46px;
}
.hero-logo{
  width:min(380px,68vw);
  max-height:250px;
  object-fit:contain;
  display:block;
  margin:0 auto 12px;
  filter:drop-shadow(0 18px 38px rgba(215,168,62,.18));
}
.eyebrow{
  color:var(--gold-light);
  text-transform:uppercase;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.18em;
}
.hero h1{
  max-width:900px;
  margin:14px auto 16px;
  font-size:clamp(2.7rem,5.4vw,5.2rem);
  line-height:1;
  letter-spacing:-.045em;
}
.hero p{
  max-width:790px;
  margin:0 auto;
  color:#c3c3c9;
  font-size:clamp(1rem,1.55vw,1.22rem);
}
.actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}
.btn{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:13px;
  text-decoration:none;
  font-weight:850;
  border:1px solid rgba(215,168,62,.7);
}
.btn-primary{
  color:#080808;
  background:linear-gradient(135deg,#f4d77e,#c78d28);
  border:0;
}
.btn-secondary{background:rgba(255,255,255,.02)}
.features{
  margin-top:44px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:rgba(0,0,0,.30);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.feature{
  padding:22px 20px;
  display:flex;
  gap:13px;
  align-items:flex-start;
}
.feature+.feature{border-left:1px solid var(--border)}
.icon{
  flex:0 0 48px;
  height:48px;
  border:1px solid rgba(215,168,62,.62);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-light);
  font-weight:900;
}
.feature strong{display:block;font-size:.94rem}
.feature span{display:block;color:#aaaab0;font-size:.86rem;margin-top:4px}

/* SECTIONS */
.section{
  padding:72px 0;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.section h2{
  font-size:clamp(2rem,4vw,3.35rem);
  line-height:1.08;
  letter-spacing:-.035em;
  margin:10px 0 18px;
}
.section p,.section li{color:#bdbdc4}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:26px;
}
.card{
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.016));
  border:1px solid var(--border);
  border-radius:20px;
  padding:26px;
}
.card .label{
  color:var(--gold-light);
  font-size:.75rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.card h3{font-size:1.3rem;margin:9px 0}
.card p{margin:0}
.card a{color:#e6e6e8}
.price{
  font-size:3rem;
  font-weight:900;
  color:var(--gold-light);
  line-height:1;
}
.two-col{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:20px;
}
.notice{
  border:1px solid var(--gold-border);
  border-radius:16px;
  padding:17px 18px;
  background:rgba(215,168,62,.06);
}
.notice strong{color:var(--gold-light)}

/* LEGAL */
.legal-page{
  max-width:900px;
  padding:64px 0 86px;
}
.legal-page h1{
  font-size:clamp(2.4rem,5vw,4rem);
  margin:12px 0 18px;
  letter-spacing:-.04em;
}
.legal-page h2{margin-top:32px}
.legal-page p,.legal-page li{color:#c2c2c8}
.legal-page a{color:var(--gold-light)}
.small{font-size:.9rem;color:#94949b}

/* FOOTER */
footer{
  padding:28px 0 40px;
  color:#939399;
}
.footer-row{
  width:calc(100% - 40px);
  max-width:var(--shell);
  margin-left:auto;
  margin-right:auto;
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer-links{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}
.footer-links a{
  text-decoration:none;
  color:#d1d1d5;
}
.footer-links a:hover{color:var(--gold-light)}

/* Mobile */
@media(max-width:980px){
  :root{--header-h:70px}
  .site-shell,.container,.footer-row{
    width:calc(100% - 28px);
  }
  .brand{
    min-width:0;
  }
  .brand img{
    width:62px;
    height:44px;
  }
  .brand-copy{
    display:none;
  }

  .menu-toggle{
    display:flex!important;
    margin-left:auto;
    width:46px;
    height:42px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
    border:1px solid var(--gold-border);
    border-radius:10px;
    background:#080808;
    padding:0;
    cursor:pointer;
  }
  .menu-toggle span{
    display:block;
    width:22px;
    height:2px;
    background:var(--gold-light);
    border-radius:99px;
    transition:transform .2s ease,opacity .2s ease;
  }
  .menu-toggle.is-open span:nth-child(1){transform:translateY(8px) rotate(45deg)}
  .menu-toggle.is-open span:nth-child(2){opacity:0}
  .menu-toggle.is-open span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

  .main-menu{
    display:none;
    position:fixed;
    top:var(--header-h);
    left:0;
    right:0;
    width:100%;
    margin:0;
    padding:10px 14px 16px;
    background:#050505;
    border-bottom:1px solid var(--gold-border);
    box-shadow:0 18px 36px rgba(0,0,0,.48);
  }
  .main-menu.is-open{
    display:grid;
    grid-template-columns:1fr;
    gap:4px;
  }
  .main-menu a{
    width:100%;
    padding:12px 13px;
    font-size:.95rem;
    text-align:left;
  }

  .hero-inner{padding:34px 0 28px}
  .hero-logo{width:min(245px,70vw);max-height:180px}
  .eyebrow{font-size:.70rem;letter-spacing:.14em}
  .hero h1{
    max-width:100%;
    font-size:clamp(2rem,10.2vw,2.8rem);
    line-height:1.05;
  }
  .hero p{font-size:.96rem}
  .actions{display:grid;grid-template-columns:1fr}
  .btn{width:100%}
  .features{grid-template-columns:1fr}
  .feature,.feature+.feature{
    border-left:0;
    border-top:1px solid var(--border);
  }
  .feature:first-child{border-top:0}
  .cards,.two-col{grid-template-columns:1fr}
  .section{padding:52px 0}
  .legal-page{padding:46px 0 68px}
  .legal-page h1{font-size:2.3rem}
  .footer-row{flex-direction:column}
  .footer-links{gap:10px 14px}
}

@media(min-width:981px){
  .menu-toggle{display:none!important}
  .main-menu{display:flex!important}
}
