/* Karo-Raster über die GESAMTE Animation-Sektion (Original endete bei 1128px).
   Zellmaß und Farbe wie das Framer-Original (63x64px, rgb(25,25,28)).
   Vignette identisch zur Hero-Section: radialer Verlauf, an allen Kanten
   weich nach Schwarz auslaufend. */
#animation {
  position: relative;
}

#animation::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    /* Vignette-Overlay (Werte 1:1 aus der Hero-Section) */
    radial-gradient(50% 50%, rgba(0, 0, 0, 0.3) 0%, rgba(3, 3, 3, 0.25) 64.3951%, rgba(0, 0, 0, 0.29) 81.0811%, rgb(0, 0, 0) 100%),
    /* Karo-Raster */
    linear-gradient(to right, rgb(25, 25, 28) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(25, 25, 28) 1px, transparent 1px);
  background-size: 100% 100%, 63px 64px, 63px 64px;
  background-position: center top;
}

/* Original-Rasterkomponente ausblenden (sonst doppelte Linien im oberen Teil) */
#animation [data-framer-name="Variant 1"] {
  display: none !important;
}

/* ============================================================
   Redesign "Vorteile" bis Unterschrift (Startseite) — ruhiger,
   aufgeräumter, im Stil: Schwarz + #FAFA03, klare Kanten, Luft.
   ============================================================ */

/* Vorteil-Boxen: ruhige Karten, linksbündig, feine Linie, gelber Marker */
.framer-762hda {
  /* deckend, damit der rotierende Border-Beam dahinter nur am Rand aufblitzt */
  background: linear-gradient(180deg, #12120f, #0a0a09) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 16px !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding: 20px 26px !important;
}
.framer-762hda .framer-text {
  text-align: left !important;
}
.framer-762hda [data-framer-component-type="RichTextContainer"]:first-child .framer-text {
  color: #ffffff !important;
  letter-spacing: -0.01em;
}
.framer-762hda [data-framer-component-type="RichTextContainer"]:first-child .framer-text::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #FAFA03;
  border-radius: 2px;
  margin-right: 12px;
  transform: rotate(45deg);
  vertical-align: 2px;
}
.framer-762hda [data-framer-component-type="RichTextContainer"]:not(:first-child) .framer-text {
  color: #b6b6af !important;
}

/* Zitat: mehr Kontrast (bewusst KEINE Größen-/Breitenänderung — die Container
   haben teils fixe Höhen, sonst wird Text abgeschnitten) */
.framer-1ajskto h3.framer-text {
  color: #d3d3cb !important;
}

/* Name unter dem Zitat: klarer Anker mit feiner gelber Trennlinie
   (absolut positioniert = keinerlei Layout-Verschiebung) */
.framer-1mitz0z {
  position: relative !important;
}
.framer-1mitz0z::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 2px;
  background: rgba(250, 250, 3, 0.65);
  border-radius: 1px;
}
.framer-1mitz0z .framer-text {
  color: #f5f5f0 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  font-size: 13px !important;
}

/* Border-Beam-Ebene hinter den Vorteil-Boxen: Radius an die Karte angleichen,
   damit an den Ecken kein gelber Keil mehr durchblitzt */
.framer-1mbz9w5 {
  border-radius: 17px !important;
}

/* ===== Sticky-Navigation (hbz-nav, via hero-trust.js injiziert) =====
   Bewusst OHNE backdrop-filter (Scroll-Performance) — halbtransparentes
   Schwarz reicht auf der dunklen Seite. */
html { scroll-padding-top: 86px; scroll-behavior: smooth; }
#hbz-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 990;
  background: rgba(10, 10, 10, 0.92);
  transition: opacity .2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Satoshi", "Inter", sans-serif;
}
#hbz-nav .hbz-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 28px;
}
#hbz-nav .hbz-logo {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: rgb(252, 252, 250);
  text-decoration: none;
  white-space: nowrap;
}
#hbz-nav .hbz-logo span { color: rgb(250, 250, 3); }
#hbz-nav .hbz-nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
#hbz-nav .hbz-nav-links a {
  color: rgb(186, 186, 186);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color .15s ease;
}
#hbz-nav .hbz-nav-links a:hover { color: rgb(250, 250, 3); }
#hbz-nav .hbz-nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgb(250, 250, 3);
  color: rgb(10, 10, 10);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow .15s ease;
}
#hbz-nav .hbz-nav-cta:hover { box-shadow: 0 0 20px rgba(250, 250, 3, 0.4); }
@media (max-width: 1000px) {
  #hbz-nav .hbz-nav-links { display: none; }
  #hbz-nav .hbz-nav-inner { height: 58px; }
}

/* ===== Trust-Leiste unter dem Hero (hbz-trust) ===== */
#hbz-trust {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgb(10, 10, 10);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: "Satoshi", "Inter", sans-serif;
}
#hbz-trust .hbz-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
#hbz-trust .hbz-stat b {
  display: block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgb(250, 250, 3);
  line-height: 1.1;
}
#hbz-trust .hbz-stat span {
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
  color: rgb(186, 186, 186);
}
@media (max-width: 800px) {
  #hbz-trust .hbz-trust-inner { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
}

/* Nav weicht dem Popup: #overlay bekommt bei offenem Overlay Inhalt */
body:has(#overlay > *) #hbz-nav { opacity: 0; pointer-events: none; }

/* Trust-Zeile im Guide-Popup (ersetzt den doppelten Untertext) */
.hbz-popup-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 8px 0 2px;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 13px;
  color: rgb(186, 186, 186);
}
.hbz-popup-trust span { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.hbz-popup-trust svg { flex: 0 0 auto; display: block; }

/* ===== Hero 2-spaltig (Desktop): Video links, Text+Buttons rechts =====
   Reines CSS-Grid über den bestehenden Framer-Container — Klassen sind
   stabile Export-Hashes. Unter 1100px bleibt das originale 1-Spalten-Layout. */
@media (min-width: 1100px) {
  .framer-he1c7i {
    display: grid !important;
    grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
    grid-template-areas:
      "video badge"
      "video tp"
      "video h1"
      "video sub"
      "video buttons"
      "tools tools";
    column-gap: 72px;
    align-content: center;
    justify-items: start;
    align-items: start;
    height: auto !important;
    min-height: 0 !important;
  }
  .framer-he1c7i > .framer-1dyvgcl { display: none; } /* Scroll-Effekt-Dummy */
  .framer-he1c7i > .framer-3m970e { grid-area: video; justify-self: end; align-self: center; }
  .framer-he1c7i > .framer-1u44dry-container { grid-area: badge; align-self: end; margin-bottom: 8px; }
  .framer-he1c7i > .framer-qy4pf0 { grid-area: h1; }
  .framer-he1c7i > .framer-nqkn6i { grid-area: sub; }
  .framer-he1c7i > .framer-1ffmjq9 { grid-area: buttons; }
  .framer-he1c7i > .framer-1f4joit { grid-area: tools; justify-self: stretch; margin-top: 48px; }
  /* Texte in der rechten Spalte linksbündig, volle Spaltenbreite nutzen */
  .framer-qy4pf0, .framer-nqkn6i { width: 100% !important; max-width: 720px !important; }
  .framer-qy4pf0 .framer-text, .framer-nqkn6i .framer-text { text-align: left !important; }
}

/* Zweitbutton "Pakete ansehen" + Trustpilot-Zeile (hero-trust.js) */
.framer-1ffmjq9 { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hbz-hero-pakete {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgb(252, 252, 250);
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .15s ease, color .15s ease;
}
.hbz-hero-pakete:hover { border-color: rgb(250, 250, 3); color: rgb(250, 250, 3); }
.hbz-tp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  white-space: nowrap;
  color: rgb(186, 186, 186);
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 13.5px;
  text-decoration: none;
}
.hbz-tp:hover { color: rgb(252, 252, 250); }
.hbz-tp .hbz-tp-star {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #00B67A; /* Trustpilot-Grün */
  border-radius: 3px;
}
@media (max-width: 1099px) {
  .framer-1ffmjq9 { justify-content: center; }
}

/* Header im thefabers-Stil: Kontaktzeile oben + Auto-Hide beim Runterscrollen */
#hbz-nav { transition: transform .28s ease, opacity .2s ease; }
#hbz-nav.hbz-nav--hidden { transform: translateY(-100%); }
#hbz-nav .hbz-nav-top {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 7px 24px 0;
}
#hbz-nav .hbz-nav-top a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgb(186, 186, 186);
  font-size: 12.5px;
  text-decoration: none;
  white-space: nowrap;
}
#hbz-nav .hbz-nav-top a:hover { color: rgb(250, 250, 3); }
#hbz-nav .hbz-nav-top svg { display: block; }
#hbz-nav .hbz-nav-inner { height: 58px; }
html { scroll-padding-top: 112px; }
@media (max-width: 1000px) {
  #hbz-nav .hbz-nav-top { justify-content: center; padding-top: 6px; }
  #hbz-nav .hbz-nav-inner { height: 52px; }
}
@media (max-width: 480px) {
  #hbz-nav .hbz-nav-top a:last-child { display: none; } /* Mail auf sehr schmalen Screens */
}

/* ===== Statement-Band (Scroll-Typewriter, Vorbild thefabers c-understand) ===== */
#hbz-band {
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(100deg, rgb(224, 224, 3), rgb(250, 250, 3) 45%, rgb(255, 255, 120));
  padding: 64px 24px;
  overflow: hidden;
}
#hbz-band .hbz-band-inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
  font-family: "Satoshi", "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: rgb(10, 10, 10);
  min-height: 1.1em;
}
#hbz-band .hbz-band-cursor {
  display: inline-block;
  width: 0.09em;
  height: 0.92em;
  margin-left: 0.06em;
  background: rgb(10, 10, 10);
  vertical-align: baseline;
  transform: translateY(0.12em);
  animation: hbzBlink 0.9s steps(1) infinite;
}
@keyframes hbzBlink { 50% { opacity: 0; } }
@media (max-width: 600px) { #hbz-band { padding: 44px 18px; } }

/* ===== Desktop-Skalierung: Framer-Layout ist fix auf ~1440px designt =====
   Auf grossen Monitoren proportional hochskalieren (zoom skaliert ALLES
   gleichmaessig — sicher gegen die fixen Framer-Containerhoehen). */
@media (min-width: 1560px) { body { zoom: 1.1; } }
@media (min-width: 1750px) { body { zoom: 1.2; } }
@media (min-width: 2050px) { body { zoom: 1.35; } }
@media (min-width: 2500px) { body { zoom: 1.6; } }

/* Trustpilot-Zeile über dem Titel (echte Bewertung, Trustpilot-Look) */
.hbz-tp-hero {
  grid-area: tp;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 2px;
  text-decoration: none;
  color: rgb(186, 186, 186);
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 14px;
}
.hbz-tp-hero b { color: rgb(252, 252, 250); font-size: 15px; }
.hbz-tp-hero:hover .hbz-tp-count { color: rgb(252, 252, 250); }
.hbz-tp-stars { display: inline-flex; gap: 3px; }
.hbz-tp-box {
  width: 21px; height: 21px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #00B67A;
  border-radius: 3px;
}
.hbz-tp-box--empty { background: rgba(255, 255, 255, 0.22); }
.hbz-tp-sep { opacity: .6; }
.hbz-tp-mark {
  display: inline-flex; align-items: center; gap: 4px;
  color: rgb(252, 252, 250); font-weight: 700;
}
.hbz-tp-count { font-size: 13px; }
/* Automationz-Wortmarke unterm Titel entfernen — steckt bereits im Menü */
.framer-he1c7i > .framer-udclyy { display: none !important; }
@media (max-width: 1099px) {
  .hbz-tp-hero { justify-content: center; width: 100%; margin: 6px 0; }
}

/* ===== Footer-Reveal kompakter: Inhalt auf 75% skaliert, volle Breite =====
   (Fixed-Wrapper + Flow-Spacer von 720 auf 540px; zoom skaliert den Inhalt
   proportional, width kompensiert die zoom-Verkleinerung) */
.framer-aaroq8-container[style*="fixed"], div[data-framer-name="Footer Reveal Section (Do Not Touch)"] ~ * footer { }
.framer-1ii45jg { height: 540px !important; }
footer { }
div.framer-aaroq8-container {
  height: 540px !important;
  top: auto !important;
  bottom: 0 !important;
}
div.framer-aaroq8-container > [data-framer-name="Desktop"] {
  zoom: 0.75;
  width: 133.34% !important;
}

/* Timeline-Labels von Knoten/Linien freirücken (standen direkt am Punkt) */
#animation .framer-1x2w5rf, /* Bestellung */
#animation .framer-1j79pjb, /* Billbee */
#animation .framer-l3o5kx   /* Buchhaltung */ { transform: translateX(-26px) !important; }
#animation .framer-15979ki, /* Payjoe */
#animation .framer-8cv7yt   /* Amazon/Marktplätze */ { transform: translateX(26px) !important; }
/* Band: immer einzeilig */
#hbz-band .hbz-band-inner {
  white-space: nowrap;
  font-size: clamp(18px, 4.6vw, 64px);
}

/* Leerraum zwischen Unterschrift (Testimonial-Block hat fixe Überhöhe) und FAQ einkürzen */
@media (min-width: 810px) {
  #animation ~ * .framer-7hu5uh, .framer-7hu5uh { margin-top: -260px !important; }
}
@media (max-width: 809px) {
  .framer-7hu5uh { margin-top: -120px !important; }
}
