/* ---------- NAV ---------- */
nav{
  position:sticky;top:0;z-index:50;
  background:rgba(16,22,15,0.92);
  backdrop-filter:blur(6px);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  max-width:1120px;margin:0 auto;padding:14px 32px;
  position:relative;
}
.logo-mark{display:flex;align-items:center;gap:12px;text-decoration:none;}
.logo-mark img{width:38px;height:38px;border-radius:8px;}
.logo-mark span{
  font-family:'Big Shoulders Display';font-weight:900;
  color:var(--cream);font-size:22px;letter-spacing:0.02em;
}
.nav-links{display:flex;gap:34px;list-style:none;margin:0;padding:0;}
.nav-links a{
  color:var(--sage);text-decoration:none;font-size:14px;
  font-weight:500;letter-spacing:0.03em;text-transform:uppercase;
  transition:color .2s;
}
.nav-links a:hover{color:var(--cream);}
.nav-cta{
  background:var(--green);color:var(--cream);
  padding:10px 20px;border-radius:100px;
  font-size:14px;font-weight:600;text-decoration:none;
  transition:background .2s, transform .2s;
  white-space:nowrap;
}
.nav-cta:hover{background:var(--green-light);transform:translateY(-1px);}
.nav-toggle{display:none;background:none;border:none;color:var(--cream);font-size:26px;cursor:pointer;}
@media (max-width:860px){
  .nav-links{
    display:none; position:absolute; top:100%; left:0; right:0;
    flex-direction:column; gap:0; background:var(--ink); padding:10px 32px 20px;
    border-top:1px solid rgba(159,182,162,0.2);
  }
  .nav-links.open{display:flex;}
  .nav-links a{padding:14px 0; border-bottom:1px solid rgba(159,182,162,0.12);}
  .nav-toggle{display:block;}
}

/* ---------- HERO ---------- */
.hero{
  background:var(--ink);
  color:var(--cream);
  position:relative;
  padding:100px 0 160px;
  overflow:hidden;
}
.hero .wrap{
  display:grid;grid-template-columns:1.15fr 0.85fr;gap:40px;align-items:center;position:relative;z-index:2;
}
.hero h1{
  font-size:clamp(30px,3.4vw,46px);
  line-height:1.02;
}
.hero h1 .accent{color:var(--gold);}
.hero p.sub{
  font-size:19px;color:var(--sage);max-width:480px;margin:24px 0 34px;
}
.cta-row{display:flex;gap:16px;flex-wrap:wrap;}
.btn-primary, .btn-ghost{
  padding:15px 28px;border-radius:100px;font-weight:600;font-size:15px;
  text-decoration:none;display:inline-flex;align-items:center;gap:8px;
  transition:transform .2s, background .2s, border-color .2s;
}
.btn-primary{background:var(--green);color:var(--cream);}
.btn-ghost{border:1.5px solid var(--sage);color:var(--cream);}
.btn-ghost:hover{border-color:var(--cream);transform:translateY(-2px);}

.hero-logo-big{
  width:100%;
  max-width:340px;
  margin:0 auto;
  border-radius:28px;
  filter:drop-shadow(0 30px 60px rgba(8,90,48,0.45));
  animation:chevronIn 1s cubic-bezier(.2,.8,.2,1) both;
}
@media (max-width:860px){
  .hero{padding:56px 0 110px; text-align:center;}
  .hero .wrap{grid-template-columns:1fr;}
  .hero .wrap > div:last-child{display:none;}
  .hero .eyebrow{justify-content:center;}
  .hero h1{font-size:clamp(28px,4.6vw,38px);}
  .hero .br-desktop{display:none;}
  .hero p.sub{margin-left:auto; margin-right:auto;}
  .cta-row{justify-content:center;}
}
@media (max-width:600px){
  .hero h1{font-size:clamp(24px,7vw,32px);}
}
@keyframes chevronIn{
  from{opacity:0; transform:translateY(24px) scale(.92);}
  to{opacity:1; transform:translateY(0) scale(1);}
}
.hero-fade-up{animation:fadeUp .8s cubic-bezier(.2,.8,.2,1) both;}
.hero-fade-up.d1{animation-delay:.05s;}
.hero-fade-up.d2{animation-delay:.15s;}
.hero-fade-up.d3{animation-delay:.25s;}
@keyframes fadeUp{from{opacity:0;transform:translateY(16px);}to{opacity:1;transform:translateY(0);}}

.hero-bottom-cut{
  position:absolute;left:0;right:0;bottom:-1px;height:90px;
  background:var(--cream);
  clip-path:polygon(0 100%, 100% 100%, 100% 40%, 62% 100%, 55% 40%, 0 100%);
}

/* ---------- ERKLÄRUNG PRÄVENTIONSKURSE ---------- */
.explainer{padding:50px 0 10px;}
.explainer-card{
  border:1.5px solid var(--gold); border-radius:var(--radius); padding:40px 44px;
  background:rgba(217,162,87,0.08);
}
.explainer-card h2{font-size:28px; text-transform:none; color:var(--ink); margin-bottom:14px;}
.explainer-text{font-size:17px; line-height:1.7; color:#3c4a3e; max-width:760px; margin:0;}

/* ---------- SO FUNKTIONIERT'S ---------- */
.how{padding:90px 0 60px;}
.how h2{font-size:clamp(28px,4vw,44px); text-transform:none; max-width:680px; margin-bottom:50px;}
.how-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:40px;}
.how-num{
  font-family:'Big Shoulders Display'; font-weight:900; font-size:44px; color:var(--gold-a11y);
  line-height:1; margin-bottom:14px;
}
.how-step h3{
  font-size:21px; text-transform:none; font-family:'Big Shoulders Display'; font-weight:700; margin-bottom:10px;
}
.how-step p{font-size:15px; color:#3c4a3e; margin:0; line-height:1.55;}
@media (max-width:760px){
  .how-grid{grid-template-columns:1fr; gap:32px;}
}

/* ---------- KERNZAHLEN ---------- */
.proof{padding:10px 0 30px;}
.proof-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:2px;
  background:rgba(8,90,48,0.15); border-radius:var(--radius); overflow:hidden;
}
.proof-stat{background:var(--cream); padding:30px 14px; text-align:center;}
.proof-stat .num{
  font-family:'Big Shoulders Display'; font-weight:900; font-size:clamp(26px,4vw,38px);
  color:var(--green); display:block; line-height:1;
}
.proof-stat .lbl{font-size:12px; color:#5c6b5e; text-transform:uppercase; letter-spacing:.03em;}
@media (max-width:600px){
  .proof-grid{grid-template-columns:1fr; gap:2px;}
}

/* ---------- PROBLEM ---------- */
.problem{padding:64px 0 46px;}
.problem .eyebrow{font-weight:600;}
.problem .lines{max-width:640px;}
.problem .line{
  display:flex; align-items:baseline; gap:14px;
  padding:14px 0; border-bottom:1px solid rgba(8,90,48,0.18);
  font-family:'Work Sans', sans-serif; font-weight:600;
  font-size:15.5px; text-transform:none;
}
.problem .line span.num{
  font-family:'IBM Plex Mono'; font-weight:500; font-size:13px; color:var(--gold-a11y);
}
.problem .payoff{
  margin-top:26px; font-size:16px; color:var(--ink); max-width:660px;
  border-left:3px solid var(--green); padding-left:18px;
}
.problem .extend{
  margin-top:18px; font-size:14px; color:#5c6b5e; max-width:660px;
}

/* ---------- OHNE/MIT PRÄVIO ---------- */
.contrast{padding:30px 0 70px;}
.contrast h2{font-size:clamp(28px,4vw,44px); text-transform:none; max-width:680px; margin-bottom:44px;}
.contrast-row{
  display:grid; grid-template-columns:1fr 1fr; gap:2px;
  background:rgba(8,90,48,0.15); border-radius:var(--radius); overflow:hidden;
  margin-bottom:2px;
}
.contrast-card{padding:30px 32px;}
.contrast-card.without{background:#faf3f0;}
.contrast-card.with{background:#fff;}
.contrast-tag{
  font-family:'IBM Plex Mono'; font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  font-weight:600; display:block; margin-bottom:12px;
}
.contrast-card.without .contrast-tag{color:#B23B3B;}
.contrast-card.with .contrast-tag{color:var(--green);}
.contrast-card p{margin:0; font-size:15px; color:#3c4a3e; line-height:1.55;}
@media (max-width:760px){
  .contrast-row{grid-template-columns:1fr;}
}

/* ---------- MECHANISMEN ---------- */
.services{background:var(--ink); color:var(--cream); padding:110px 0 120px; position:relative;}
.service-grid{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(230px,1fr)); gap:2px;
  background:rgba(159,182,162,0.25); margin-top:50px;
}
.service-card{
  background:var(--ink); padding:38px 30px 44px; position:relative;
  transition:background .25s;
}
.service-card:hover{background:var(--ink-soft);}
.service-card .tag{
  font-family:'IBM Plex Mono'; font-size:12px; color:var(--gold); letter-spacing:.08em;
}
.service-card h3{
  font-size:24px; margin:14px 0 12px; color:var(--cream); text-transform:none;
  font-family:'Big Shoulders Display'; font-weight:700; line-height:1.1;
}
.service-card p{color:var(--sage); font-size:15px; margin:0;}

/* ---------- CASE STUDIES ---------- */
.cases{padding:80px 0 60px;}
.case-card{
  background:#fff; border-radius:var(--radius); padding:38px 40px;
  margin-bottom:26px; box-shadow:0 1px 0 rgba(8,90,48,.08);
  display:grid; grid-template-columns:1fr auto; gap:30px; align-items:center;
}
.case-card:nth-child(even){transform:translateX(18px);}
.case-card h3{font-size:24px; text-transform:none; font-family:'Big Shoulders Display'; font-weight:700;}
.case-card .meta{font-family:'IBM Plex Mono'; font-size:12.5px; color:var(--green); margin-bottom:8px; letter-spacing:.05em;}
.case-card p{color:#3c4a3e; margin:10px 0 0; max-width:520px; font-size:15px;}
.stat-row{display:flex; gap:26px; flex-wrap:wrap;}
.stat{text-align:center; min-width:96px;}
.stat .num{
  font-family:'Big Shoulders Display'; font-weight:900; font-size:34px; color:var(--gold-a11y);
  display:block; line-height:1;
}
.stat .lbl{font-size:12px; color:#6b7a6d; text-transform:uppercase; letter-spacing:.04em;}
.placeholder-note{
  display:inline-block; margin-top:26px; padding:10px 16px; border-radius:10px;
  background:rgba(217,162,87,0.15); color:#8a5a1f; font-size:13px; font-family:'IBM Plex Mono';
}
@media (max-width:820px){
  .case-card{grid-template-columns:1fr;}
  .case-card:nth-child(even){transform:none;}
}

/* ---------- GRÜNDER ---------- */
.founder{background:var(--green); color:var(--cream); padding:100px 0;}
.founder .wrap{display:grid; grid-template-columns:0.8fr 1.2fr; gap:56px; align-items:center;}
.founder-photo{
  width:100%; aspect-ratio:1; border-radius:50%; background:var(--ink);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  border:3px solid rgba(246,241,228,0.25);
}
.founder h2{font-size:clamp(28px,4vw,42px); text-transform:none; line-height:1.05;}
.founder p{color:rgba(246,241,228,0.85); font-size:17px; max-width:560px; margin-top:18px;}
.founder .sales-note{
  margin-top:26px; padding:16px 20px; border-radius:12px;
  background:rgba(16,22,15,0.25); font-size:14.5px; color:var(--cream); max-width:560px;
}
@media (max-width:820px){.founder .wrap{grid-template-columns:1fr;} .founder-photo{max-width:220px; margin:0 auto;}}

/* ---------- FAQ ---------- */
.faq{padding:100px 0;}
.faq h2{font-size:clamp(28px,4vw,40px); text-transform:none; margin:8px 0 30px;}
.faq-q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  padding:24px 0; display:flex; justify-content:space-between; align-items:center;
  font-family:'Big Shoulders Display'; font-weight:700; font-size:19px;
  color:var(--ink); text-transform:none;
}
.faq-q .icon{font-family:'IBM Plex Mono'; color:var(--gold-a11y); font-size:22px; transition:transform .25s;}
.faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
.faq-a p{padding:0 0 22px; margin:0; color:#4a564b; max-width:640px;}

/* ---------- FINAL CTA ---------- */
.final-cta{
  background:var(--ink); color:var(--cream); padding:130px 0; text-align:center;
  position:relative; overflow:hidden;
}
.final-cta h2{font-size:clamp(30px,4.6vw,54px); max-width:760px; margin:0 auto 30px; text-transform:none; line-height:1.05;}
.final-cta .btn-primary{font-size:16px; padding:18px 34px;}

footer{background:var(--ink); color:var(--sage); padding:50px 0 34px; font-size:13px;}
.footer-inner{display:flex; justify-content:space-between; flex-wrap:wrap; gap:20px; align-items:center;}
footer a{text-decoration:none; color:var(--sage);}
footer .foot-links{display:flex; gap:22px;}

/* ---------- STICKY MOBILE CTA ---------- */
body{padding-bottom:76px;}
.sticky-cta{
  position:fixed; bottom:0; left:0; right:0; z-index:60;
  background:var(--ink); padding:12px 16px; border-top:1px solid rgba(159,182,162,0.2);
  display:flex; justify-content:center;
}
.sticky-cta .btn-primary{width:100%; max-width:420px; justify-content:center; padding:15px 20px;}

@media (min-width:860px){
  .sticky-cta{display:none;}
  body{padding-bottom:0;}
}

