:root{
  --bg:#ffffff;
  --text:#0b0b0b;
  --muted:#3a3a3a;
  --green:#16a34a;
  --greenDark:#15803d;
  --max:1120px;
}

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

.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto;}
a{color:inherit}
a:hover{color:var(--text)}

header{
  position:sticky; top:0; z-index:50;
  background:#fff;
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900;
  text-decoration:none;
}
.logo{
  width:28px;height:28px;border-radius:8px;
  background: var(--green);
}
nav{display:flex; gap:14px; align-items:center}
nav a{
  text-decoration:none;
  font-weight:800;
  color:var(--muted);
  font-size:14px;
}
nav a:hover{color:var(--text); text-decoration:underline; text-underline-offset:4px}

.hero{padding:18px 0 28px;}
.videoWrap{
  width:100%;
  aspect-ratio: 16 / 9;
  background:#000;
  overflow:hidden;   /* kein Rahmen */
}
.videoWrap video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.h1{
  margin:18px 0 6px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.05;
  letter-spacing:-.8px;
}
.h1 a{
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}
.lead{
  margin:0 0 18px;
  font-size: clamp(15px, 1.4vw, 19px);
  color:var(--muted);
  max-width:70ch;
}
.actions{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin:18px 0 0;
}
.btn{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:18px 18px;
  text-decoration:none;
  border-radius:14px;
  font-weight:900;
  font-size:18px;
}
.btnPrimary{
  background:var(--green);
  color:#fff;
}
.btnPrimary:hover{background:var(--greenDark)}
.btnSecondary{
  background:#fff;
  color:var(--green);
  border:2px solid var(--green);
}
.btnSecondary:hover{background:#f4fff7}
.btn small{
  display:block;
  font-weight:800;
  font-size:13px;
  opacity:.9;
  margin-top:4px;
  color:inherit;
}
.btn .arrow{font-weight:900; white-space:nowrap}

.section{
  padding:26px 0;
}
.section h2{
  margin:0 0 8px;
  font-size:22px;
  letter-spacing:-.2px;
}
.section p{margin:0; color:var(--muted); max-width:80ch}

.pills{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:14px;
}
.pills a{
  display:inline-block;
  padding:10px 12px;
  border-radius:999px;
  text-decoration:none;
  border:1px solid #e7e7e7;
  color:var(--text);
  font-weight:850;
  font-size:13px;
}
.pills a:hover{border-color:#cfcfcf}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top:14px;
}
.mini h3{
  margin:0 0 6px;
  font-size:16px;
}
.mini p{margin:0; color:var(--muted)}

details{margin-top:10px}
summary{
  cursor:pointer;
  font-weight:900;
}
details p{margin:8px 0 0; color:var(--muted)}

footer{
  padding:22px 0 26px;
  color:var(--muted);
  font-size:13px;
}
.footerRow{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.footerLinks{display:flex; gap:10px; flex-wrap:wrap;}
.footerLinks a{color:var(--muted); font-weight:850}
.footerLinks a:hover{color:var(--text); text-decoration:underline; text-underline-offset:4px}

.breadcrumbs{
  margin:14px 0 0;
  color:var(--muted);
  font-size:13px;
}
.breadcrumbs a{color:var(--muted); text-decoration:underline; text-underline-offset:4px}
.breadcrumbs a:hover{color:var(--text)}

hr.sep{
  border:0;
  border-top:1px solid #efefef;
  margin:0;
}

@media (max-width: 900px){
  nav{display:none}
  .actions{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
}
