/* studiofantastica — Tokens 1:1 aus Figma Q8nMcYnCm8AohwiRED7NTP */
:root{
  --dark:#101604; --lime:#b7fe02; --mint:#00ffb2; --sky:#55d1ff;
  --yellow:#e0ff10; --orange:#ff6f16;
  --light:#f7f9f3; --light-2:#e7ecd8; --card:#eff3e5; --card-dark:#000; --ink:#000; --body:#595959; --white:#fff;
  --glass:rgba(255,255,255,.12); --glass2:rgba(255,255,255,.20);
  --maxw:1176px; --pad:52px;
  --f:"Geist",ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
  --fm:"Geist Mono",ui-monospace,"SF Mono",Menlo,monospace;
}
*{box-sizing:border-box}
body{margin:0;background:var(--light);color:var(--ink);font-family:var(--f);
  font-size:16px;line-height:24px;letter-spacing:-.32px;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
.wrap{max-width:calc(var(--maxw) + var(--pad)*2);margin-inline:auto;padding-inline:var(--pad)}
h1,h2,h3{margin:0;font-weight:400}
h1{font-size:clamp(34px,4.38vw,56px);line-height:64px;letter-spacing:-1.12px;color:var(--white)}
h2{font-size:clamp(32px,5vw,64px);line-height:1.125;letter-spacing:-1.28px}
h3{font-size:24px;line-height:32px;letter-spacing:-.48px}
.label{font-family:var(--fm);font-size:14px;line-height:20px;letter-spacing:1.68px;
  text-transform:uppercase;display:inline-flex;align-items:center;gap:8px}
.label::before{content:"";width:4px;height:4px;border-radius:50%;background:currentColor;flex:none}
.on-dark{color:var(--lime)} .on-light{color:var(--ink)}
.btn{display:inline-flex;align-items:center;justify-content:center;height:44px;
  padding-inline:28px;border-radius:32px;border:0;font-family:var(--fm);font-size:14px;
  line-height:20px;letter-spacing:1.68px;text-transform:uppercase;text-decoration:none;
  cursor:pointer;white-space:nowrap;transition:transform .18s ease,filter .18s ease}
.btn:hover{transform:translateY(-1px)}
.btn:focus-visible{outline:2px solid var(--lime);outline-offset:3px}
.btn-lime{background:var(--lime);color:var(--dark);font-weight:500}
.btn-glass{background:var(--glass2);border:1px solid var(--glass2);color:var(--white);
  border-radius:48px;backdrop-filter:blur(10px);letter-spacing:2.24px;font-weight:500}
.hero{position:relative;background:var(--dark);overflow:hidden;isolation:isolate}
/* Bild breiter als der Rahmen und nach links geschoben,
   damit die Person mittig unter der Ueberschrift sitzt (wie im Figma) */
/* Bildplatzierung exakt aus dem Figma-Hero gemessen (Mustervergleich)
   Bild 145.5% breit, 165% hoch, Versatz -45% / -38.5%.
   max-width:none noetig, sonst deckelt die globale img-Regel auf 100%. */
.hero-img{position:absolute;left:-47.5%;top:-47.3%;width:147.7%;height:166%;max-width:none;object-fit:cover;z-index:-2}
.hero-fallback{position:absolute;inset:0;z-index:-3;
  background:radial-gradient(78% 62% at 50% 26%,#8f9a6a 0%,#5d6a3e 38%,#2c3616 68%,var(--dark) 100%)}
/* Zwei getrennte Verlaeufe wie im Figma:
   1) Abdunklung von oben, 0.6 -> 0.03, nur ueber 727px = 85.1% der Hoehe
   2) Abdunklung nach unten, startet bei 46.9%, erreicht Vollton erst bei 115.6%
      (der Bildcontainer ist 1090px hoch und beginnt 103px oberhalb der Kante) */
.hero-veil{position:absolute;inset:0;z-index:-1;
  background:
    linear-gradient(180deg,rgba(16,22,4,0) 29.4%,#101604 118.7%),
    linear-gradient(180deg,rgba(16,22,4,.55) 0%,rgba(16,22,4,.03) 98.2%,rgba(16,22,4,0) 100%)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:24px;
  padding:28px 65px;position:relative;z-index:3}
.logo{display:inline-flex;align-items:center;flex:none;line-height:0}
.logo img{width:146px;height:auto;display:block}
.nav-panel{display:flex;align-items:center;gap:24px}
.nav-links{display:flex;align-items:center;gap:4px;list-style:none;margin:0;padding:0}
.nav-links a{display:inline-flex;align-items:center;height:40px;padding-inline:20px;white-space:nowrap;
  border-radius:48px;color:var(--white);text-decoration:none;font-family:var(--fm);
  font-size:14px;letter-spacing:1.68px;text-transform:uppercase;backdrop-filter:blur(10px)}
.nav-links a:hover{background:var(--glass)}
.hero-inner{padding:96px var(--pad) 108px;max-width:calc(var(--maxw) + var(--pad)*2);margin-inline:auto;
  min-height:754px;display:flex;flex-direction:column;align-items:center;
  justify-content:flex-end;text-align:center;position:relative}
.hero-copy{max-width:1120px;display:flex;flex-direction:column;gap:12px}
.hero-copy p{margin:0;color:var(--white);max-width:600px;margin-inline:auto;
  font-size:18px;line-height:24px;letter-spacing:-.36px}
.actions{display:flex;gap:16px;flex-wrap:wrap;justify-content:center;margin-top:32px}
.badge{display:inline-flex;align-items:center;gap:8px;background:var(--glass);
  border:1px solid var(--glass);backdrop-filter:blur(10px);border-radius:48px;
  padding:4px 16px 4px 4px;color:var(--white);font-size:14px;font-weight:500;
  letter-spacing:-.28px;white-space:nowrap}
.badge i{width:32px;height:32px;border-radius:40px;flex:none;display:grid;place-items:center}
.badge i svg{width:16px;height:16px}
/* Wrapper erzeugt am Desktop keine Box - die Kaestchen bleiben absolut zum Hero */
.badges{display:contents}
.nav-toggle{display:none}
.float{position:absolute;z-index:2}
/* Positionen aus dem neuen Hero gemessen, Frame 1280x854 */
.b1{left:22.3%;top:49.0%}   /* Kein Risiko */
.b2{left:68.7%;top:43.2%}   /* Festpreis */
.b3{left:17.3%;top:79.6%}   /* 24h Antwort */
.b4{left:72.5%;top:77.9%}   /* Zufriedenheitsgarantie */
.b5{left:68.9%;top:90.0%}   /* 3 Tage */
.aim{background:var(--dark);color:var(--white);padding:108px 0}
.aim .row{display:grid;grid-template-columns:380px 1fr;gap:24px;align-items:start}
.aim h2{font-size:clamp(24px,2.45vw,31px);line-height:39px;letter-spacing:-.62px;color:var(--white)}
.aim em{font-style:normal;color:var(--lime)}
.aim p{margin:24px 0 0;color:rgba(255,255,255,.72);max-width:760px}
/* Ueber mich: alles zentriert, Groessen aus der Vorlage gemessen */
/* Ueber mich - Kopf aus Figma (1:667), Statistik-Balken nach Nilus Vorlage */
.offer{background:var(--white);padding:67px 0 92px;text-align:center}
.offer h2{font-size:clamp(28px,3.13vw,40px);line-height:52px;letter-spacing:-.8px;
  max-width:821px;margin:31px auto 0;color:#1d1d1d}
.offer>.wrap>p{color:var(--ink);max-width:821px;margin:15px auto 0;
  font-size:16px;line-height:24px;letter-spacing:-.32px}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:56px}
.offer-panel{background:var(--light);border-radius:22px;padding:44px 32px;margin-top:24px}
.offer-panel h2{margin:0}
.offer-panel p{margin:14px auto 0;max-width:62ch;font-size:16px;line-height:24px;
  letter-spacing:-.32px;color:rgba(0,0,0,.75)}
@media(max-width:900px){ .offer-panel{padding:28px 20px;border-radius:18px} }
.stat{background:#232a17;color:var(--white);border-radius:14px;padding:30px 22px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;text-align:center;min-height:108px}
.stat .n{font-size:22px;line-height:30px;font-weight:700;letter-spacing:-.44px;color:var(--white);
  font-variant-numeric:tabular-nums}
.stat .t{font-size:15px;line-height:22px;font-weight:300;letter-spacing:-.3px;color:rgba(255,255,255,.72)}
/* Abstaende aus der ueberarbeiteten Figma-Vorlage gemessen */
.services{background:var(--light);padding:105px 0 117px}
.head{display:flex;flex-direction:column;gap:42px}
.head p{margin:0;color:var(--body)}
/* .head p{margin:0} ist spezifischer - deshalb hier mit p davor */
.head p.head-cta{align-self:flex-start;margin-top:32px}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:72px}
.card{background:var(--card);border-radius:12px;padding:16px;min-height:331px;
  display:flex;flex-direction:column;gap:51px}
.card .ico{width:48px;height:48px;border-radius:12px;background:var(--dark);
  display:grid;place-items:center;flex:none}
.card .ico svg{width:24px;height:24px}

.card p{margin:16px 0 0;color:var(--body)}
/* Blockhoehe 672px - Wert aus den Figma-Frames (1280x672 je Schritt) */
.step{display:grid;grid-template-columns:1fr 1fr;min-height:672px;background:var(--dark);color:var(--white)}
.step-copy{padding:52px;display:flex;flex-direction:column;justify-content:space-between}
.step-copy h3{font-size:clamp(28px,3.2vw,44px);line-height:1.15;letter-spacing:-.9px;color:var(--lime)}
.step-copy p{margin:16px 0 0;color:rgba(255,255,255,.91);max-width:46ch;font-size:15px;line-height:22px}
.step-media{position:relative;overflow:hidden;container-type:size;
  background:linear-gradient(140deg,#2a3414 0%,#47542a 55%,#1a2309 100%);display:grid;place-items:center}
.step-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
/* Foto und Kreisgrafik liegen in einer gemeinsamen Buehne. Die Buehne behaelt ihr
   Seitenverhaeltnis, also skalieren Foto und Kreis immer gemeinsam - beim
   Fensterverkleinern verrutscht der Kreis nicht mehr gegen den Zeigefinger.
   Die min-Breite in px sorgt dafuer, dass die Buehne den Block immer ausfuellt. */
/* Die Buehne wird ueber ihren Bezugspunkt positioniert: left/top sind die Stelle
   im Block, translate ist dieselbe Stelle im Bild. Dadurch bleibt der Kreis bei
   jeder Fenstergroesse auf dem Zeigefinger. Der cqh-Wert haelt die Buehne immer
   gross genug, damit sie den Block fuellt (cqh = Blockhoehe). */
.step-media .buehne{position:absolute;z-index:0}
.step-media .deko{inset:auto;translate:-50% -50%;height:auto;max-width:none;
  object-fit:contain;z-index:1;pointer-events:none}
.buehne-1{aspect-ratio:1304/1206;left:52.7%;top:47%;translate:-52.4% -47%;
  width:113.5%;width:max(100.6%,108.2cqh)}
.buehne-1 .deko{left:52.4%;top:47%;width:36.1%}
/* Schritt 3: Kreismitte sitzt auf der Fingerspitze (Mustervergleich, Korrelation 0,98) */
.buehne-3{aspect-ratio:1224/1285;left:49.8%;top:50%;translate:-40.1% -44.2%;
  width:145.3%;width:max(145.3%,108cqh)}
.buehne-3 .deko{left:40.1%;top:44.2%;width:29.6%}
/* Ziffer bei Schritt 1 und 3 neongruen, bei Schritt 2 weiss - so im Design */
.step-media .count{position:absolute;top:40px;right:40px;font-size:40px;
  letter-spacing:-1px;color:var(--lime);font-variant-numeric:tabular-nums;z-index:2}
.step-media .count-weiss{color:var(--white)}
.step-media .count span{opacity:.45}
/* Preise - Masse aus der Figma-Vorlage gemessen, linksbuendig */
.pricing{background:#f7f7f7;padding:109px 0 72px}
.pricing .head{gap:16px;align-items:flex-start}
.pricing h2{font-size:clamp(30px,3.75vw,48px);line-height:56px;letter-spacing:-.96px;color:#111110}
.pricing .head p{font-size:16px;line-height:24px;letter-spacing:-.32px;color:rgba(0,0,0,.8)}
.plans{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:64px}
.plan{border-radius:12px;padding:24px;min-height:665px;
  display:flex;flex-direction:column;text-align:left}
.plan-dark{background:#111;color:var(--white)}
.plan-lime{background:var(--lime);color:var(--dark)}
.plan .mark{width:50px;height:50px;border-radius:12px;display:grid;place-items:center;flex:none}
.plan-dark .mark{background:var(--dark);border:1px solid var(--white);color:var(--white)}
.plan-lime .mark{background:var(--dark);color:var(--lime)}
.plan .mark svg{width:24px;height:24px}
.plan .price{font-size:clamp(48px,5.9vw,75px);line-height:52px;font-weight:700;letter-spacing:-1.5px;
  margin-top:36px;font-variant-numeric:tabular-nums}
.plan .tier{font-family:var(--fm);font-size:14px;line-height:20px;letter-spacing:1.68px;
  text-transform:uppercase;margin-top:56px}
.plan-dark .tier{color:#fcfcfa}
.plan-lime .tier{color:#050404}
.plan .desc{margin:40px 0 0;font-size:32px;line-height:40px;letter-spacing:-.64px}
.plan .desc strong{font-weight:600;text-decoration:underline;text-underline-offset:3px}
.plan ul{list-style:none;margin:0;padding:62px 0 56px;display:flex;flex-direction:column;gap:16px}
.plan li{display:flex;align-items:flex-start;gap:12px;font-size:16px;line-height:24px;letter-spacing:-.32px}
.plan li svg{width:24px;height:24px;flex:none}
.plan-dark li svg{fill:var(--white);stroke:#111}
.plan-lime li svg{fill:var(--dark);stroke:var(--lime)}
.plan-cta{align-self:center;margin-top:auto;padding-block:0}
.plan-cta-outline{background:transparent;border:1.5px solid rgba(5,4,4,.85);color:#050404}
.why{background:var(--card);padding:120px 0}
.why+.why{padding-top:0}
.why h2{font-size:clamp(30px,4.06vw,52px);line-height:72px;letter-spacing:-1.04px;
  max-width:1009px;margin-top:12px}
.why p{margin:12px 0 0;font-size:16px;line-height:24px;letter-spacing:-.32px;
  color:var(--body);max-width:1009px}
/* Bildflaeche im Seitenverhaeltnis der Referenz-Screenshots (2000x1249),
   damit nichts abgeschnitten wird - weicht bewusst vom Figma-Format 1270x766 ab */
.why .media{margin-top:64px;aspect-ratio:2000/1249;border-radius:20px;overflow:hidden;
  background:linear-gradient(135deg,#dfe7cf 0%,#c6d4a8 48%,#eef3e4 100%);display:grid;place-items:center}
.why .media img{width:100%;height:100%;object-fit:contain}
.faq{background:#f7f9f2;padding:72px 0}
.faq .head{align-items:center;text-align:center;gap:12px}
.faq h2{font-size:clamp(32px,5vw,64px);line-height:72px;letter-spacing:-2.56px}
.faq .head p{font-size:16px;line-height:24px;letter-spacing:-.32px;color:var(--body)}
.faq-list{margin-top:64px;display:flex;flex-direction:column;gap:12px}
.faq-item{background:#e6ecd6;color:var(--ink);border-radius:12px;padding:16px}
.faq-item[open]{background:var(--dark);color:var(--white)}
.faq-item summary{display:flex;align-items:center;justify-content:space-between;gap:24px;
  cursor:pointer;list-style:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item .num{font-family:var(--fm);font-size:14px;line-height:20px;letter-spacing:1.68px;flex:none}
.faq-item .q{font-size:24px;line-height:32px;letter-spacing:-.96px}
.faq-item .plus{flex:none;width:24px;height:24px;transition:transform .2s ease}
.faq-item[open] .plus{transform:rotate(45deg)}
.faq-item .a{margin:16px auto 0;max-width:988px;text-align:center;
  font-size:16px;line-height:24px;letter-spacing:-.32px;color:#bfbebe}
/* Kontakt - Werte aus Figma (Node 1:535) */
.contact{background:#eef3e4;padding:52px 0}
.contact .head{align-items:center;text-align:center;gap:16px}
.contact h2{font-size:clamp(30px,3.75vw,48px);line-height:56px;letter-spacing:-1.92px}
.contact .head p{font-size:16px;line-height:24px;letter-spacing:-.32px;color:var(--body)}
.form{margin-top:40px;background:var(--white);border-radius:12px;padding:20px;
  display:flex;flex-direction:column;gap:24px}
.field{display:flex;flex-direction:column;gap:12px}
.field label{font-size:20px;line-height:28px;letter-spacing:-.4px;color:var(--ink)}
.field input,.field textarea{font:inherit;font-size:16px;line-height:24px;letter-spacing:-.32px;
  color:var(--ink);background:transparent;border:1px solid #d7d7d7;border-radius:12px;
  padding:8px 28px;height:56px}
.field input::placeholder,.field textarea::placeholder{color:var(--body)}
.field textarea{height:155px;padding-top:16px;resize:vertical}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--dark)}
.form-cta{align-self:flex-start;background:var(--dark);color:var(--lime)}
.details{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:40px}
.detail{display:flex;align-items:flex-start;gap:16px}
.detail .ico{width:56px;height:56px;border-radius:12px;background:var(--dark);color:var(--lime);
  display:grid;place-items:center;flex:none}
.detail .ico svg{width:24px;height:24px}
.detail .k{font-size:16px;line-height:24px;letter-spacing:-.32px;color:var(--ink)}
.detail .v{font-size:20px;line-height:28px;letter-spacing:-.4px;margin-top:4px}
.detail .v a{color:inherit;text-decoration:none}
.detail .v a:hover{text-decoration:underline}
/* CTA - Werte aus Figma (Node 1:588). Im Design liegt dort kein Foto,
   sondern eine olivgruene Flaeche. */
.cta{position:relative;background:#525418;color:var(--white);height:671px;text-align:center;
  overflow:hidden;isolation:isolate}
.cta h2{position:absolute;left:50%;translate:-50%;top:45px;width:566px;max-width:calc(100% - 48px);
  font-size:clamp(48px,8.67vw,111px);line-height:1;letter-spacing:-2.22px;color:var(--white);font-weight:700}
.cta-unten{position:absolute;left:50%;top:calc(50% + 216px);translate:-50% -50%;
  display:flex;flex-direction:column;align-items:center;gap:32px;width:100%}
.cta p{margin:0;width:499px;max-width:calc(100% - 48px);
  font-size:16px;line-height:24px;letter-spacing:-.32px;color:var(--lime)}
.cta .actions{display:flex;gap:16px;justify-content:center}
/* Footer nach dem neuen Entwurf: Menue oben mittig, Wortmarke ueber die
   volle Breite, Rahmenhoehe 866 */
.foot{background:var(--dark);color:var(--white);min-height:866px;padding:45px 0 40px;
  display:flex;flex-direction:column}
.foot-nav{display:flex;justify-content:center;flex-wrap:wrap;gap:28px}
.foot a{color:var(--white);text-decoration:none;font-family:var(--fm);
  font-size:14px;line-height:20px;letter-spacing:1.68px;text-transform:uppercase;white-space:nowrap}
.foot a:hover{color:var(--lime)}
/* Wortmarke spannt sich per SVG auf die volle Rahmenbreite (Rand 7px) */
.wordmark{display:block;width:calc(100% - 14px);height:auto;margin:380px auto 0}
.wordmark text{font-family:var(--f);font-weight:600;font-size:132px;fill:var(--white)}
.foot-bottom{margin-top:auto;padding:24px var(--pad) 0;
  display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap;
  font-size:13px;color:rgba(255,255,255,.5)}
.todo{color:var(--orange)}
/* Die Menueleiste braucht rund 1230px - darunter Burger-Menue */
@media(max-width:1250px){
  .nav{padding-inline:32px}
  .nav-panel{gap:16px}
  .nav-links a{padding-inline:14px}
}
@media(max-width:1080px){
  .logo img{width:116px}

  /* Handy: Burger-Menue statt Menueleiste */
  .nav-toggle{display:flex;flex-direction:column;justify-content:center;gap:5px;
    width:44px;height:44px;padding:0 10px;background:var(--glass2);border:0;border-radius:12px;
    backdrop-filter:blur(10px);cursor:pointer}
  .nav-toggle span{display:block;height:2px;border-radius:2px;background:var(--white);
    transition:transform .2s ease,opacity .2s ease}
  .nav.offen .nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav.offen .nav-toggle span:nth-child(2){opacity:0}
  .nav.offen .nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .nav-panel{display:none}
  .nav.offen .nav-panel{display:flex;flex-direction:column;align-items:stretch;gap:16px;
    position:absolute;left:var(--pad);right:var(--pad);top:calc(100% - 8px);z-index:4;
    background:rgba(16,22,4,.94);backdrop-filter:blur(12px);border-radius:16px;padding:16px}
  .nav.offen .nav-links{flex-direction:column;align-items:stretch;gap:2px}
  .nav.offen .nav-links a{height:48px;justify-content:center}
}
@media(max-width:900px){
  :root{--pad:24px}
  .foot{min-height:0;padding:40px 0 32px}
  .wordmark{margin-top:64px}
  .offer,.services,.pricing,.why,.faq,.contact{padding:72px 0}
  .stats,.cards,.plans,.details,.step,.aim .row{grid-template-columns:1fr}
  .cards{margin-top:64px}
  /* Kaestchen wandern unter die Buttons und laufen dort um */
  .hero{display:flex;flex-direction:column}
  .nav{order:1} .hero-inner{order:2} .badges{order:3}
  .badges{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;
    padding:24px var(--pad) 40px}
  .badges .float{position:static}
  .badge{font-size:13px;padding:3px 12px 3px 3px}
  .badge i{width:26px;height:26px}
  .badge i svg{width:14px;height:14px}
  .hero-inner{min-height:520px;padding-bottom:64px}
  .step-media{min-height:320px}
  /* feste Zeilenhoehen aus Figma gelten nur am Desktop */
  .why h2,.faq h2,.contact h2,.pricing h2,.offer h2{line-height:1.14}
  h1{line-height:1.14}
  .plan .desc{font-size:24px;line-height:32px}
  .plan{min-height:0}
  .faq-item .q{font-size:20px;line-height:28px}
  /* CTA: am Desktop absolut gesetzt (Figma), am Handy normaler Fluss -
     Headline gross, direkt darunter Text und Buttons wie am Desktop */
  .cta{height:auto;padding:72px var(--pad);display:flex;flex-direction:column;
    align-items:center;justify-content:center;gap:32px}
  .cta h2{position:static;translate:none;top:auto;left:auto;width:auto;max-width:560px;
    font-size:clamp(40px,13vw,72px);line-height:1.02}
  .cta-unten{position:static;translate:none;top:auto;left:auto;width:auto;gap:24px}
  .cta p{max-width:440px}
  .cta .actions{flex-wrap:wrap}
  /* schmale Fenster: nur so weit zoomen, dass der Block gefuellt ist */
  .buehne-3{width:max(124.2%,108cqh)}
}
/* ---- Bewegung, wie auf studiofantastica.de ---- */
@keyframes schweben{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
@keyframes aufleuchten{0%{filter:saturate(.12) brightness(1.5);opacity:.55}100%{filter:none;opacity:1}}
@keyframes welle{0%{opacity:0;transform:scale(.62)}55%{opacity:1;transform:scale(1.06)}100%{opacity:1;transform:scale(1)}}
@keyframes tippen{0%{opacity:0;transform:scale(.28)}45%{opacity:1;transform:scale(1.07)}70%{opacity:1;transform:scale(.985)}100%{opacity:1;transform:scale(1)}}
/* Kaestchen im Hero schweben leicht, versetzt */
.float{animation:schweben 6s ease-in-out infinite}
.b1{animation-delay:-.4s} .b2{animation-delay:-2.1s} .b3{animation-delay:-3.4s}
.b4{animation-delay:-1.2s} .b5{animation-delay:-4.6s}
/* Farbpunkte leuchten beim Laden auf */
.hero.is-an .badge i{animation:aufleuchten .9s ease-out both}
/* Ablauf-Grafiken starten, sobald der Block im Bild ist */
.step .deko{opacity:0}
.step.is-in .deko{opacity:1}
.step:nth-of-type(1).is-in .deko{animation:welle 1.15s cubic-bezier(.22,.68,.28,1) both}
.step:nth-of-type(3).is-in .deko{animation:tippen 1.25s cubic-bezier(.18,.7,.24,1) both}
@media(prefers-reduced-motion:reduce){*{transition:none!important;animation:none!important}
  .step .deko{opacity:1}}


/* ---- Kacheln als Laufband, nur mobil ---- */
@media(max-width:900px){
  .laufband{order:3;display:flex;gap:10px;overflow:hidden;width:100%;padding-block:4px 30px;
    -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
    mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
  .laufband .badges{position:static;display:flex;flex:none;gap:10px;padding:0;margin:0;
    width:max-content;animation:laufen 24s linear infinite}
  .laufband .badges-kopie{display:flex}
  .laufband .badge{position:static;margin:0;flex:none;transform:none!important;animation:none!important}
}
@media(min-width:901px){ .laufband{display:contents} .badges-kopie{display:none} }
@keyframes laufen{from{transform:translateX(0)}to{transform:translateX(calc(-100% - 10px))}}
@media(prefers-reduced-motion:reduce){
  .laufband .badges{animation:none}
  .laufband{overflow-x:auto}
}

br.m{display:none}

/* ---- Mobiler Hero: Foto angeschnitten, Text links unten ---- */
@media(max-width:900px){
  br.m{display:inline}
  h1{font-size:26px;line-height:1.12;letter-spacing:-.75px;text-align:left}
  .hero-inner{order:2;min-height:74vh;justify-content:flex-end;align-items:flex-start;
    text-align:left;padding:0 var(--pad) 16px}
  .hero-copy{align-items:flex-start;text-align:left;gap:11px}
  .hero-copy p{margin-inline:0;text-align:left;max-width:23ch;font-size:15px;line-height:22px}
  .actions{display:grid;grid-auto-flow:row;gap:10px;margin-top:20px;
    width:max-content;justify-items:stretch}
  .actions .btn{width:100%}
  .hero-img{left:0;top:-28%;width:132%;height:140%;max-width:none;
    object-fit:cover;object-position:66% 50%}
  .hero-veil{background:linear-gradient(180deg,
    rgba(16,22,4,.88) 0%,rgba(16,22,4,.52) 10%,rgba(16,22,4,.12) 22%,rgba(16,22,4,.05) 40%,
    rgba(16,22,4,.70) 58%,rgba(16,22,4,.96) 72%,#101604 84%)}
}

/* ---- Buttons: Einblenden und Druckfeedback ---- */
.btn{-webkit-tap-highlight-color:transparent}
.btn:active{transform:scale(.975)!important;transition:transform .08s ease}
.hero.is-an .actions .btn{animation:knopf-auf .6s cubic-bezier(.2,.7,.3,1) both}
.hero.is-an .actions .btn:nth-child(1){animation-delay:.45s}
.hero.is-an .actions .btn:nth-child(2){animation-delay:.58s}
@keyframes knopf-auf{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
@media(prefers-reduced-motion:reduce){ .hero.is-an .actions .btn{animation:none} }


/* ---- Die drei Balken bauen sich beim Scrollen auf ---- */
.stats .stat{opacity:0}
.stats.is-in .stat{animation:balken-auf .62s cubic-bezier(.2,.75,.3,1) both}
.stats.is-in .stat:nth-child(1){animation-delay:0s}
.stats.is-in .stat:nth-child(2){animation-delay:.13s}
.stats.is-in .stat:nth-child(3){animation-delay:.26s}
@keyframes balken-auf{
  from{opacity:0;transform:translateY(22px) scale(.97)}
  to{opacity:1;transform:none}}
@media(prefers-reduced-motion:reduce){ .stats .stat{opacity:1} .stats.is-in .stat{animation:none} }

/* ---- wie live: Schritt 2 Faecher dreht sich ---- */
/* Schritt 2: Buehne im Seitenverhaeltnis des Fotos, Faecher genau mittig im Bildschirm des Monitors */
.buehne-2{aspect-ratio:1280/1344;left:52.2%;top:48.4%;translate:-52.2% -48.4%;width:max(100%,96cqh)}
.buehne-2 .deko{left:52.2%;top:48.4%;width:32%;aspect-ratio:1;transform-origin:50% 50%}
.step:nth-of-type(2).is-in .deko{animation:faecherAuf 1s ease-out both,faecherDreh 22s linear 1s infinite}
@keyframes faecherAuf{from{opacity:0}to{opacity:1}}
@keyframes faecherDreh{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
/* ---- wie live: Referenzbilder zoomen beim Hereinscrollen auf Normalgroesse ---- */
.why .media img{transform:scale(1.10);transition:transform 1.2s cubic-bezier(.25,.7,.3,1)}
.why.is-in .media img{transform:scale(1)}
/* ---- wie live: mobile Kachel in der Mitte wird hell ---- */
@media(max-width:900px){
  .stat{transition:background .35s ease,scale .35s ease}
  .stat .n,.stat .t{transition:color .35s ease}
  .stat.is-mid{background:rgb(239,243,228);scale:1.03}
  .stat.is-mid .n,.stat.is-mid .t{color:#101604}
}
@media(prefers-reduced-motion:reduce){.why .media img{transform:none;transition:none}.stat{transition:none}}

/* ===== von der Live-Seite uebernommen: Formular-Meldungen, Impressum/Datenschutz, Cookie-Banner ===== */
:root{--primary:var(--lime);--font-mono:var(--fm);--font-body:var(--f)}
.pflicht{color:#b3261e;font-weight:500}
.optional{color:#595959;font-size:16px;letter-spacing:-.32px}
.pflicht-hinweis{font-size:14px;line-height:20px;color:#595959;margin:-8px 0 0}
.pflicht-hinweis .pflicht{margin-right:4px}
.fehler{
  font-size:14px;line-height:20px;color:#b3261e;margin:-4px 0 0;
  display:flex;align-items:center;gap:6px;
}
.fehler[hidden]{display:none}
.fehler::before{content:"!";flex:0 0 16px;width:16px;height:16px;border-radius:50%;
  background:#b3261e;color:#fff;font-size:11px;font-weight:700;line-height:16px;text-align:center}
.field input[aria-invalid="true"],.field textarea[aria-invalid="true"]{border-color:#b3261e;background:#fef7f7}

.danke{
  position:relative;display:none;align-items:flex-start;gap:12px;
  background:rgba(16,22,4,.9);color:#fff;border-radius:12px;
  padding:18px 52px 18px 20px;width:100%;
  animation:dankeAuf .28s cubic-bezier(.2,.7,.3,1);
}
.danke.is-an{display:flex}
.danke p{font-size:16px;line-height:24px;letter-spacing:-.32px;margin:0}
.danke__haken{
  flex:0 0 24px;width:24px;height:24px;border-radius:50%;background:var(--primary);
  display:flex;align-items:center;justify-content:center;margin-top:1px;
}
.danke__haken svg{width:14px;height:14px;display:block}
.honig{position:absolute;left:-9999px;width:1px;height:1px;opacity:0;pointer-events:none}
.panne{background:#fdecec;border:1px solid #f0b9b6;border-radius:12px;padding:16px 20px;width:100%}
.panne[hidden]{display:none}
.panne p{font-size:16px;line-height:24px;letter-spacing:-.32px;color:#8a1f19;margin:0}
.panne a{color:#8a1f19;text-decoration:underline;text-underline-offset:3px}
.kontakt__submit[disabled]{opacity:.55;cursor:default}
.danke__x{
  position:absolute;right:12px;top:12px;width:30px;height:30px;border:0;border-radius:50%;
  background:rgba(255,255,255,.12);color:#fff;font-size:16px;line-height:1;cursor:pointer;
  transition:background .2s ease;
}
.danke__x:hover{background:rgba(255,255,255,.22)}
@keyframes dankeAuf{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
@media (prefers-reduced-motion:reduce){ .danke{animation:none} }
/* ================= MODAL (Impressum) ================= */
.modal{
  position:fixed;inset:0;z-index:140;display:none;
  align-items:center;justify-content:center;padding:24px;
}
.modal.is-open{display:flex}
.modal__backdrop{position:absolute;inset:0;background:rgba(16,22,4,.72);backdrop-filter:blur(2px)}
.modal__box{
  position:relative;background:#fff;border-radius:16px;
  width:100%;max-width:560px;max-height:82vh;overflow:auto;
  padding:36px 36px 32px;
  box-shadow:0 24px 60px rgba(16,22,4,.28);
  animation:modalAuf .24s cubic-bezier(.2,.7,.3,1);
}
@keyframes modalAuf{from{opacity:0;transform:translateY(14px) scale(.985)}to{opacity:1;transform:none}}
.modal__close{
  position:absolute;right:14px;top:14px;width:38px;height:38px;border:0;border-radius:50%;
  background:rgba(16,22,4,.06);color:var(--dark);font-size:20px;line-height:1;cursor:pointer;
  transition:background .2s ease;
}
.modal__close:hover{background:rgba(16,22,4,.12)}
.modal__box h2{
  font-size:28px;font-weight:600;line-height:34px;letter-spacing:-.56px;color:var(--dark);
  margin:0 0 18px;
}
.modal__box h3{
  font-family:var(--font-mono);font-size:12px;line-height:18px;letter-spacing:1.44px;
  text-transform:uppercase;color:#6b7355;margin:20px 0 4px;font-weight:400;
}
.modal__box p{font-size:16px;line-height:24px;letter-spacing:-.32px;color:var(--dark);margin:0}
.modal__box a{color:var(--dark);text-decoration:underline;text-underline-offset:3px}
.modal__hinweis{
  margin-top:26px;padding:14px 16px;border-radius:10px;
  background:rgb(239,243,228);font-size:14px;line-height:21px;color:#3d4432;
}
@media (max-width:900px){
  .modal{padding:16px}
  .modal__box{padding:28px 20px 24px;max-height:88vh}
  .modal__box h2{font-size:24px;line-height:30px}
}
@media (prefers-reduced-motion:reduce){ .modal__box{animation:none} }

.modal--lang .modal__box{max-width:720px;max-height:86vh}
.modal--lang .modal__box h3{
  font-family:var(--font-body);font-size:20px;font-weight:600;line-height:26px;
  letter-spacing:-.4px;text-transform:none;color:var(--dark);
  margin:30px 0 10px;padding-top:18px;border-top:1px solid rgba(16,22,4,.1);
}
.modal--lang .modal__box h4{
  font-size:16px;font-weight:600;line-height:22px;letter-spacing:-.3px;
  color:var(--dark);margin:18px 0 6px;
}
.modal--lang .modal__box p{font-size:14px;line-height:21px;letter-spacing:0;margin:0 0 10px;color:#2b3122}
.modal--lang .modal__box ul{margin:0 0 12px 18px;padding:0}
.modal--lang .modal__box li{font-size:14px;line-height:21px;color:#2b3122;margin-bottom:6px}
.modal--lang .modal__caps{background:rgb(239,243,228);padding:12px 14px;border-radius:8px}
@media (max-width:900px){
  .modal--lang .modal__box h3{font-size:18px;line-height:24px}
}

/* ================= COOKIE-BANNER ================= */
.cc{
  position:fixed;left:0;right:0;bottom:0;z-index:130;
  display:none;padding:16px;
}
.cc.is-an{display:block}
.cc__box{
  position:relative;max-width:430px;margin:0 auto;
  background:rgba(16,22,4,.96);color:#fff;border-radius:12px;
  padding:16px 40px 16px 18px;
  box-shadow:0 14px 34px rgba(16,22,4,.3);
  animation:ccAuf .3s cubic-bezier(.2,.7,.3,1);
}
@keyframes ccAuf{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}
.cc__titel{font-size:14px;font-weight:600;line-height:20px;letter-spacing:-.28px;margin:0 0 4px}
.cc__text{font-size:12.5px;line-height:18px;color:rgba(255,255,255,.8);margin:0 0 12px}
.cc__text a,.cc__link{color:var(--primary);text-decoration:underline;text-underline-offset:3px}
.cc__link{background:none;border:0;padding:0;font:inherit;cursor:pointer}
.cc__aktionen{display:flex;gap:8px;flex-wrap:wrap}
.cc__btn{
  flex:1 1 0;min-width:118px;height:36px;border-radius:48px;border:0;cursor:pointer;
  font-family:var(--font-mono);font-size:11px;letter-spacing:1.32px;text-transform:uppercase;
  transition:background .2s ease,border-color .2s ease;
}
.cc__btn--ja{background:var(--primary);color:var(--dark)}
.cc__btn--ja:hover{background:#c8ff35}
.cc__btn--nein{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.28)}
.cc__btn--nein:hover{border-color:rgba(255,255,255,.55)}
.cc__x{
  position:absolute;right:8px;top:8px;width:28px;height:28px;border:0;border-radius:50%;
  background:rgba(255,255,255,.1);color:#fff;font-size:16px;line-height:1;cursor:pointer;
  transition:background .2s ease;
}
.cc__x:hover{background:rgba(255,255,255,.2)}
@media (max-width:900px){
  .cc{padding:10px}
  .cc__box{padding:14px 16px 14px}
  .cc__x{right:6px;top:6px}
  .cc__titel{padding-right:30px}
}
@media (prefers-reduced-motion:reduce){ .cc__box{animation:none} }
.form .kontakt__submit[disabled]{opacity:.55;cursor:default}

/* ---- Desktop-Hero: Haare immer unter der Menueleiste, Gesicht ueber der Headline ---- */
@media(min-width:901px){
  .hero-img{height:auto;top:calc(118px - 37.7vw)}
  .hero-inner{min-height:max(754px,calc(350px + 25.6vw))}
}
@media(min-width:1700px){.hero-img{width:140%;left:-40%;top:calc(118px - 35.7vw)}}
/* kleine Laptops (wenig Hoehe): Hero passt komplett in den ersten Blick */
@media(min-width:901px) and (max-height:853px){
  .hero-inner{min-height:max(540px,calc(100vh - 110px));padding-top:64px;padding-bottom:64px}
  .actions{margin-top:24px}
}
/* ---- Menue: Logo, Menue und Button mit immer gleichen Abstaenden ---- */
@media(min-width:1081px){.nav-panel{display:contents}}

/* ---- Preise wie Vorlage: kleinere Beschreibung, kompakte Liste, Luft unter dem Button ---- */
@media(min-width:901px){
  .plan{padding:30px 24px 46px;min-height:610px}
  .plan .desc{margin-top:44px;font-size:22px;line-height:28px;letter-spacing:-.44px}
  .plan ul{padding:32px 0 48px;gap:5px}
}

/* ---- CTA "Bereit, endlich online zu starten?" wie Vorlage: 4 Zeilen, Text + Buttons direkt darunter ---- */
@media(min-width:901px){
  .cta{height:auto;display:flex;flex-direction:column;align-items:center;padding:60px var(--pad) 84px}
  .cta h2{position:static;translate:none;left:auto;top:auto;width:auto;max-width:100%;
    font-size:111px;line-height:1;font-weight:600;letter-spacing:-2.22px}
  .cta-unten{position:static;translate:none;left:auto;top:auto;margin-top:24px;gap:32px}
}
.cta .btn-glass{background:#525418;border:1px solid var(--white)}
.cta .btn-glass:hover{background:#5c5f1c}

/* ---- Schritt 1 und 3: nach dem Einblenden ruhig weiter in Bewegung ---- */
@keyframes atmen{0%,100%{transform:scale(1)}50%{transform:scale(1.07)}}
@keyframes nachtippen{0%,70%,100%{transform:scale(1)}78%{transform:scale(.9)}88%{transform:scale(1.06)}}
.step:nth-of-type(1).is-in .deko{animation:welle 1.15s cubic-bezier(.22,.68,.28,1) both,atmen 3.2s ease-in-out 1.15s infinite}
.step:nth-of-type(3).is-in .deko{animation:tippen 1.25s cubic-bezier(.18,.7,.24,1) both,nachtippen 3s ease-in-out 1.25s infinite}

/* ---- CTA-Buttons und Text: auf schmalen Bildschirmen nie ueber den Rand ---- */
@media(max-width:900px){
  .cta-unten{width:100%;max-width:100%}
  .cta p{width:auto;max-width:100%}
  .cta .actions{display:flex;width:100%;max-width:100%;flex-wrap:wrap;justify-content:center}
  .cta .actions .btn{width:auto}
}
@media(max-width:560px){
  .cta .actions{flex-direction:column;align-items:stretch;max-width:340px;margin-inline:auto}
  .cta .actions .btn{width:100%}
}
/* nichts darf die Seite seitlich verschiebbar machen */
html,body{overflow-x:clip}

/* ---- Handy: CTA-Headline groesser, Text naeher dran ---- */
@media(max-width:900px){
  .cta{gap:14px}
  .cta h2{font-size:clamp(52px,16vw,84px);line-height:.98;letter-spacing:-1.6px}
  .cta-unten{gap:28px}
}

/* ---- Handy: Text unter der CTA-Headline genau so breit wie die Headline ---- */
@media(max-width:900px){
  .cta{display:grid;grid-template-columns:max-content;justify-content:center;justify-items:stretch}
  .cta h2{font-size:clamp(52px,18.5vw,110px);max-width:none}
  .cta-unten{width:0;min-width:100%;gap:24px}
  .cta p{width:auto;max-width:none;line-height:1.4}
  .cta .actions{max-width:none}
}
/* Unterzeile der CTA passt sich per Skript genau der Headline-Breite an */
.cta p.passt{white-space:nowrap;width:auto;max-width:none}

/* ---- Hero Desktop: Kacheln fest am Text ausgerichtet (Werte setzt das Skript) + Chat-Pop ---- */
@media(min-width:901px){
  .hero .float{top:auto;left:auto;right:auto;bottom:auto;animation:none}
  .hero .b1{left:var(--bx1,20%);top:var(--by1,45%)}
  .hero .b2{left:var(--bx2,68%);top:var(--by2,48%)}
  .hero .b3{left:var(--bx3,12%);top:var(--by3,78%)}
  .hero .b4{left:var(--bx4,72%);top:var(--by4,78%)}
  .hero .b5{left:var(--bx5,68%);top:var(--by5,88%)}
  .hero .b1{--cd:.35s}.hero .b2{--cd:.7s}.hero .b3{--cd:1.05s}.hero .b4{--cd:1.4s}.hero .b5{--cd:1.75s}
  .hero .badges .badge{opacity:0}
  .hero.is-an .badges .badge{animation:chatbreit .9s cubic-bezier(.3,.8,.25,1) var(--cd) both}
  .hero.is-an .badges .badge i{animation:chatpunkt .45s cubic-bezier(.3,1.6,.5,1) var(--cd) both}
  .hero .badges .badge::after{content:"";position:absolute;right:-5px;top:-5px;width:10px;height:10px;border-radius:50%;
    background:var(--lime);opacity:0;pointer-events:none}
  .hero.is-an .badges .badge::after{animation:ping 1.1s ease-out calc(var(--cd) + .6s) 2 both}
}
@keyframes chatbreit{0%{opacity:0;clip-path:inset(0 calc(100% - 40px) 0 0 round 48px)}
  25%{opacity:1;clip-path:inset(0 calc(100% - 40px) 0 0 round 48px)}
  100%{opacity:1;clip-path:inset(-20px -20px -20px 0 round 48px)}}
@keyframes chatpunkt{from{scale:0}to{scale:1}}
@keyframes ping{0%{opacity:1;box-shadow:0 0 0 0 rgba(183,254,2,.7)}80%{opacity:1}100%{opacity:0;box-shadow:0 0 0 12px rgba(183,254,2,0)}}
@media(prefers-reduced-motion:reduce){.hero .badges .badge{opacity:1}}

/* ---- Handy-Laufband: Farbfolge rot, tuerkis, gelb, blau, gruen (Gelb und Gruen nie nebeneinander) ---- */
@media(max-width:900px){
  .laufband .b4{order:1} .laufband .b5{order:2} .laufband .b3{order:3}
  .laufband .b1{order:4} .laufband .b2{order:5}
}
