/* ═══════════════════════════════════════════════════════════════
   STYLE-PATCH · DreiHundertSechzig
   Stand: April 2026 · Anhängen an style.css (kein Replace nötig)
   ═══════════════════════════════════════════════════════════════
   Behebt:
   ✓ Umlaut-Clipping in .display Headlines
   ✓ Schwebender grauer Kasten in section-head ohne Kicker
   ✓ Kicker zu schwach (Pill-Form, Glow, Pulse-Punkt)
   ✓ Buttons mit Light-Sweep + Lime-Halo
   ✓ Beliebt-Badge mit Neon-Pulse
   ✓ FAQ-Fragen in Anton-Font + animiertes Plus-Icon
   ✓ Process-Section auf ueber-mich.html als Timeline
   ✓ Credential-Hero "14 Jahre" für Stellenanzeigen-Block
   ═══════════════════════════════════════════════════════════════ */

/* ─── 1) UMLAUT-FIX FÜR DISPLAY-HEADLINES ─────────────────── */
.display {
  line-height: 1.12;
}
.cta-banner .display,
.page-hero .display {
  line-height: 1.10;
}
/* Helper für Wörter mit Umlauten in der zweiten/dritten Zeile.
   Verwendung: <span class="umlaut">klären</span> */
.display .umlaut {
  display: inline-block;
  padding-top: 0.08em;
}

/* ─── 2) LEERES SECTION-HEAD ELEMENT VERSTECKEN ─────────────
   Falls ein .section-head keinen .kicker enthält, wird das
   Dekor-Element (Strich/Quadrat) des ::before unterdrückt.
   Funktioniert in allen modernen Browsern (Chrome 105+, Safari 16+, FF 121+).
   Für ältere Browser: explizit .no-kicker Klasse setzen. */
.section-head:not(:has(.kicker))::before,
.section-head.no-kicker::before {
  display: none !important;
  content: none !important;
}

/* ─── 3) BIGGER, GLOWING KICKER ─────────────────────────────
   Override des bestehenden .kicker mit Pill + Pulse-Dot. */
.kicker {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  padding: 9px 18px;
  font-size: 0.95rem !important;
  font-weight: 700;
  letter-spacing: 0.22em !important;
  color: var(--lime);
  background: rgba(197, 232, 102, 0.08);
  border: 1px solid rgba(197, 232, 102, 0.28);
  border-radius: 100px;
  margin-bottom: 22px !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-transform: uppercase;
}
/* Den ursprünglichen Strich-Indikator durch einen Pulse-Punkt ersetzen */
.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime), 0 0 16px rgba(197, 232, 102, 0.6);
  animation: kicker-pulse 2s ease-in-out infinite;
  margin: 0 !important;
  flex-shrink: 0;
}
.kicker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(197, 232, 102, 0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.kicker:hover::after { opacity: 1; }
@keyframes kicker-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 8px var(--lime), 0 0 16px rgba(197, 232, 102, 0.6);
  }
  50% {
    transform: scale(1.3);
    box-shadow: 0 0 12px var(--lime), 0 0 24px rgba(197, 232, 102, 0.85);
  }
}

/* ─── 4) BUTTON-INTERAKTIONEN ───────────────────────────────
   Light-Sweep auf primary, Lime-Border-Lift auf ghost. */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-primary {
  box-shadow:
    0 4px 14px rgba(197, 232, 102, 0.25),
    0 0 0 0 rgba(197, 232, 102, 0.4);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transform: translateX(-150%);
  transition: transform 0.6s ease;
  z-index: -1;
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 28px rgba(197, 232, 102, 0.4),
    0 0 0 6px rgba(197, 232, 102, 0.12);
}
.btn-primary:hover::before {
  transform: translateX(150%);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(237, 231, 217, 0.05);
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: 0 8px 22px rgba(197, 232, 102, 0.12);
}
.btn-arrow::after {
  transition: transform 0.25s ease;
}
.btn-arrow:hover::after {
  transform: translateX(5px);
}

/* ─── 5) PULSING „BELIEBT" / „EMPFEHLUNG" / „KLASSIKER" BADGE ─
   Sitzt jetzt zentriert oben außerhalb der Karte. */
.paket {
  overflow: visible;
  position: relative;
}
.pakete-grid {
  padding-top: 24px;
}
.paket-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: #0A0D0B;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 7px 16px;
  border-radius: 100px;
  z-index: 5;
  white-space: nowrap;
  animation: badge-pulse 2.4s ease-in-out infinite;
  box-shadow:
    0 4px 14px rgba(197, 232, 102, 0.35),
    0 0 0 0 rgba(197, 232, 102, 0.6);
}
@keyframes badge-pulse {
  0%, 100% {
    box-shadow:
      0 4px 14px rgba(197, 232, 102, 0.35),
      0 0 0 0 rgba(197, 232, 102, 0.7),
      0 0 18px 2px rgba(197, 232, 102, 0.3);
    transform: translateX(-50%) scale(1);
  }
  50% {
    box-shadow:
      0 4px 18px rgba(197, 232, 102, 0.55),
      0 0 0 12px rgba(197, 232, 102, 0),
      0 0 28px 6px rgba(197, 232, 102, 0.55);
    transform: translateX(-50%) scale(1.04);
  }
}
/* Featured-Karte hebt sich leicht ab */
.paket.featured {
  transform: translateY(-12px);
  border-color: rgba(197, 232, 102, 0.45) !important;
  box-shadow: 0 20px 48px rgba(197, 232, 102, 0.08);
}
.paket.featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 26px 60px rgba(197, 232, 102, 0.14);
}
@media (max-width: 760px) {
  .paket.featured {
    transform: none;
    order: -1;
  }
  .paket.featured:hover {
    transform: translateY(-6px);
  }
}

/* Preis-individuell-Hinweis statt Preis */
.paket-individual {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--lime);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}
.paket-individual::before {
  content: "→";
  font-family: 'Anton', sans-serif;
  transition: transform 0.3s ease;
}
.paket:hover .paket-individual::before {
  transform: translateX(4px);
}
.paket-individual-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--cream-soft, rgba(237,231,217,0.6));
  margin-top: 4px;
  letter-spacing: 0;
}

/* ─── 6) FAQ IN ANTON-FONT + LIME-PLUS-CIRCLE ───────────────
   Greift überall wo .faq-list summary verwendet wird. */
.faq-list details {
  border-top: 1px solid var(--line);
  transition: border-color 0.3s ease;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list details:hover {
  border-color: rgba(197, 232, 102, 0.35);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(22px, 2.4vw, 30px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Anton', sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(20px, 2vw, 26px) !important;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.2;
  color: var(--cream);
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { display: none; }
/* Plus-Circle als Icon, ersetzt Standard-Marker */
.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(197, 232, 102, 0.4);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(.2, .8, .2, 1), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.faq-list details:hover summary {
  color: var(--lime);
  transform: translateX(6px);
}
.faq-list details:hover summary::after {
  background: rgba(197, 232, 102, 0.10);
  border-color: var(--lime);
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
  background: var(--lime);
  color: #0A0D0B;
  border-color: var(--lime);
}
.faq-list details > p,
.faq-list details > div:not([class]) {
  padding: 0 0 clamp(22px, 2.4vw, 30px);
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.7;
  color: var(--cream-soft, rgba(237,231,217,0.78));
  max-width: 760px;
}

/* ─── 7) PROCESS-SECTION ALS TIMELINE ───────────────────────
   Greift auf .process auf ueber-mich.html. */
.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}
.process::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(197, 232, 102, 0.18) 8%,
    rgba(197, 232, 102, 0.35) 50%,
    rgba(197, 232, 102, 0.18) 92%,
    transparent
  );
  z-index: 0;
  pointer-events: none;
}
.process::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(197, 232, 102, 0.18), transparent 70%);
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
}
.process-step {
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(.2, .8, .2, 1);
}
.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--lime);
  color: var(--lime);
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 18px;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.process-step:hover .process-step-num {
  background: var(--lime);
  color: #0A0D0B;
  box-shadow: 0 0 24px rgba(197, 232, 102, 0.45);
}
.process-step:hover {
  transform: translateY(-4px);
}
@media (max-width: 760px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before, .process::after { display: none; }
}

/* ─── 8) CREDENTIAL-HERO „14 JAHRE" ─────────────────────────
   Block für loesungen.html / pakete.html über den Stellenanzeigen-Karten. */
.credential-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  padding: clamp(36px, 5vw, 60px) clamp(28px, 4.5vw, 56px);
  background:
    linear-gradient(135deg, rgba(197, 232, 102, 0.07), rgba(255, 255, 255, 0.015) 60%),
    var(--bg-2, #11150F);
  border: 1px solid rgba(197, 232, 102, 0.20);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.credential-hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(197, 232, 102, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.credential-badge {
  display: flex;
  align-items: stretch;
  gap: 22px;
  position: relative;
  z-index: 1;
}
.credential-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(108px, 17vw, 200px);
  line-height: 0.82;
  background: linear-gradient(180deg, var(--lime) 0%, #93B83A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 32px rgba(197, 232, 102, 0.30));
  letter-spacing: -0.05em;
}
.credential-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid var(--lime);
  padding-left: 20px;
  gap: 6px;
}
.credential-label {
  font-family: 'Anton', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--cream);
}
.credential-detail {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 2.1vw, 24px);
  color: var(--lime);
}
.credential-quote {
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.65;
  color: rgba(237, 231, 217, 0.92);
  position: relative;
  z-index: 1;
}
.credential-quote em {
  font-style: normal;
  color: var(--lime);
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .credential-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 26px;
  }
}

/* ─── 9) JS-OPTIONAL: MAUSPOSITION FÜR KICKER-GLOW ───────── */
/* Falls du den Hover-Glow folgen lassen willst, ergänze in script.js:

   document.querySelectorAll('.kicker').forEach(el => {
     el.addEventListener('mousemove', e => {
       const r = el.getBoundingClientRect();
       el.style.setProperty('--mx', ((e.clientX - r.left) / r.width * 100) + '%');
       el.style.setProperty('--my', ((e.clientY - r.top) / r.height * 100) + '%');
     });
   });

   Funktioniert auch ohne — der Glow rendert dann zentriert. */


/* ─── 10) BURGER-MENÜ MOBILE: SOLIDER HINTERGRUND ─────────────
   Bug aus Screenshot 11:33: Mobile-Menü ist transparent,
   Footer-Inhalt scheint durch das Menü hindurch.
   Fix: solider dunkler Hintergrund + hoher z-index. */
@media (max-width: 760px) {
  /* Den eigentlichen Menü-Container voll abdecken lassen.
     Greift auf .nav-links egal wie das Open-Toggle gesetzt wird
     (open-Klasse, data-attribute, oder via display:flex/none-Toggle). */
  .nav-links {
    background-color: var(--bg, #0A0D0B) !important;
    background-image: linear-gradient(180deg, rgba(10, 13, 11, 1) 0%, rgba(10, 13, 11, 0.98) 100%) !important;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 999 !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  }

  /* Falls das Menü ein Off-Canvas-Panel ist (von rechts/oben), 
     sicherstellen dass es 100% der Viewport-Breite oder 
     mind. 75% einnimmt und alles dahinter abdeckt. */
  .nav.open .nav-links,
  .nav-links.open,
  .nav-links[data-open="true"],
  .nav-links[aria-expanded="true"] {
    background-color: var(--bg, #0A0D0B) !important;
    /* Vollflächiges dunkles Panel ohne Durchscheinen */
    opacity: 1 !important;
  }

  /* Body-Scroll während Menü offen verhindern (optional, klassisches Pattern) */
  body.menu-open {
    overflow: hidden;
  }

  /* Burger-Button selbst über dem Menü-Layer halten */
  .nav-toggle {
    z-index: 1000 !important;
    position: relative;
  }
}


/* ─── 11) STELLENANZEIGEN-CARDS AUF MOBILE ────────────────────
   Bug aus Screenshot loesungen.html mobile: 
   3 .stellen-card-Boxen rendern auf Mobile OHNE Card-Optik —
   alles fließt ineinander, "Beliebt"-Label hängt frei in der Luft.
   Fix: explizites Card-Layout für die Mobile-Ansicht. */
@media (max-width: 760px) {
  .stellen-pricing {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 28px !important;
  }
  .stellen-card {
    background: var(--bg-card, rgba(19, 22, 19, 0.95)) !important;
    border: 1px solid var(--line, #1F2520) !important;
    border-left: 3px solid var(--lime-deep, #7E9D32) !important;
    padding: 22px 24px 18px 24px !important;
    border-radius: 10px !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    overflow: visible !important;
  }
  .stellen-card.popular {
    border-color: var(--lime, #C5E866) !important;
    border-left-color: var(--lime, #C5E866) !important;
    background: rgba(197, 232, 102, 0.05) !important;
    box-shadow: 0 4px 22px rgba(197, 232, 102, 0.15);
  }
  .stellen-card-tag {
    font-family: var(--display, "Anton", sans-serif);
    font-size: 0.78rem !important;
    color: var(--lime, #C5E866);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .stellen-card-title {
    font-family: var(--display, "Anton", sans-serif);
    font-size: 1.5rem !important;
    text-transform: uppercase;
    letter-spacing: 0.005em;
    line-height: 1.05;
    color: var(--cream, #EDEADD);
    margin: 2px 0 4px 0;
  }
  .stellen-card-desc {
    font-size: 0.92rem;
    color: rgba(237, 234, 221, 0.72);
    line-height: 1.5;
    margin-bottom: 8px;
  }
  /* Alte Preis-Variante (falls noch vorhanden) — optisch eindämmen */
  .stellen-card-price {
    font-family: var(--display, "Anton", sans-serif);
    font-size: 1.3rem !important;
    color: var(--lime, #C5E866);
    letter-spacing: 0.01em;
    margin-top: 4px;
  }
  /* Neue Preis-Strategie: "Preis individuell" Markup */
  .stellen-card-individual {
    font-family: var(--display, "Anton", sans-serif);
    font-size: 1.05rem !important;
    color: var(--lime, #C5E866);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
  }
  .stellen-card-individual-sub {
    font-family: var(--serif, "Fraunces", serif);
    font-style: italic;
    font-size: 0.82rem;
    color: rgba(237, 234, 221, 0.6);
    line-height: 1.45;
    margin-top: 2px;
  }
  /* Beliebt-Badge oben mittig schweben statt frei in der Luft */
  .stellen-card-badge {
    position: absolute !important;
    top: -12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: var(--lime, #C5E866) !important;
    color: var(--ink, #0A0D0B) !important;
    font-family: var(--display, "Anton", sans-serif) !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.22em !important;
    padding: 5px 14px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 16px rgba(197, 232, 102, 0.4);
    animation: badge-pulse 2.4s ease-in-out infinite;
    z-index: 5;
  }
  @keyframes badge-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50%      { transform: translateX(-50%) scale(1.06); }
  }
}


/* ═══════════════════════════════════════════════════════════════
   ENDE STYLE-PATCH
   ═══════════════════════════════════════════════════════════════ */


/* ═════════════════════════════════════════════════════════════════════════════
   STYLE-PATCH 2 · NEUE SEKTIONEN auf index.html
   Stand: 15.05.2026 — ANHÄNGEN an style-patch.css (kein Replace nötig)
   ───────────────────────────────────────────────────────────────────────────
   Enthält Styles für 6 neue Sektionen:
     ① .bg-sparten          → BG-Sparten / Branchen-Fit
     ② .saving-section      → Was du dir sparst (Vorher/Nachher-Tabelle)
     ③ .compliance-section  → Zoll und BG können kommen
     ④ .fortknox-section    → 7 Sicherheits-Mauern
     ⑤ .lizenz-pakete-section → Basic · Professional · Enterprise
     ⑥ .lizenz-eigentum-section → Lizenz vs. Eigentum

   Design-System (durchgehend genutzt):
     --bg, --bg-card, --bg-elev, --lime, --orange, --cream, --line, --line-2,
     Anton (display), Fraunces (italic accents), Inter (body),
     JetBrains Mono (tags / pills / monos).

   Mobile-first responsive — alle Sektionen testen ab 360 px Viewport.
   ═════════════════════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────────
   ① BG-SPARTEN — Branchen-Fit
   ───────────────────────────────────────────────────────────── */

.bg-sparten {
  padding: clamp(56px, 9vh, 96px) 0;
  position: relative;
}
.bg-sparten::before {
  /* Subtiler Top-Trennstrich (lime-zu-orange Gradient, sehr dezent) */
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 14vw, 160px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime) 30%, var(--orange) 70%, transparent);
  opacity: 0.55;
  border-radius: 2px;
}

.bg-sparten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(28px, 4vh, 44px);
}

.bg-sparte-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 28px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}
.bg-sparte-card::before {
  /* Linker Akzent-Strich, wechselt von lime auf orange bei Hover */
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--lime);
  opacity: 0.7;
  transition: background 0.4s ease, opacity 0.4s ease, width 0.4s ease;
}
.bg-sparte-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35),
              0 0 0 1px rgba(184, 232, 52, 0.08);
}
.bg-sparte-card:hover::before {
  background: var(--orange);
  width: 5px;
  opacity: 1;
}

.bg-sparte-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.bg-sparte-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(184, 232, 52, 0.12);
  border: 1px solid rgba(184, 232, 52, 0.22);
  display: grid;
  place-items: center;
  color: var(--lime);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.35s ease, border-color 0.35s ease;
}
.bg-sparte-icon svg {
  width: 22px;
  height: 22px;
}
.bg-sparte-card:hover .bg-sparte-icon {
  transform: rotate(-6deg) scale(1.08);
  background: rgba(255, 138, 31, 0.14);
  border-color: rgba(255, 138, 31, 0.32);
  color: var(--orange);
}

.bg-sparte-titles {
  flex: 1;
  min-width: 0;
}
.bg-sparte-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(184, 232, 52, 0.95);
  background: rgba(184, 232, 52, 0.08);
  border: 1px solid rgba(184, 232, 52, 0.22);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  font-weight: 600;
}
.bg-sparte-card h3 {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.1;
  color: var(--cream);
}

.bg-sparte-trades {
  font-size: 0.88rem;
  color: rgba(237, 234, 221, 0.65);
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
  line-height: 1.55;
}

.bg-sparte-modules {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.bg-sparte-modules li {
  font-size: 0.88rem;
  color: rgba(237, 234, 221, 0.82);
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}
.bg-sparte-modules li::before {
  content: "›";
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--lime);
  font-weight: 700;
  font-size: 1.15rem;
  font-family: var(--display);
  transition: color 0.3s ease, transform 0.3s ease;
}
.bg-sparte-card:hover .bg-sparte-modules li::before {
  color: var(--orange);
  transform: translateX(2px);
}

.bg-sparten-footnote {
  margin-top: clamp(28px, 4vh, 40px);
  text-align: center;
  font-size: 0.95rem;
  color: rgba(237, 234, 221, 0.72);
  padding: 18px 22px;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  background: rgba(255, 138, 31, 0.03);
}
.bg-sparten-link {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 138, 31, 0.4);
  transition: border-color 0.3s ease;
}
.bg-sparten-link:hover {
  border-bottom-color: var(--orange);
}


/* ─────────────────────────────────────────────────────────────
   ② SAVING-SECTION — Vorher/Nachher-Tabelle
   ───────────────────────────────────────────────────────────── */

.saving-section {
  padding: clamp(56px, 9vh, 96px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.saving-table {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: clamp(28px, 4vh, 44px);
}

.saving-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.4fr;
  background: var(--bg-card);
  transition: background 0.3s ease;
}
.saving-row:not(.saving-row-header):hover {
  background: var(--bg-elev);
}

.saving-row-header {
  background: var(--bg-elev);
  font-family: var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(237, 234, 221, 0.55);
}
.saving-row-header .saving-cell {
  padding: 14px 20px;
  border-bottom: 2px solid var(--line-2);
}

.saving-cell {
  padding: 18px 20px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(237, 234, 221, 0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.saving-cell-situation {
  font-weight: 600;
  color: var(--cream);
  border-right: 1px solid var(--line);
}
.saving-cell-before {
  color: rgba(237, 234, 221, 0.62);
  border-right: 1px solid var(--line);
  position: relative;
}
.saving-cell-before::before {
  content: "✗";
  color: rgba(232, 93, 79, 0.65);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  width: 18px;
}
.saving-cell-after {
  color: rgba(237, 234, 221, 0.92);
  position: relative;
}
.saving-cell-after::before {
  content: "✓";
  color: var(--lime);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
  width: 18px;
}

.saving-time {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  background: rgba(255, 138, 31, 0.12);
  border: 1px solid rgba(255, 138, 31, 0.3);
  color: var(--orange);
  padding: 2px 7px;
  border-radius: 4px;
  margin-right: 6px;
  font-weight: 600;
  white-space: nowrap;
}
.saving-cell-after .saving-time {
  background: rgba(184, 232, 52, 0.12);
  border-color: rgba(184, 232, 52, 0.3);
  color: var(--lime);
}

/* ── SUMMARY-BOX am Ende ── */
.saving-summary {
  margin-top: clamp(28px, 4vh, 40px);
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  position: relative;
  overflow: hidden;
}
.saving-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(184, 232, 52, 0.06) 0%,
    rgba(184, 232, 52, 0) 50%,
    rgba(255, 138, 31, 0.06) 100%);
  pointer-events: none;
}
.saving-summary-num {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 0.95;
  color: var(--lime);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  text-shadow: 0 0 24px rgba(184, 232, 52, 0.25);
}
.saving-summary-text {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.5;
  color: var(--cream);
}
.saving-summary-text strong {
  color: var(--cream);
  font-weight: 700;
}
.saving-summary-sub {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(237, 234, 221, 0.55);
  font-weight: 400;
  font-style: italic;
}

/* ── Mobile: Tabelle vertikal aufbrechen ── */
@media (max-width: 760px) {
  .saving-row {
    grid-template-columns: 1fr;
  }
  .saving-row-header {
    display: none;
  }
  .saving-row {
    padding: 4px 0;
  }
  .saving-cell {
    padding: 12px 16px;
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }
  .saving-cell:last-child {
    border-bottom: none;
  }
  .saving-cell-situation {
    font-size: 1rem;
    background: var(--bg-elev);
    border-bottom: 2px solid var(--line-2);
  }
  .saving-cell-before::after,
  .saving-cell-after::after {
    content: attr(data-label);
  }
  .saving-cell-before {
    color: rgba(237, 234, 221, 0.6);
  }
  .saving-summary {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}


/* ─────────────────────────────────────────────────────────────
   ③ COMPLIANCE-SECTION — Zoll und BG können kommen
   ───────────────────────────────────────────────────────────── */

.compliance-section {
  padding: clamp(56px, 9vh, 96px) 0;
  background: var(--bg);
  position: relative;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-top: clamp(28px, 4vh, 44px);
}

.compliance-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 26px);
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.compliance-card:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35),
              0 0 0 1px rgba(184, 232, 52, 0.15),
              inset 0 0 24px rgba(184, 232, 52, 0.04);
}

.compliance-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(184, 232, 52, 0.1);
  border: 1px solid rgba(184, 232, 52, 0.22);
  color: var(--lime);
  margin-bottom: 12px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.compliance-icon svg {
  width: 20px;
  height: 20px;
}
.compliance-card:hover .compliance-icon {
  transform: scale(1.1) rotate(-4deg);
}

.compliance-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 6px;
}

.compliance-card h3 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  margin: 0 0 10px;
  color: var(--cream);
  line-height: 1.15;
}
.compliance-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(237, 234, 221, 0.78);
  margin: 0;
}

/* ── Live-Compliance-Score Highlight ── */
.compliance-highlight {
  margin-top: clamp(28px, 4vh, 40px);
  background: linear-gradient(135deg,
    rgba(184, 232, 52, 0.08) 0%,
    rgba(184, 232, 52, 0.02) 50%,
    rgba(255, 138, 31, 0.06) 100%);
  border: 1px solid rgba(184, 232, 52, 0.25);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
  position: relative;
  overflow: hidden;
}
.compliance-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(184, 232, 52, 0.12), transparent 50%);
  pointer-events: none;
}

.compliance-highlight-pulse {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 0 rgba(184, 232, 52, 0.7);
  animation: compliancePulse 2.2s ease-in-out infinite;
}
@keyframes compliancePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 232, 52, 0.7); transform: scale(1); }
  50%      { box-shadow: 0 0 0 10px rgba(184, 232, 52, 0); transform: scale(1.18); }
}

.compliance-highlight-content {
  position: relative;
  z-index: 1;
}
.compliance-highlight-kicker {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  letter-spacing: 0.02em;
  color: var(--lime);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.compliance-highlight-text {
  font-size: clamp(0.96rem, 1.4vw, 1.05rem);
  line-height: 1.55;
  color: var(--cream);
  margin: 0;
}

@media (max-width: 600px) {
  .compliance-highlight {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
}


/* ─────────────────────────────────────────────────────────────
   ④ FORT KNOX — 7 Sicherheits-Mauern
   ───────────────────────────────────────────────────────────── */

.fortknox-section {
  padding: clamp(56px, 9vh, 96px) 0;
  background:
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%),
    radial-gradient(circle at 80% 0%, rgba(255, 138, 31, 0.04), transparent 60%);
  position: relative;
  overflow: hidden;
}
.fortknox-section::before {
  /* Dezenter Gold-Tone Akzent oben rechts */
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 138, 31, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.fortknox-walls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
  margin-top: clamp(28px, 4vh, 44px);
}

.fortknox-wall {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 26px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease;
}
.fortknox-wall::before {
  /* Top-Akzentstreifen, ähnlich Bank-Tresor */
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(255, 138, 31, 0.4) 100%);
  opacity: 0.65;
  transition: opacity 0.4s ease, height 0.4s ease;
}
.fortknox-wall:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
}
.fortknox-wall:hover::before {
  opacity: 1;
  height: 4px;
}

.fortknox-num {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1;
  color: rgba(255, 138, 31, 0.25);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  transition: color 0.4s ease, transform 0.4s ease;
}
.fortknox-wall:hover .fortknox-num {
  color: var(--orange);
  transform: scale(1.05);
}

.fortknox-wall h3 {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  margin: 0 0 4px;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.fortknox-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: rgba(255, 138, 31, 0.85);
  margin: 0 0 10px;
  font-style: normal;
  text-transform: uppercase;
}
.fortknox-wall p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(237, 234, 221, 0.78);
  margin: 0;
}

.fortknox-bottom {
  margin-top: clamp(28px, 4vh, 40px);
  text-align: center;
  padding: 18px;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  background: rgba(184, 232, 52, 0.03);
}
.fortknox-bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(237, 234, 221, 0.78);
}
.fortknox-deeplink {
  color: var(--lime);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(184, 232, 52, 0.4);
  transition: border-color 0.3s ease;
}
.fortknox-deeplink:hover {
  border-bottom-color: var(--lime);
}


/* ─────────────────────────────────────────────────────────────
   ⑤ LIZENZ-PAKETE — Basic / Professional / Enterprise
   ───────────────────────────────────────────────────────────── */

.lizenz-pakete-section {
  padding: clamp(56px, 9vh, 96px) 0;
  background: var(--bg);
}

.lizenz-pakete-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(16px, 2vw, 22px);
  margin-top: clamp(28px, 4vh, 44px);
  align-items: stretch;
}

.lizenz-paket {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.lizenz-paket:hover {
  transform: translateY(-5px);
  border-color: var(--line-2);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.lizenz-paket-featured {
  background:
    linear-gradient(180deg, rgba(184, 232, 52, 0.04) 0%, var(--bg-card) 30%);
  border-color: rgba(184, 232, 52, 0.32);
  position: relative;
}
.lizenz-paket-featured::before {
  /* Sanfter Glow um Featured-Paket */
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg,
    rgba(184, 232, 52, 0.4),
    rgba(255, 138, 31, 0.3),
    rgba(184, 232, 52, 0.4));
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.5s ease;
}
.lizenz-paket-featured:hover::before {
  opacity: 0.5;
}

.lizenz-paket-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lime), #c8f454);
  color: var(--bg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(184, 232, 52, 0.4);
}

.lizenz-paket-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.lizenz-paket-tier {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
.lizenz-paket-featured .lizenz-paket-tier {
  color: var(--lime);
}
.lizenz-paket-alias {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(237, 234, 221, 0.55);
}

.lizenz-paket h3 {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  margin: 0;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.lizenz-paket-tagline {
  font-size: 0.92rem;
  color: rgba(237, 234, 221, 0.72);
  line-height: 1.55;
  margin: 0;
}

.lizenz-paket-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
  flex: 1;
}
.lizenz-paket-features li {
  font-size: 0.9rem;
  color: rgba(237, 234, 221, 0.85);
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}
.lizenz-paket-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--lime);
  font-weight: 700;
}
.lizenz-paket-features li strong {
  color: var(--cream);
  font-weight: 600;
}

.lizenz-paket-price {
  margin-top: auto;
  padding: 14px 0 4px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lizenz-paket-price-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(237, 234, 221, 0.45);
}
.lizenz-paket-price-amount {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  color: var(--cream);
  letter-spacing: 0.005em;
  line-height: 1.1;
}
.lizenz-paket-featured .lizenz-paket-price-amount {
  color: var(--lime);
}
.lizenz-paket-price-setup {
  font-size: 0.78rem;
  color: rgba(237, 234, 221, 0.5);
  font-style: italic;
}

.lizenz-paket .btn {
  margin-top: 6px;
}

.lizenz-pakete-note {
  margin-top: clamp(24px, 3vh, 36px);
  text-align: center;
  font-size: 0.88rem;
  color: rgba(237, 234, 221, 0.65);
  padding: 16px 22px;
  background: rgba(184, 232, 52, 0.03);
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  line-height: 1.6;
}
.lizenz-pakete-link {
  color: var(--lime);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(184, 232, 52, 0.4);
  white-space: nowrap;
}
.lizenz-pakete-link:hover {
  border-bottom-color: var(--lime);
}


/* ─────────────────────────────────────────────────────────────
   ⑥ LIZENZ vs. EIGENTUM — Was bleibt, was geht
   ───────────────────────────────────────────────────────────── */

.lizenz-eigentum-section {
  padding: clamp(56px, 9vh, 96px) 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
}

.lizenz-vergleich {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(28px, 4vh, 44px);
}
@media (max-width: 860px) {
  .lizenz-vergleich {
    grid-template-columns: 1fr;
  }
}

.lizenz-spalte {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  position: relative;
  overflow: hidden;
}
.lizenz-spalte::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
}
.lizenz-spalte-eigentum::before {
  background: var(--lime);
  box-shadow: 0 0 18px rgba(184, 232, 52, 0.4);
}
.lizenz-spalte-lizenz::before {
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 138, 31, 0.4);
}

.lizenz-spalte-head {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.lizenz-spalte-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: 700;
}
.lizenz-spalte-eigentum .lizenz-spalte-tag {
  color: var(--lime);
  background: rgba(184, 232, 52, 0.1);
  border: 1px solid rgba(184, 232, 52, 0.3);
}
.lizenz-spalte-lizenz .lizenz-spalte-tag {
  color: var(--orange);
  background: rgba(255, 138, 31, 0.1);
  border: 1px solid rgba(255, 138, 31, 0.3);
}

.lizenz-spalte h3 {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin: 0 0 8px;
  color: var(--cream);
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.lizenz-spalte-sub {
  font-size: 0.92rem;
  color: rgba(237, 234, 221, 0.6);
  margin: 0;
  line-height: 1.5;
  font-style: italic;
}

.lizenz-spalte-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.lizenz-spalte-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(237, 234, 221, 0.85);
}
.lizenz-spalte-list li strong {
  color: var(--cream);
  font-weight: 600;
}

.lizenz-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 1px;
}
.lizenz-spalte-list-keep .lizenz-icon {
  background: rgba(184, 232, 52, 0.15);
  border: 1px solid rgba(184, 232, 52, 0.35);
  color: var(--lime);
}
.lizenz-spalte-list-license .lizenz-icon {
  background: rgba(255, 138, 31, 0.12);
  border: 1px solid rgba(255, 138, 31, 0.32);
  color: var(--orange);
}

/* ── Explainer-Box: Warum dieses Modell fair ist ── */
.lizenz-explainer {
  margin-top: clamp(24px, 3vh, 36px);
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2.5vw, 22px);
}
.lizenz-explainer-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(184, 232, 52, 0.12);
  border: 1px solid rgba(184, 232, 52, 0.28);
  color: var(--lime);
  display: grid;
  place-items: center;
}
.lizenz-explainer-icon svg {
  width: 22px;
  height: 22px;
}
.lizenz-explainer-text h3 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  margin: 0 0 8px;
  color: var(--cream);
  line-height: 1.2;
}
.lizenz-explainer-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(237, 234, 221, 0.82);
  margin: 0;
}

.lizenz-fineprint {
  margin-top: 18px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(237, 234, 221, 0.55);
  line-height: 1.7;
}
.lizenz-fineprint a {
  color: rgba(184, 232, 52, 0.85);
  text-decoration: none;
  border-bottom: 1px dotted rgba(184, 232, 52, 0.3);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.lizenz-fineprint a:hover {
  color: var(--lime);
  border-bottom-color: var(--lime);
}

@media (max-width: 600px) {
  .lizenz-explainer {
    flex-direction: column;
    text-align: left;
  }
}


/* ─────────────────────────────────────────────────────────────
   GLOBALE Mobile-Anpassungen für alle neuen Sektionen
   ───────────────────────────────────────────────────────────── */

@media (max-width: 760px) {
  .bg-sparten-grid,
  .compliance-grid,
  .fortknox-walls,
  .lizenz-pakete-grid {
    grid-template-columns: 1fr;
  }
  .bg-sparte-card,
  .compliance-card,
  .fortknox-wall,
  .lizenz-paket {
    padding: 20px;
  }
  .lizenz-paket-featured {
    margin-top: 10px; /* Platz für Badge auf mobile */
  }
  .saving-cell {
    font-size: 0.88rem;
  }
}

/* ── Reduced-Motion: alle Pulse-Animationen aus ── */
@media (prefers-reduced-motion: reduce) {
  .compliance-highlight-pulse {
    animation: none !important;
  }
  .bg-sparte-card,
  .compliance-card,
  .fortknox-wall,
  .lizenz-paket {
    transition: none !important;
  }
}


/* ─── Paket-Alias inline auf pakete.html (Basic „Geselle") ─── */
.paket-name .paket-alias-inline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7em;
  font-weight: 400;
  color: rgba(237, 234, 221, 0.5);
  margin-left: 6px;
  letter-spacing: 0;
  text-transform: none;
}

/* ═══════════════════════════════════════════════════════════════════
   NEW SECTION (16.05.26) · USP-STRIP + 3-SCHRITTE-PROZESS
   Positioniert zwischen Trust-Strip und BG-Sparten — schließt die
   Lücke zwischen Hero („Was bietet Kevin?") und Detail-Sektionen.
   ═══════════════════════════════════════════════════════════════════ */

.usp-process-section {
  background: var(--bg);
  padding: clamp(64px, 8vw, 112px) 0;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.usp-process-section .section-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.usp-process-section .section-head .lede {
  color: var(--cream);
  opacity: 0.78;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.55;
}

/* ─── USP-Grid (6 Kacheln) ─── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(64px, 8vw, 96px);
}

.usp-tile {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 32px);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
  position: relative;
}

.usp-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 232, 52, 0.3);
  background: var(--bg-elev);
}

.usp-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(184, 232, 52, 0.12);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 240ms ease;
}

.usp-tile:hover .usp-icon {
  background: rgba(184, 232, 52, 0.2);
}

.usp-icon svg {
  width: 24px;
  height: 24px;
}

.usp-title {
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 20px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 10px;
  line-height: 1.25;
}

.usp-text {
  color: var(--cream);
  opacity: 0.78;
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

.usp-text strong {
  color: var(--cream);
  opacity: 1;
  font-weight: 600;
}

.usp-link {
  color: var(--lime);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(184, 232, 52, 0.4);
  transition: border-color 200ms ease;
}

.usp-link:hover {
  border-bottom-color: var(--lime);
}

/* ─── Prozess-Block (3 Schritte) ─── */
.process-block {
  background: linear-gradient(180deg,
    rgba(184, 232, 52, 0.03) 0%,
    rgba(255, 138, 31, 0.03) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 48px);
  position: relative;
}

.process-headline {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 clamp(28px, 3.5vw, 40px);
  text-align: center;
  line-height: 1.3;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: clamp(12px, 1.6vw, 24px);
  align-items: start;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step-num {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--lime);
  letter-spacing: -1px;
  display: block;
}

.process-step-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.process-step-title {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
  line-height: 1.2;
}

.process-step-time {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  margin: 0;
  letter-spacing: 0.2px;
}

.process-step-text {
  color: var(--cream);
  opacity: 0.78;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 4px 0 0;
}

.process-step-arrow {
  align-self: center;
  color: var(--lime);
  opacity: 0.45;
  padding-top: clamp(20px, 2.5vw, 32px);
}

.process-step-arrow svg {
  width: 28px;
  height: 28px;
  display: block;
}

.process-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line);
}

.process-cta-hint {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.6;
  letter-spacing: 0.2px;
}

/* ─── Responsive: Tablet ─── */
@media (max-width: 980px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-step-arrow {
    transform: rotate(90deg);
    align-self: center;
    padding-top: 0;
  }
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 640px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }

  .usp-tile {
    padding: 20px;
  }

  .process-block {
    padding: 28px 20px;
  }

  .process-step-num {
    font-size: 36px;
  }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .usp-tile,
  .usp-icon {
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PATCH (16.05.26) · Qualitative Preisanzeige statt Zahlen
   Vorher: "~ 199 €/Mon." — jetzt "Schlank & modular" usw.
   ═══════════════════════════════════════════════════════════════════ */

.lizenz-paket-price-mode {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.65em;
  color: var(--lime);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 2px;
}

.lizenz-paket-featured .lizenz-paket-price-mode {
  color: var(--orange);
}

.lizenz-paket-price-amount {
  /* Beibehaltung der Größenstruktur trotz Textänderung */
  line-height: 1.05;
}

/* ═══════════════════════════════════════════════════════════════════
   NEW (16.05.26) · PILOT-10-BANNER · ganz oben, schließbar
   Sitzt im normalen Flow VOR der Nav. Beim Scrollen wandert er
   nach oben raus, die sticky Nav bleibt sichtbar.
   Schließen-Button mit 7-Tage-Cooldown via localStorage.
   ═══════════════════════════════════════════════════════════════════ */

.pilot-banner {
  position: relative;
  z-index: 90;
  background: linear-gradient(90deg,
    rgba(184, 232, 52, 0.10) 0%,
    rgba(255, 138, 31, 0.10) 100%);
  border-bottom: 1px solid rgba(184, 232, 52, 0.22);
  color: var(--cream);
  font-family: var(--body);
  overflow: hidden;
  transition: transform 320ms ease, opacity 320ms ease, max-height 320ms ease;
  max-height: 200px;
}

.pilot-banner-dismissed {
  transform: translateY(-100%);
  opacity: 0;
  max-height: 0;
  border-bottom-width: 0;
}

.pilot-banner-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex;
  align-items: center;
  gap: 16px;
}

.pilot-banner-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 0 rgba(184, 232, 52, 0.6);
  animation: pilot-pulse 2.2s ease-out infinite;
}

@keyframes pilot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(184, 232, 52, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(184, 232, 52, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(184, 232, 52, 0);
  }
}

.pilot-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.pilot-banner-headline {
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.3;
  letter-spacing: 0.1px;
  color: var(--cream);
}

.pilot-banner-sub {
  font-size: 12px;
  color: var(--cream);
  opacity: 0.62;
  line-height: 1.3;
}

.pilot-banner-cta {
  background: var(--lime);
  color: var(--bg);
  font-family: var(--body);
  font-weight: 700;
  font-size: 12.5px;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
  border: none;
  cursor: pointer;
}

.pilot-banner-cta:hover {
  background: #C9F44A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184, 232, 52, 0.25);
}

.pilot-banner-cta:active {
  transform: translateY(0);
}

.pilot-banner-close {
  background: transparent;
  color: var(--cream);
  opacity: 0.45;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  flex-shrink: 0;
  transition: opacity 200ms ease;
  font-family: var(--body);
  line-height: 1;
}

.pilot-banner-close:hover {
  opacity: 1;
}

.pilot-banner-close:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
  border-radius: 4px;
  opacity: 1;
}

/* ─── Mobile · Tablet ─── */
@media (max-width: 860px) {
  .pilot-banner-inner {
    gap: 12px;
    padding: 9px 16px;
  }
  .pilot-banner-headline {
    font-size: 12.5px;
  }
  .pilot-banner-sub {
    font-size: 11px;
  }
  .pilot-banner-cta {
    font-size: 11.5px;
    padding: 7px 12px;
  }
}

@media (max-width: 560px) {
  .pilot-banner-sub {
    display: none;
  }
  .pilot-banner-headline {
    font-size: 12px;
    font-weight: 600;
  }
  .pilot-banner-cta {
    font-size: 11px;
    padding: 6px 10px;
  }
  .pilot-banner-close {
    font-size: 16px;
    padding: 4px 6px;
  }
}

/* ─── Sehr kleine Bildschirme (< 380px) ─── */
@media (max-width: 380px) {
  .pilot-banner-headline {
    font-size: 11px;
  }
  .pilot-banner-pulse {
    display: none; /* Platz sparen */
  }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .pilot-banner-pulse {
    animation: none;
  }
  .pilot-banner {
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   NEW (16.05.26 · v3) · MERGED Section: Gain + Protect
   Ersetzt frühere Saving-Section + Compliance-Section.
   Spart eine Section-Header-Einheit, gleicher Content kompakter.
   ═══════════════════════════════════════════════════════════════════ */

.gain-protect-section {
  background: var(--bg);
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gain-protect-section .section-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 56px);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.gain-protect-section .section-head .lede {
  color: var(--cream);
  opacity: 0.78;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.55;
}

.gain-block,
.protect-block {
  margin-top: clamp(40px, 5vw, 56px);
}

.gain-block-headline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 clamp(24px, 3vw, 32px);
  line-height: 1.2;
}

.gain-block-num {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: var(--lime);
  letter-spacing: -1px;
  flex-shrink: 0;
}

.gain-block-num-orange {
  color: var(--orange);
}

.protect-intro {
  color: var(--cream);
  opacity: 0.78;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  max-width: 860px;
  margin: 0 0 clamp(28px, 3vw, 36px);
}

/* ─── Compliance kompakt (Pills statt Cards) ─── */
.protect-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: clamp(28px, 3vw, 36px);
}

.protect-pill {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 240ms ease, border-color 240ms ease;
}

.protect-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 31, 0.3);
}

.protect-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 138, 31, 0.12);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.protect-pill-icon svg {
  width: 20px;
  height: 20px;
}

.protect-pill-text {
  flex: 1;
  min-width: 0;
}

.protect-pill-tag {
  display: inline-block;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--orange);
  padding: 2px 8px;
  background: rgba(255, 138, 31, 0.10);
  border-radius: 4px;
  margin-bottom: 8px;
}

.protect-pill p {
  margin: 0;
  color: var(--cream);
  opacity: 0.85;
  font-size: 14px;
  line-height: 1.5;
}

.protect-pill p strong {
  opacity: 1;
  color: var(--cream);
  font-weight: 600;
}

.protect-highlight {
  background: linear-gradient(90deg,
    rgba(184, 232, 52, 0.06) 0%,
    rgba(255, 138, 31, 0.06) 100%);
  border: 1px solid rgba(255, 138, 31, 0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.protect-highlight-pulse {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pilot-pulse 2.2s ease-out infinite;
}

.protect-highlight-text {
  margin: 0;
  color: var(--cream);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.55;
}

/* Mobile */
@media (max-width: 760px) {
  .gain-block-headline {
    font-size: 20px;
    flex-wrap: wrap;
  }
  .gain-block-num {
    font-size: 32px;
  }
  .protect-pills {
    grid-template-columns: 1fr;
  }
  .protect-highlight {
    padding: 16px 18px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   NEW (16.05.26 · v3) · BG-Sparten Use-Case-Blöcke
   Erweitert jede BG-Karte um einen konkreten Tages-Ablauf.
   ═══════════════════════════════════════════════════════════════════ */

.bg-sparte-usecase {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(184, 232, 52, 0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bg-sparte-usecase-label {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--lime);
  opacity: 0.85;
}

.bg-sparte-usecase-text {
  margin: 0;
  color: var(--cream);
  opacity: 0.78;
  font-size: 13.5px;
  line-height: 1.6;
}

.bg-sparte-usecase-text strong {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  margin-right: 2px;
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════════════════════
   NEW (16.05.26 · v3) · VERGLEICHSTABELLE
   Kevin vs. Agentur vs. DIY
   ═══════════════════════════════════════════════════════════════════ */

.compare-section {
  background: var(--bg);
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
}

.compare-section .section-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.compare-section .section-head .lede {
  color: var(--cream);
  opacity: 0.78;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.55;
}

.compare-table {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1.2fr 1.2fr;
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-cell {
  padding: 16px 20px;
  color: var(--cream);
  font-size: 14px;
  line-height: 1.5;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.compare-cell:last-child {
  border-right: none;
}

.compare-cell-label {
  background: rgba(237, 234, 221, 0.03);
  color: var(--cream);
  opacity: 0.9;
}

.compare-cell-kevin {
  background: rgba(184, 232, 52, 0.05);
  position: relative;
}

.compare-col-tag {
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bg);
  background: var(--lime);
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 700;
}

.compare-row-header {
  background: var(--bg-elev);
}

.compare-row-header .compare-cell {
  padding-top: 24px;
  padding-bottom: 24px;
}

.compare-row-header .compare-cell strong {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.2;
}

.compare-row-header .compare-cell-kevin strong {
  color: var(--lime);
}

.compare-col-sub {
  font-size: 11.5px;
  color: var(--cream);
  opacity: 0.6;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.compare-mark {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  margin-right: 8px;
  flex-shrink: 0;
  vertical-align: middle;
}

.compare-mark-yes {
  background: rgba(184, 232, 52, 0.18);
  color: var(--lime);
}

.compare-mark-no {
  background: rgba(255, 138, 31, 0.12);
  color: var(--orange);
  opacity: 0.7;
}

.compare-mark-partial {
  background: rgba(237, 234, 221, 0.08);
  color: var(--cream);
  opacity: 0.6;
}

.compare-disclaimer {
  margin-top: 28px;
  text-align: center;
  font-family: var(--serif, 'Fraunces', serif);
  font-style: italic;
  font-size: 15px;
  color: var(--cream);
  opacity: 0.75;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Mobile (Tabelle wird zu Karten) */
@media (max-width: 880px) {
  .compare-row {
    grid-template-columns: 1fr;
    border-bottom: 2px solid var(--line);
  }
  .compare-row:last-child {
    border-bottom: none;
  }
  .compare-cell {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 14px 16px;
  }
  .compare-cell:last-child {
    border-bottom: none;
  }
  .compare-cell-label {
    background: var(--bg-elev);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  .compare-cell-label::before {
    content: "↓ ";
    color: var(--lime);
  }
  .compare-cell-kevin::before {
    content: "★ Bei mir: ";
    font-weight: 700;
    color: var(--lime);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .compare-cell-agency::before {
    content: "Agentur: ";
    font-weight: 600;
    color: var(--cream);
    opacity: 0.7;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .compare-cell-diy::before {
    content: "DIY: ";
    font-weight: 600;
    color: var(--cream);
    opacity: 0.7;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .compare-row-header {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   NEW (16.05.26 · v3) · LIZENZ-EXPLAINER mit Tool-Stack-Vergleich
   ═══════════════════════════════════════════════════════════════════ */

.lizenz-explainer-promise {
  margin-top: 20px;
  margin-bottom: 14px;
  color: var(--cream);
  font-size: 15px;
  line-height: 1.55;
}

.lizenz-explainer-promise strong:first-child {
  color: var(--lime);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}

.tool-stack-list {
  background: rgba(10, 13, 11, 0.4);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 16px 0 18px;
}

.tool-stack-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--cream);
  opacity: 0.85;
  border-bottom: 1px dashed rgba(237, 234, 221, 0.08);
}

.tool-stack-item:last-child {
  border-bottom: none;
}

.tool-stack-item-sum {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  border-bottom: none;
  opacity: 1;
}

.tool-stack-name {
  flex: 1;
  min-width: 0;
}

.tool-stack-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(237, 234, 221, 0.15);
  margin: 0 4px 4px;
  min-width: 20px;
  height: 1px;
}

.tool-stack-cost {
  flex-shrink: 0;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 13px;
  color: var(--cream);
  opacity: 0.7;
  white-space: nowrap;
}

.tool-stack-cost-sum {
  color: var(--orange);
  font-weight: 700;
  font-size: 14.5px;
  opacity: 1;
}

.lizenz-explainer-conclusion {
  margin-top: 10px;
  color: var(--cream);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .tool-stack-list {
    padding: 14px 16px;
  }
  .tool-stack-item {
    font-size: 13px;
    flex-wrap: wrap;
  }
  .tool-stack-name {
    flex: 1 0 60%;
  }
  .tool-stack-dots {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   NEW (16.05.26 · v3) · MOBILE STICKY-CTA-LEISTE
   Nur auf Mobile sichtbar (Desktop hat schon Floating-Phone-Button).
   ═══════════════════════════════════════════════════════════════════ */

.mobile-cta-bar {
  display: none;
}

@media (max-width: 860px) {
  body.has-chatbot {
    padding-bottom: 70px;
  }

  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 13, 11, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(184, 232, 52, 0.18);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    gap: 6px;
  }

  .mobile-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    color: var(--cream);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2px;
    border-radius: 8px;
    transition: background 200ms ease, color 200ms ease;
  }

  .mobile-cta-btn svg {
    width: 22px;
    height: 22px;
  }

  .mobile-cta-btn-call {
    color: var(--lime);
  }
  .mobile-cta-btn-call:active {
    background: rgba(184, 232, 52, 0.12);
  }

  .mobile-cta-btn-whatsapp {
    color: #25D366;
  }
  .mobile-cta-btn-whatsapp:active {
    background: rgba(37, 211, 102, 0.12);
  }

  .mobile-cta-btn-book {
    color: var(--orange);
  }
  .mobile-cta-btn-book:active {
    background: rgba(255, 138, 31, 0.12);
  }

  /* Bestehenden Floating Phone Button auf Mobile ausblenden — wird durch CTA-Leiste ersetzt */
  .btn-call,
  a.btn-call[aria-label="Anrufen"] {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .mobile-cta-btn {
    font-size: 10.5px;
    padding: 6px 2px;
  }
  .mobile-cta-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   NEW (16.05.26 · v3) · KI-TELEFON ECHTE GESPRÄCHE
   Dialog-Szenarien-Sektion auf ki-telefonassistent.html.
   ═══════════════════════════════════════════════════════════════════ */

.ki-tel-dialogs {
  background: var(--bg);
  padding: clamp(64px, 8vw, 112px) 0;
  border-top: 1px solid var(--line);
}

.ki-tel-dialogs .section-head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.ki-tel-inline-call {
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px dashed rgba(184, 232, 52, 0.4);
  transition: border-color 200ms ease;
}

.ki-tel-inline-call:hover {
  border-bottom-color: var(--lime);
}

.ki-tel-dialog {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 32px;
  overflow: hidden;
}

.ki-tel-dialog-head {
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--line);
}

.ki-tel-dialog-tag {
  display: inline-block;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 10px;
  font-weight: 700;
}

.ki-tel-dialog-tag-urgent {
  background: rgba(255, 138, 31, 0.15);
  color: var(--orange);
}
.ki-tel-dialog-tag-big {
  background: rgba(184, 232, 52, 0.15);
  color: var(--lime);
}
.ki-tel-dialog-tag-warm {
  background: rgba(237, 234, 221, 0.10);
  color: var(--cream);
}
.ki-tel-dialog-tag-careful {
  background: rgba(184, 232, 52, 0.08);
  color: var(--lime);
  opacity: 0.85;
}

.ki-tel-dialog-head h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: 0.3px;
  margin: 0;
  color: var(--cream);
  line-height: 1.25;
}

.ki-tel-dialog-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dialog-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dialog-line-ai {
  flex-direction: row;
}

.dialog-line-caller {
  flex-direction: row-reverse;
}

.dialog-speaker {
  flex-shrink: 0;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: 56px;
  text-align: center;
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 4px;
  font-weight: 600;
}

.dialog-line-ai .dialog-speaker {
  background: rgba(184, 232, 52, 0.15);
  color: var(--lime);
}

.dialog-line-caller .dialog-speaker {
  background: rgba(237, 234, 221, 0.08);
  color: var(--cream);
}

.dialog-line p {
  margin: 0;
  padding: 12px 16px;
  background: var(--bg-elev);
  border-radius: 12px;
  color: var(--cream);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 80%;
}

.dialog-line-ai p {
  border-bottom-left-radius: 2px;
  background: rgba(184, 232, 52, 0.06);
  border: 1px solid rgba(184, 232, 52, 0.12);
}

.dialog-line-caller p {
  border-bottom-right-radius: 2px;
}

.ki-tel-dialog-result {
  background: rgba(184, 232, 52, 0.05);
  border-top: 1px solid var(--line);
  padding: 18px 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dialog-result-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--lime);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
}

.ki-tel-dialog-result p {
  margin: 0;
  color: var(--cream);
  font-size: 14px;
  line-height: 1.55;
}

.ki-tel-dialog-result strong {
  color: var(--cream);
  font-weight: 600;
}

.ki-tel-dialogs-cta {
  margin-top: 48px;
  text-align: center;
}

.ki-tel-dialogs-note {
  font-family: var(--serif, 'Fraunces', serif);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--cream);
  opacity: 0.85;
  margin: 0 auto 24px;
  max-width: 640px;
  line-height: 1.5;
}

.ki-tel-dialogs-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 760px) {
  .ki-tel-dialog-head,
  .ki-tel-dialog-body,
  .ki-tel-dialog-result {
    padding-left: 18px;
    padding-right: 18px;
  }
  .dialog-line p {
    max-width: 88%;
    font-size: 14px;
  }
  .dialog-speaker {
    width: 46px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .dialog-line {
    gap: 8px;
  }
  .dialog-line p {
    font-size: 13.5px;
    padding: 10px 13px;
  }
  .dialog-speaker {
    width: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PATCH (16.05.26 · v3.1) · BANNER-COUNT-HIGHLIGHT
   Hebt "Noch 8 von 10 Plätzen frei" im Pilot-Banner visuell hervor.
   ═══════════════════════════════════════════════════════════════════ */

.pilot-banner-count {
  color: var(--lime);
  font-weight: 700;
  white-space: nowrap;
  font-feature-settings: "tnum"; /* Tabular numbers für saubere Optik */
}

/* ═══════════════════════════════════════════════════════════════════
   NEW (16.05.26 · v3.2) · LAYOUT-SPERRE & MOBILE-LOCK
   Verhindert Layout-Brüche durch zu lange Wörter, Bilder,
   verschachtelte Tabellen oder Inhalte, die über den Viewport
   hinausragen — auf Mobile, Tablet UND Desktop.
   ═══════════════════════════════════════════════════════════════════ */

/* Layout-Sperre Basis: kein horizontaler Scroll, egal was kommt */
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;       /* iOS: Schrift nicht automatisch vergrößern */
  -ms-text-size-adjust: 100%;
  max-width: 100vw;
}

body {
  max-width: 100vw;
  overflow-wrap: break-word;            /* Lange Wörter brechen statt aus dem Container raus */
  word-wrap: break-word;                /* Fallback ältere Browser */
  -webkit-hyphens: auto;                /* Sanfte Silbentrennung wenn Browser kann */
  -ms-hyphens: auto;
  hyphens: auto;
  hyphenate-limit-chars: 8 4 4;         /* nur lange Wörter trennen */
}

/* Code-Blöcke und Mono-Inhalt dürfen NICHT trennen — bricht sonst falsche Trennstellen */
code, pre, kbd, samp,
.tool-stack-cost, .saving-time,
[class*="-num"], [class*="-tag"] {
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  word-wrap: normal;
  overflow-wrap: normal;
}

/* Sicherheitsnetz: alle direkten Kinder der Sektionen dürfen nicht überlaufen */
section > * {
  max-width: 100%;
}

/* Bilder, Videos, iframes immer responsive */
img, picture, video, iframe, embed, object, svg {
  max-width: 100%;
  height: auto;
}
svg { height: auto; max-height: 100%; }  /* SVG max-height für Icons */

/* Tabellen sicher machen — bei zu wenig Platz scrollbar im Container */
.saving-table,
.compare-table {
  max-width: 100%;
}

/* Touch-Targets WCAG-konform: min 44x44px auf interaktiven Elementen */
@media (pointer: coarse) {
  a.btn, button.btn, .btn,
  .nav-cta, .mobile-cta-btn,
  .pilot-banner-cta {
    min-height: 44px;
  }
}

/* Schutz gegen sehr lange E-Mail-Adressen, URLs etc. in Texten */
a[href^="mailto:"], a[href^="tel:"], a[href^="https://"], a[href^="http://"] {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Footer-Links sollen brechen können */
footer a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ── Tablet-spezifischer Range (768-1024px) — saubere Übergänge ── */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Saving-Tabelle: 2-spaltig statt 3 wäre zu sperrig — bleibt 3-spaltig, aber Padding kleiner */
  .saving-row {
    grid-template-columns: 1fr 1.4fr 1.4fr;
  }
  /* USP-Grid auf Tablet: 2 Spalten statt 3 */
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Compare-Tabelle auf Tablet: Spalten enger, kleinerer Padding */
  .compare-cell {
    padding: 14px 14px;
    font-size: 13px;
  }
  .compare-row-header .compare-cell strong {
    font-size: 16px;
  }
}

/* ── Sehr kleine Bildschirme (< 360px, alte iPhone-SE) ── */
@media (max-width: 360px) {
  /* Container-Padding reduzieren */
  :root {
    --pad: 16px;
  }
  /* Hero-Stats kleiner */
  .hero-stat-num {
    font-size: 1.4rem !important;
  }
  /* Stempel kleiner */
  .eigenbau-stamp, .eigenbau-stamp--mini {
    transform: scale(0.85) rotate(-7deg);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   NEW (16.05.26 · v3.2) · READY-NOW-INDIKATOR
   Pulsender Status oben im Hero: "Alle Module live & einsatzbereit"
   ═══════════════════════════════════════════════════════════════════ */

.ready-now-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(184, 232, 52, 0.08);
  border: 1px solid rgba(184, 232, 52, 0.25);
  border-radius: 100px;
  margin-bottom: 18px;
  font-size: clamp(12px, 1.3vw, 14px);
  color: var(--cream);
  line-height: 1.4;
  max-width: 100%;
}

.ready-now-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(184, 232, 52, 0.6);
  animation: ready-pulse 2s ease-out infinite;
}

@keyframes ready-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(184, 232, 52, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(184, 232, 52, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 232, 52, 0); }
}

.ready-now-text {
  font-weight: 500;
}

.ready-now-text strong {
  font-weight: 700;
  color: var(--lime);
}

@media (max-width: 560px) {
  .ready-now-indicator {
    font-size: 11.5px;
    padding: 6px 12px;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ready-now-dot {
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   NEW (16.05.26 · v3.4) · A11Y · SKIP-TO-CONTENT LINK
   WCAG 2.4.1 (Level A) — Keyboard-User können direkt zum Hauptinhalt
   springen ohne Nav durchzutaben. Visuell versteckt, bei Fokus sichtbar.
   ═══════════════════════════════════════════════════════════════════ */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--lime);
  color: var(--bg);
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.skip-link:focus-visible,
.skip-link:focus {
  left: 0;
  top: 0;
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* Pilot-Banner darf nicht über dem Skip-Link liegen wenn dieser fokussiert wird */
.skip-link:focus ~ .pilot-banner {
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════════
   NEW (16.05.26 · v3.5) · VISUAL POLISH — Mikro-Animationen
   Subtile Bewegungen, die "lebendig" wirken — ohne zu nerven.
   Alle respektieren prefers-reduced-motion.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Smooth Underline-Animation für Text-Links im Body ── */
.lede a:not(.btn):not([class*="btn-"]),
p a:not(.btn):not([class*="btn-"]),
.process-step-text a {
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lede a:not(.btn):hover,
p a:not(.btn):not([class*="btn-"]):hover,
.process-step-text a:hover {
  background-size: 100% 1px;
}

/* ── Card-Lift mit Schatten (USPs, Stories, Pakete) ── */
.usp-tile,
.story-scene-card,
.bg-sparte-card,
.protect-pill {
  transition:
    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.32s ease;
}

/* ── Tactile Button-Feedback (active press) ── */
.btn:active,
.nav-cta:active,
.pilot-banner-cta:active,
.mobile-cta-btn:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

/* ── Smooth Section-In-View Animation Enhancement ── */
.reveal {
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Animierter Scroll-Indicator im Hero (optional, dezent) ── */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid rgba(237, 234, 221, 0.3);
  border-radius: 14px;
  z-index: 5;
  pointer-events: none;
}
.scroll-indicator::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 7px;
  background: var(--lime);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-down 1.8s ease-in-out infinite;
}
@keyframes scroll-down {
  0%   { transform: translate(-50%, 0);  opacity: 1; }
  60%  { transform: translate(-50%, 14px); opacity: 0; }
  61%  { transform: translate(-50%, 0); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}
@media (max-width: 760px) {
  .scroll-indicator { display: none; }
}

/* ── Focus-Visible — sauberer Outline für Keyboard-User auf ALLEN interaktiven Elementen ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Smooth Image-Reveal beim Laden ── */
img {
  transition: opacity 0.4s ease;
}
img[loading="lazy"] {
  opacity: 0;
  animation: fade-in-img 0.5s ease forwards;
}
@keyframes fade-in-img {
  to { opacity: 1; }
}

/* ── Subtle Glow auf Lime-Akzenten beim Hover ── */
.lime,
.brush {
  transition: text-shadow 0.3s ease;
}
*:hover > .lime,
*:hover > .brush {
  text-shadow: 0 0 18px rgba(184, 232, 52, 0.25);
}

/* ── Reduzierte Animation für User-Preference ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-indicator::after { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.7 · KEVIN-FEEDBACK-FIXES (16.05.2026 später)
   1. USP-Process-Titel besser lesbar
   2. BG-Sparten-Karten hochwertiger
   3. BG-Sparten Uhrzeiten bündig untereinander
   4. Compliance-Kacheln 5-spaltig + Tags prominent
   5. Pakete-Empfehlung-Badge fix (kein Umbruch, sauber)
   6. Pakete Haken hover-pop
   7. Für-wen Karte 9 angleichen
   ═══════════════════════════════════════════════════════════════════ */

/* ── (1) USP-PROCESS · Titel kräftig & lesbar ── */
.process-step-title {
  font-family: var(--display, 'Anton', 'Impact', sans-serif) !important;
  font-size: clamp(22px, 2.6vw, 30px) !important;
  letter-spacing: 1.2px !important;
  color: var(--cream) !important;
  text-shadow: 0 0 24px rgba(184, 232, 52, 0.08);
  margin-bottom: 6px !important;
  line-height: 1.05 !important;
  -webkit-text-stroke: 0.4px var(--cream);
}
.process-step-num {
  font-family: var(--display, 'Anton', 'Impact', sans-serif) !important;
  font-size: clamp(48px, 5.8vw, 76px) !important;
  -webkit-text-stroke: 1.2px var(--lime);
  color: var(--lime);
  filter: drop-shadow(0 0 18px rgba(184, 232, 52, 0.4));
  line-height: 0.85;
}
.process-step-time {
  color: rgba(237, 234, 221, 0.7) !important;
  font-size: 13px !important;
  letter-spacing: 0.3px;
  margin-bottom: 10px !important;
}
.process-step-text {
  color: rgba(237, 234, 221, 0.92) !important;
  font-size: 14.5px !important;
  line-height: 1.65 !important;
}

/* ── (2+3) BG-SPARTEN-KARTEN hochwertiger + Uhrzeiten bündig ── */
.bg-sparte-card {
  background: linear-gradient(155deg, rgba(184,232,52,0.04) 0%, rgba(10,13,11,0.6) 60%) !important;
  border: 1px solid rgba(184, 232, 52, 0.15) !important;
  border-radius: 16px !important;
  padding: clamp(22px, 2.5vw, 30px) !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s, box-shadow 0.3s;
}
.bg-sparte-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184,232,52,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.bg-sparte-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 232, 52, 0.45) !important;
  box-shadow: 0 14px 40px rgba(184, 232, 52, 0.12),
              0 0 0 1px rgba(184, 232, 52, 0.18);
}
.bg-sparte-card:hover::before { opacity: 1; }

/* BG-Sparte Icon kompakter */
.bg-sparte-card .bg-sparte-icon,
.bg-sparte-card svg[class*="icon"] {
  width: 44px !important;
  height: 44px !important;
}

/* BG-NAME (z.B. "BG BAU", "BG ETEM") prominent */
.bg-sparte-tag,
.bg-sparte-card [class*="-tag"]:not([class*="bg-sparte-icon"]) {
  display: inline-block !important;
  font-family: var(--display, 'Anton', 'Impact', sans-serif) !important;
  font-size: 14px !important;
  letter-spacing: 1.5px !important;
  padding: 5px 12px !important;
  background: rgba(184, 232, 52, 0.18) !important;
  color: var(--lime) !important;
  border: 1px solid rgba(184, 232, 52, 0.4) !important;
  border-radius: 6px !important;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(184, 232, 52, 0.3);
}

/* BG-Sparten Hauptname (z.B. "Bau & Ausbau") deutlich größer */
.bg-sparte-card h3 {
  font-family: var(--display, 'Anton', 'Impact', sans-serif) !important;
  font-size: clamp(24px, 2.8vw, 32px) !important;
  color: var(--cream) !important;
  margin: 14px 0 10px !important;
  letter-spacing: 0.6px;
  line-height: 1.05;
}

/* Uhrzeiten in BG-Use-Cases bündig: monospaced + Spalten */
.bg-sparte-usecase {
  display: grid !important;
  grid-template-columns: 60px 1fr !important;
  gap: 10px 14px !important;
  align-items: start !important;
  padding: 8px 0 !important;
  border-bottom: 1px dashed rgba(237, 234, 221, 0.06);
}
.bg-sparte-usecase:last-child { border-bottom: none; }
.bg-sparte-usecase-time {
  font-family: var(--mono, 'JetBrains Mono', monospace) !important;
  font-size: 12px !important;
  color: var(--orange) !important;
  font-weight: 600 !important;
  text-align: right !important;
  padding-top: 2px !important;
  letter-spacing: 0.5px;
}
.bg-sparte-usecase-text {
  font-size: 13.5px !important;
  line-height: 1.55 !important;
  color: rgba(237, 234, 221, 0.85);
}

/* Fallback: wenn die Uhrzeit als Inline-Format kommt ("06:45 Text..."),
   wenigstens monospaced anzeigen */
.bg-sparte-day strong,
.bg-sparte-card time {
  font-family: var(--mono, 'JetBrains Mono', monospace) !important;
  color: var(--orange) !important;
  letter-spacing: 0.4px;
  font-weight: 600;
}

/* ── (4) COMPLIANCE-KACHELN — 5er-Grid + Tags prominent ── */
.compliance-grid,
.gain-protect-grid,
.protect-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 16px !important;
}
@media (max-width: 1200px) {
  .compliance-grid, .gain-protect-grid, .protect-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 760px) {
  .compliance-grid, .gain-protect-grid, .protect-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .compliance-grid, .gain-protect-grid, .protect-grid {
    grid-template-columns: 1fr !important;
  }
}

.compliance-card,
.protect-pill {
  background: linear-gradient(160deg, rgba(255,138,31,0.05) 0%, rgba(10,13,11,0.6) 100%) !important;
  border: 1px solid rgba(255, 138, 31, 0.2) !important;
  border-radius: 14px !important;
  padding: 22px 20px !important;
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.compliance-card::after,
.protect-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,138,31,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.compliance-card:hover,
.protect-pill:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(255, 138, 31, 0.6) !important;
  box-shadow: 0 16px 42px rgba(255, 138, 31, 0.15),
              0 0 0 1px rgba(255, 138, 31, 0.3);
}
.compliance-card:hover::after,
.protect-pill:hover::after { opacity: 1; }

/* Orange Tags ("BG-KONFORM", "ZOLL-FKS-SICHER" etc.) PROMINENT */
.compliance-tag,
.compliance-card .tag,
.protect-pill .tag,
[class*="compliance"] [class*="-tag"] {
  display: inline-block;
  font-family: var(--display, 'Anton', 'Impact', sans-serif) !important;
  font-size: 13px !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase;
  padding: 6px 14px !important;
  background: linear-gradient(135deg, rgba(255,138,31,0.25), rgba(255,138,31,0.12)) !important;
  color: var(--orange) !important;
  border: 1px solid rgba(255, 138, 31, 0.6) !important;
  border-radius: 6px !important;
  font-weight: 700;
  text-shadow: 0 0 16px rgba(255, 138, 31, 0.4);
  margin-bottom: 12px !important;
  box-shadow: 0 2px 12px rgba(255, 138, 31, 0.15);
}

/* Zoll & BG-Kacheln hervorheben (sind die 1. & 2. in der Liste) */
.compliance-card:nth-child(1),
.compliance-card:nth-child(2) {
  background: linear-gradient(160deg, rgba(255,138,31,0.10) 0%, rgba(10,13,11,0.55) 100%) !important;
  border-color: rgba(255, 138, 31, 0.4) !important;
  box-shadow: 0 6px 20px rgba(255, 138, 31, 0.10);
}

/* ── (5) PAKETE · EMPFEHLUNG-BADGE — kein Umbruch, sauber positioniert ── */
.lizenz-paket-badge,
.paket-badge {
  white-space: nowrap !important;
  position: absolute !important;
  top: -1px !important;
  right: 20px !important;
  z-index: 3;
  background: linear-gradient(135deg, var(--lime), #8FD310) !important;
  color: var(--bg) !important;
  padding: 6px 16px !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
  border-radius: 0 0 8px 8px !important;
  box-shadow: 0 4px 14px rgba(184, 232, 52, 0.45),
              0 0 0 1px rgba(184, 232, 52, 0.3);
  font-family: var(--body, 'Inter', sans-serif) !important;
  letter-spacing: 1px;
  animation: badge-glow 2.4s ease-in-out infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 4px 14px rgba(184, 232, 52, 0.45); }
  50%      { box-shadow: 0 4px 22px rgba(184, 232, 52, 0.7); }
}

/* Compare-Tabelle "Empfehlung" Tag */
.compare-col-tag {
  white-space: nowrap !important;
  display: inline-block;
  padding: 3px 10px;
  background: var(--lime);
  color: var(--bg);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Paket-Karten brauchen Position relative für absolutes Badge */
.lizenz-paket, .paket {
  position: relative !important;
  overflow: visible !important;
}

/* ── (6) HAKEN · Hover-Pop-Animation in Pakete-Listen ── */
.lizenz-paket-features li,
.paket-features li {
  position: relative;
  padding-left: 28px !important;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.25s;
  cursor: default;
}
.lizenz-paket-features li::before,
.paket-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 232, 52, 0.15);
  color: var(--lime);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s, box-shadow 0.3s;
}
.lizenz-paket-features li:hover,
.paket-features li:hover {
  transform: translateX(3px);
  color: var(--cream);
}
.lizenz-paket-features li:hover::before,
.paket-features li:hover::before {
  transform: scale(1.25) rotate(8deg);
  background: var(--lime);
  color: var(--bg);
  box-shadow: 0 0 16px rgba(184, 232, 52, 0.5);
}

/* ── (7) FÜR-WEN · "Du bist nicht dabei?" Karte angleichen ── */
.branche-card-orange,
.branche-card[data-style="cta"] {
  background: linear-gradient(160deg, rgba(10,13,11,0.6), rgba(10,13,11,0.4)) !important;
  border: 1px solid rgba(255, 138, 31, 0.3) !important;
}
.branche-card-orange:hover,
.branche-card[data-style="cta"]:hover {
  border-color: rgba(255, 138, 31, 0.6) !important;
  box-shadow: 0 12px 32px rgba(255, 138, 31, 0.12);
}

/* fuer-wen Karten: alle Texte mit gleicher Höhe und Padding */
.branche-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.branche-card h3 {
  margin-bottom: 12px !important;
}
.branche-card p {
  flex-grow: 1;
}

/* ── (8) Generelle TYPO-VERBESSERUNG: alle Section-H3 & H4 lesbarer ── */
section h3, section h4,
.usp-tile h3, .usp-tile h4,
.story-scene-card h3,
.fortknox-mauer h3 {
  letter-spacing: 0.5px;
  color: var(--cream);
}

/* Anton-Font auf großen Titles bekommt Stroke für mehr Präsenz */
h2.display, .display, .hero-title {
  -webkit-text-stroke: 0.3px currentColor;
}

/* ── (8) SICHERHEIT · Fort-Knox-Claim-Strip ── */
.fortknox-claim-strip {
  padding: clamp(40px, 6vh, 64px) 0;
  background: linear-gradient(180deg, transparent, rgba(255,138,31,0.025) 50%, transparent);
}
.fortknox-claim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 880px) {
  .fortknox-claim-grid { grid-template-columns: 1fr; }
}
.fortknox-claim-card {
  background: linear-gradient(160deg, rgba(255,138,31,0.06), rgba(10,13,11,0.5));
  border: 1px solid rgba(255, 138, 31, 0.22);
  border-radius: 16px;
  padding: 26px 24px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.fortknox-claim-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,138,31,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.fortknox-claim-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 31, 0.55);
  box-shadow: 0 12px 36px rgba(255, 138, 31, 0.18);
}
.fortknox-claim-card:hover::before { opacity: 1; }
.fortknox-claim-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 138, 31, 0.12);
  border: 1px solid rgba(255, 138, 31, 0.35);
  border-radius: 12px;
  color: var(--orange);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.fortknox-claim-card strong {
  display: block;
  font-family: var(--display, 'Anton', 'Impact', sans-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--cream);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.fortknox-claim-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(237, 234, 221, 0.85);
  margin: 0;
  position: relative;
  z-index: 1;
}
.fortknox-claim-disclaimer {
  max-width: 880px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(237, 234, 221, 0.7);
  text-align: center;
  padding: 0 20px;
}
.fortknox-claim-disclaimer strong {
  color: var(--cream);
}

/* ═══════════════════════════════════════════════════════════════════
   v3.7 · BRAND-VIDEO-INTEGRATION
   - Logo-Eclipse-Video als rechter Anker im KI-Telefon-Banner
   - Layout 2-spaltig auf Desktop, gestapelt auf Mobile
   - Video läuft stumm, autoplay, loop
   ═══════════════════════════════════════════════════════════════════ */

.ki-tel-index-card-with-video {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr !important;
  gap: clamp(28px, 4vw, 56px) !important;
  align-items: center !important;
}

@media (max-width: 880px) {
  .ki-tel-index-card-with-video {
    grid-template-columns: 1fr !important;
  }
}

.ki-tel-index-video-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(184, 232, 52, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(184, 232, 52, 0.08);
}

.ki-tel-index-video-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at center, rgba(184, 232, 52, 0.15), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: video-glow-pulse 4s ease-in-out infinite;
}
@keyframes video-glow-pulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

.ki-tel-index-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ki-tel-index-video-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  border: 1px solid rgba(184, 232, 52, 0.3);
  font-size: 11.5px;
  letter-spacing: 0.8px;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
}
.ki-tel-index-video-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(184, 232, 52, 0.8);
  animation: video-caption-blink 1.5s ease-in-out infinite;
}
@keyframes video-caption-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  .ki-tel-index-video-glow,
  .ki-tel-index-video-dot { animation: none; }
}

/* ── KI-TEL-HERO mit Background-Video ── */
.ki-tel-hero-with-bgvideo {
  position: relative;
  overflow: hidden;
}
.ki-tel-hero-bgvideo {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.22;
  filter: blur(2px) saturate(0.85);
  pointer-events: none;
}
.ki-tel-hero-bgvideo-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    rgba(10,13,11,0.55) 0%,
    rgba(10,13,11,0.85) 60%,
    var(--bg) 100%);
  z-index: 1;
  pointer-events: none;
}
.ki-tel-hero-with-bgvideo .hero-inner,
.ki-tel-hero-with-bgvideo .wrap {
  position: relative;
  z-index: 2;
}
@media (max-width: 760px) {
  .ki-tel-hero-bgvideo {
    opacity: 0.16;
    filter: blur(3px) saturate(0.8);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ki-tel-hero-bgvideo { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.8 · KEVIN-FEEDBACK FINAL POLISH
   ═══════════════════════════════════════════════════════════════════ */

/* ── KI-Tel-Index-Highlight DEUTLICH prominenter machen ── */
.ki-tel-index-card-with-video {
  background: linear-gradient(155deg,
    rgba(255, 138, 31, 0.10) 0%,
    rgba(10, 13, 11, 0.85) 40%,
    rgba(184, 232, 52, 0.06) 100%) !important;
  border: 2px solid rgba(255, 138, 31, 0.35) !important;
  box-shadow:
    0 0 0 1px rgba(255, 138, 31, 0.15),
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(255, 138, 31, 0.12),
    inset 0 0 80px rgba(184, 232, 52, 0.03) !important;
  padding: clamp(28px, 4vw, 56px) !important;
  border-radius: 28px !important;
  position: relative;
}
.ki-tel-index-card-with-video::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--orange), transparent 50%, var(--lime));
  border-radius: 28px;
  opacity: 0.3;
  z-index: -1;
  filter: blur(20px);
  animation: ki-tel-card-glow 5s ease-in-out infinite;
}
@keyframes ki-tel-card-glow {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 0.5; }
}
.ki-tel-index-headline {
  font-size: clamp(28px, 4vw, 44px) !important;
}
.ki-tel-index-kicker {
  background: rgba(255, 138, 31, 0.15) !important;
  border: 1px solid rgba(255, 138, 31, 0.4) !important;
  padding: 6px 14px !important;
  border-radius: 100px !important;
  color: var(--orange) !important;
  font-weight: 700 !important;
}

/* Live-Caption beim Video lime-pulse */
.ki-tel-index-video-wrap {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(184, 232, 52, 0.15),
    0 0 0 2px rgba(184, 232, 52, 0.25) !important;
  border: none !important;
}

/* ═══════════════════════════════════════════════════════════════════
   BG-SPARTEN TIMELINE — strukturierte Listen mit bündigen Uhrzeiten
   ═══════════════════════════════════════════════════════════════════ */
.bg-sparte-timeline {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.bg-sparte-timeline li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px 16px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(237, 234, 221, 0.06);
}
.bg-sparte-timeline li:last-child { border-bottom: none; }
.bg-sparte-timeline-time {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 13px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.6px;
  background: rgba(255, 138, 31, 0.12);
  border: 1px solid rgba(255, 138, 31, 0.3);
  padding: 4px 8px;
  border-radius: 5px;
  text-align: center;
  height: fit-content;
  white-space: nowrap;
}
.bg-sparte-timeline-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(237, 234, 221, 0.88);
  padding-top: 2px;
}
.bg-sparte-timeline-text strong {
  color: var(--cream);
}

/* BG-Sparte-Karten: gleiche Höhe via Flexbox */
.bg-sparten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .bg-sparten-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .bg-sparten-grid { grid-template-columns: 1fr; }
}
.bg-sparte-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.bg-sparte-card .bg-sparte-trades {
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
  min-height: 104px !important;  /* Decken Worst-Case (3-zeilig) ab → alle Trades gleich hoch */
}
.bg-sparte-card .bg-sparte-modules {
  flex-grow: 1 !important;  /* Modules nimmt verfügbaren Raum → drückt Use-Case nach unten */
}
.bg-sparte-card .bg-sparte-usecase {
  flex-grow: 0;
  margin-top: auto;  /* Use-Case immer am unteren Card-Rand */
}
@media (max-width: 720px) {
  .bg-sparte-card .bg-sparte-trades {
    min-height: 0 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   COMPLIANCE PROTECT-PILLS — 4 Spalten × 2 Reihen = 8 (perfekt bündig)
   ═══════════════════════════════════════════════════════════════════ */
.protect-pills {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  align-items: stretch !important;
}
@media (max-width: 1100px) {
  .protect-pills { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .protect-pills { grid-template-columns: 1fr !important; }
}
.protect-pill {
  display: flex !important;
  flex-direction: row !important;
  gap: 14px !important;
  background: linear-gradient(160deg, rgba(255,138,31,0.05), rgba(10,13,11,0.55)) !important;
  border: 1px solid rgba(255, 138, 31, 0.18) !important;
  border-radius: 14px !important;
  padding: 18px 16px !important;
  height: 100% !important;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.protect-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,138,31,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.32s;
  pointer-events: none;
}
.protect-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 31, 0.55) !important;
  box-shadow: 0 14px 36px rgba(255, 138, 31, 0.15);
}
.protect-pill:hover::after { opacity: 1; }
.protect-pill-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: rgba(255, 138, 31, 0.12);
  border: 1px solid rgba(255, 138, 31, 0.3);
  border-radius: 8px;
}
.protect-pill-icon svg { width: 18px; height: 18px; }
.protect-pill-text { flex: 1; }
.protect-pill-tag {
  display: inline-block !important;
  font-family: var(--display, 'Anton', 'Impact', sans-serif) !important;
  font-size: 11.5px !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
  padding: 4px 10px !important;
  background: linear-gradient(135deg, rgba(255,138,31,0.28), rgba(255,138,31,0.12)) !important;
  color: var(--orange) !important;
  border: 1px solid rgba(255, 138, 31, 0.55) !important;
  border-radius: 5px !important;
  font-weight: 700 !important;
  text-shadow: 0 0 14px rgba(255, 138, 31, 0.5);
  margin-bottom: 8px !important;
}
.protect-pill p {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: rgba(237, 234, 221, 0.85) !important;
  margin: 0;
}

/* Zoll & BG-Pills mit verstärktem Look (1. & 2.) */
.protect-pill:nth-child(1),
.protect-pill:nth-child(2) {
  background: linear-gradient(160deg, rgba(255,138,31,0.12), rgba(10,13,11,0.5)) !important;
  border-color: rgba(255, 138, 31, 0.4) !important;
  box-shadow: 0 4px 18px rgba(255, 138, 31, 0.08);
}

/* ═══════════════════════════════════════════════════════════════════
   FORT KNOX MAUERN — 4 Spalten × 2 Reihen = 8 (lesbarer, hochwertiger)
   ═══════════════════════════════════════════════════════════════════ */
.fortknox-mauern,
.fortknox-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px !important;
  align-items: stretch !important;
}
@media (max-width: 1100px) {
  .fortknox-mauern, .fortknox-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 560px) {
  .fortknox-mauern, .fortknox-grid {
    grid-template-columns: 1fr !important;
  }
}
.fortknox-wall {
  background: linear-gradient(170deg,
    rgba(255, 138, 31, 0.07) 0%,
    rgba(10, 13, 11, 0.6) 50%) !important;
  border: 1px solid rgba(255, 138, 31, 0.22) !important;
  border-radius: 16px !important;
  padding: 24px 22px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s, box-shadow 0.3s;
}
.fortknox-wall::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.6;
}
.fortknox-wall:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 31, 0.5) !important;
  box-shadow: 0 18px 44px rgba(255, 138, 31, 0.15),
              0 0 0 1px rgba(255, 138, 31, 0.25);
}
.fortknox-num {
  font-family: var(--display, 'Anton', 'Impact', sans-serif) !important;
  font-size: 36px !important;
  color: var(--orange) !important;
  opacity: 0.7;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
  text-shadow: 0 0 18px rgba(255, 138, 31, 0.3);
}

/* FORT-KNOX-Titel: Inter Bold statt Anton (BESSER LESBAR) */
.fortknox-wall h3 {
  font-family: var(--body, 'Inter', sans-serif) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
  color: var(--cream) !important;
  line-height: 1.25 !important;
  margin: 0 0 6px !important;
  -webkit-text-stroke: 0 !important;
}
.fortknox-name {
  font-family: var(--mono, 'JetBrains Mono', monospace) !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: var(--orange) !important;
  margin: 0 0 12px !important;
  opacity: 0.95;
  font-weight: 600 !important;
}
.fortknox-wall p:not(.fortknox-name) {
  font-size: 13.5px !important;
  line-height: 1.55 !important;
  color: rgba(237, 234, 221, 0.85) !important;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   FORT KNOX auf SICHERHEIT.HTML — ICONS ergänzen (visuelle Sprache
   für Handwerker, der Texte nicht nur als Wörter sieht)
   ═══════════════════════════════════════════════════════════════════ */
.fortknox-wall .fortknox-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: rgba(255, 138, 31, 0.13);
  border: 1px solid rgba(255, 138, 31, 0.35);
  border-radius: 12px;
  margin-bottom: 14px;
}
.fortknox-wall .fortknox-icon svg {
  width: 22px;
  height: 22px;
}

/* ═══════════════════════════════════════════════════════════════════
   COMPARE-TABELLE · "EMPFEHLUNG"-Badge bei BEI MIR fixen
   ═══════════════════════════════════════════════════════════════════ */
.compare-col-tag {
  display: block !important;
  position: absolute !important;
  top: -12px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(135deg, var(--lime), #8FD310) !important;
  color: var(--bg) !important;
  padding: 5px 14px !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  border-radius: 100px !important;
  font-family: var(--body, 'Inter', sans-serif) !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 12px rgba(184, 232, 52, 0.4),
              0 0 0 1px rgba(184, 232, 52, 0.4) !important;
  z-index: 5 !important;
  margin: 0 !important;
  animation: badge-pulse 2.4s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(184, 232, 52, 0.4); }
  50%      { box-shadow: 0 4px 22px rgba(184, 232, 52, 0.7); }
}
.compare-col-kevin,
.compare-row-header .compare-cell-kevin {
  position: relative !important;
  padding-top: 24px !important;
}

/* ═══════════════════════════════════════════════════════════════════
   FINAL: Globale lesbarkeits-Verbesserung — Anton-Headlines im Body
   sollen nur für DISPLAYS verwendet werden, nicht für kleine H3
   ═══════════════════════════════════════════════════════════════════ */
section h3:not(.display):not(.hero-title) {
  font-family: var(--body, 'Inter', sans-serif);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.9 · FINAL OVERRIDE (alle Specificity-Probleme jetzt mit !important)
   Bullets weg, Grid greift, Uhrzeiten in ROT, Pill ohne Umbruch,
   Empfehlung-Badge prominent, Lede als visueller USP-Block.
   ═══════════════════════════════════════════════════════════════════ */

/* ── BG-SPARTEN TIMELINE — AGGRESSIVES OVERRIDE ── */
ul.bg-sparte-timeline,
.bg-sparte-timeline {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  padding: 0 !important;
  margin: 14px 0 0 !important;
}
.bg-sparte-timeline li {
  display: grid !important;
  grid-template-columns: 64px 1fr !important;
  gap: 12px 14px !important;
  align-items: start !important;
  padding: 10px 0 !important;
  border-bottom: 1px dashed rgba(237, 234, 221, 0.07) !important;
  list-style: none !important;
  position: relative !important;
}
.bg-sparte-timeline li::before,
.bg-sparte-timeline li::marker {
  display: none !important;
  content: "" !important;
}
.bg-sparte-timeline li:last-child {
  border-bottom: none !important;
}

/* UHRZEITEN IN ROT (wie Kevin gefordert) */
.bg-sparte-timeline-time,
.bg-sparte-timeline time {
  display: inline-block !important;
  font-family: var(--mono, 'JetBrains Mono', monospace) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px !important;
  color: #FF3B3B !important;
  background: rgba(255, 59, 59, 0.12) !important;
  border: 1px solid rgba(255, 59, 59, 0.4) !important;
  padding: 4px 8px !important;
  border-radius: 5px !important;
  text-align: center !important;
  white-space: nowrap !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-shadow: 0 0 14px rgba(255, 59, 59, 0.35) !important;
}
.bg-sparte-timeline-text {
  display: block !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: rgba(237, 234, 221, 0.9) !important;
  padding-top: 1px !important;
}

/* ── KICKER „KONKRET · KEINE MARKETING-ZAHLEN" — kein Umbruch ── */
.kicker {
  white-space: nowrap !important;
  max-width: 100% !important;
}
/* Falls Pill zu lang für Mobile: dann darf brechen, aber smart */
@media (max-width: 560px) {
  .kicker {
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.3 !important;
  }
}

/* ── COMPARE-TABELLE · EMPFEHLUNG-BADGE bei „Bei mir" SAUBER ── */
.compare-row-header {
  position: relative !important;
}
.compare-cell-kevin {
  position: relative !important;
  padding-top: 28px !important;
}
.compare-col-tag {
  display: inline-block !important;
  position: absolute !important;
  top: -10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(135deg, var(--lime), #8FD310) !important;
  color: var(--bg) !important;
  padding: 5px 16px !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
  border-radius: 100px !important;
  font-family: var(--body, 'Inter', sans-serif) !important;
  white-space: nowrap !important;
  z-index: 5 !important;
  margin: 0 !important;
  box-shadow:
    0 4px 14px rgba(184, 232, 52, 0.45),
    0 0 0 1.5px rgba(184, 232, 52, 0.55) !important;
  animation: badge-pulse-glow 2.5s ease-in-out infinite !important;
}
@keyframes badge-pulse-glow {
  0%, 100% {
    box-shadow:
      0 4px 14px rgba(184, 232, 52, 0.45),
      0 0 0 1.5px rgba(184, 232, 52, 0.55);
  }
  50% {
    box-shadow:
      0 4px 24px rgba(184, 232, 52, 0.75),
      0 0 0 1.5px rgba(184, 232, 52, 0.85);
  }
}

/* ── PUNKT-ARTEFAKT JAGEN: leere Pulse-Dots ohne sichtbaren Kontext ── */
.ki-tel-index-pulse,
.pilot-banner-pulse,
.pulse-dot {
  display: inline-block !important;
}
/* Leere Spans am Body-Ende oder andere Artefakte */
.kicker::before {
  background: var(--lime) !important;
  width: 22px !important;
  height: 1.5px !important;
  border-radius: 0 !important;
}

/* ── LEDE BEI GAIN-PROTECT als visueller 2-Karten-USP statt Fließtext ── */
.gain-protect-section .section-head .lede {
  font-size: 0 !important;  /* hide original text */
  line-height: 0 !important;
  margin: 0 !important;
}
.gain-protect-section .section-head .lede::after {
  content: "" !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  max-width: 880px !important;
  margin: 28px auto 0 !important;
  font-size: 0 !important;  /* container */
}
/* Pseudo-Element trickery won't work for 2 separate quotes — use real DOM */

/* Block den klassischen Lede-Stil komplett aus (wir bauen einen neuen) */
.gain-protect-section .lede {
  display: none !important;
}

/* ── NEUER USP-Twin-Block direkt unter Headline ── */
.gain-protect-usp-twin {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  max-width: 880px !important;
  margin: 28px auto 12px !important;
}
@media (max-width: 720px) {
  .gain-protect-usp-twin {
    grid-template-columns: 1fr !important;
  }
}
.gain-protect-usp-card {
  background: linear-gradient(160deg,
    rgba(184, 232, 52, 0.07) 0%,
    rgba(10, 13, 11, 0.55) 100%) !important;
  border: 1px solid rgba(184, 232, 52, 0.22) !important;
  border-radius: 16px !important;
  padding: 24px 22px !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s, box-shadow 0.3s !important;
  position: relative !important;
  overflow: hidden !important;
}
.gain-protect-usp-card.is-orange {
  background: linear-gradient(160deg,
    rgba(255, 138, 31, 0.08) 0%,
    rgba(10, 13, 11, 0.55) 100%) !important;
  border-color: rgba(255, 138, 31, 0.28) !important;
}
.gain-protect-usp-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(184, 232, 52, 0.55) !important;
  box-shadow: 0 14px 38px rgba(184, 232, 52, 0.15) !important;
}
.gain-protect-usp-card.is-orange:hover {
  border-color: rgba(255, 138, 31, 0.55) !important;
  box-shadow: 0 14px 38px rgba(255, 138, 31, 0.15) !important;
}
.gain-protect-usp-num {
  display: inline-block !important;
  font-family: var(--display, 'Anton', sans-serif) !important;
  font-size: 32px !important;
  color: var(--lime) !important;
  line-height: 1 !important;
  margin-bottom: 8px !important;
  text-shadow: 0 0 18px rgba(184, 232, 52, 0.4) !important;
}
.gain-protect-usp-card.is-orange .gain-protect-usp-num {
  color: var(--orange) !important;
  text-shadow: 0 0 18px rgba(255, 138, 31, 0.4) !important;
}
.gain-protect-usp-headline {
  font-family: var(--body, 'Inter', sans-serif) !important;
  font-weight: 700 !important;
  font-size: clamp(17px, 2vw, 20px) !important;
  color: var(--cream) !important;
  margin: 4px 0 8px !important;
  line-height: 1.25 !important;
}
.gain-protect-usp-text {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: rgba(237, 234, 221, 0.85) !important;
  margin: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.9 FINAL-FINAL · Punkt-Artefakt jagen + Sicherheits-Overrides
   ═══════════════════════════════════════════════════════════════════ */

/* Keine leeren Block-Elemente die einen "Punkt" erzeugen können */
.kicker:empty,
.kicker > span:empty:not(.ki-tel-index-pulse):not(.pilot-banner-pulse) {
  display: none !important;
}

/* Pulse-Dots sollen rund (border-radius 50%) sein, KEIN Quadrat */
.ki-tel-index-pulse,
.pilot-banner-pulse,
.pulse-dot,
.kicker::before {
  border-radius: 50% !important;
}

/* Falls irgendwo ein "<span></span>" oder leeres Element steht: kein Background */
section > span:empty,
.wrap > span:empty {
  background: transparent !important;
  display: none !important;
}

/* ── BG-Sparten Bullet-Reset auf höchster Ebene ── */
.bg-sparte-card ul,
.bg-sparte-card ol,
.bg-sparte-timeline,
.bg-sparte-timeline li {
  list-style: none !important;
  list-style-type: none !important;
}
.bg-sparte-card ul li::marker,
.bg-sparte-timeline li::marker {
  content: "" !important;
  display: none !important;
}
/* Sicherstellen: KEIN bullet/disc/circle */
.bg-sparte-timeline,
.bg-sparte-timeline * {
  list-style-image: none !important;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.10 · LINE-BREAK & PUNKTUATIONS-SCHUTZ für Display-Headlines
   Verhindert dass Punkte/Kommas an Zeilenanfang rutschen
   ═══════════════════════════════════════════════════════════════════ */

/* hängende Punktuation: an Wort kleben */
.display,
.hero-title,
h1.display,
h2.display,
h3.display {
  hanging-punctuation: first last;
  text-wrap: balance;  /* moderner Browser: ausbalancierte Zeilen */
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Brush-Spans haften am Punkt — inline-block verhindert Solo-Wort */
.brush, .brush-orange {
  display: inline !important;
  white-space: normal;
}

/* Letztes Wort + Punkt zusammenhalten via display: inline-block — 
   funktioniert wenn das brush-Span direkt vor dem Punkt liegt */
.display .brush:last-child,
.display .brush-orange:last-child {
  white-space: nowrap;
}

/* Helper-Class für Nicht-Brechen */
.nobr {
  white-space: nowrap !important;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.10 FINAL · GLOBALER PUNKT-ARTEFAKT-KILLER
   Alle leeren Inline-Elemente und Listen-Marker verstecken
   ═══════════════════════════════════════════════════════════════════ */

/* Leere Spans ohne sinnvollen Kontext (Icons/Pulse sind ausgenommen) */
span:empty:not([class*="pulse"]):not([class*="icon"]):not([class*="dot"]):not([aria-hidden]):not(.ki-tel-index-pulse):not(.pilot-banner-pulse) {
  display: none !important;
}

/* Leere Listen-Items */
li:empty {
  display: none !important;
}
li:empty::marker {
  content: "" !important;
  display: none !important;
}

/* Leere paragraphs */
p:empty {
  display: none !important;
}

/* Pulse-Dots: explizit als Kreise (KEIN Quadrat) */
.kicker::before,
.ki-tel-index-pulse,
.pilot-banner-pulse,
.pulse-dot,
.fortknox-claim-card::after,
[class*="pulse"]:not(animation):not(keyframes) {
  border-radius: 50% !important;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.11 · RADIKAL-FIX: BG-Sparte Timeline als DIV-Struktur (keine UL/LI)
   ═══════════════════════════════════════════════════════════════════ */

div.bg-sparte-timeline {
  display: block !important;
  margin: 14px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.bg-sparte-timeline-row {
  display: grid !important;
  grid-template-columns: 64px 1fr !important;
  gap: 12px 14px !important;
  align-items: start !important;
  padding: 10px 0 !important;
  border-bottom: 1px dashed rgba(237, 234, 221, 0.07) !important;
}
.bg-sparte-timeline-row:last-child {
  border-bottom: none !important;
}

/* UHRZEITEN: ORANGE wie Kevin gefordert (nicht mehr rot) */
.bg-sparte-timeline-row > .bg-sparte-timeline-time,
.bg-sparte-timeline time.bg-sparte-timeline-time {
  display: inline-block !important;
  font-family: var(--mono, 'JetBrains Mono', monospace) !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  color: var(--orange) !important;
  background: rgba(255, 138, 31, 0.13) !important;
  border: 1px solid rgba(255, 138, 31, 0.4) !important;
  padding: 4px 8px !important;
  border-radius: 5px !important;
  text-align: center !important;
  white-space: nowrap !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-shadow: 0 0 12px rgba(255, 138, 31, 0.3) !important;
  height: fit-content !important;
}

.bg-sparte-timeline-row > .bg-sparte-timeline-text {
  display: block !important;
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: rgba(237, 234, 221, 0.9) !important;
  padding-top: 2px !important;
}

/* ═══════════════════════════════════════════════════════════════════
   USP-TWIN-CARDS · Background/Border greift jetzt (mit höchster Spec.)
   ═══════════════════════════════════════════════════════════════════ */
.gain-protect-section .gain-protect-usp-twin {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  max-width: 880px !important;
  margin: 32px auto 24px !important;
}
@media (max-width: 720px) {
  .gain-protect-section .gain-protect-usp-twin {
    grid-template-columns: 1fr !important;
  }
}
.gain-protect-section .gain-protect-usp-card,
.gain-protect-usp-twin > .gain-protect-usp-card {
  background: linear-gradient(160deg,
    rgba(184, 232, 52, 0.10) 0%,
    rgba(10, 13, 11, 0.65) 100%) !important;
  border: 1.5px solid rgba(184, 232, 52, 0.28) !important;
  border-radius: 18px !important;
  padding: 28px 24px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s, box-shadow 0.3s !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25), inset 0 1px 0 rgba(184,232,52,0.06) !important;
}
.gain-protect-section .gain-protect-usp-card.is-orange,
.gain-protect-usp-twin > .gain-protect-usp-card.is-orange {
  background: linear-gradient(160deg,
    rgba(255, 138, 31, 0.10) 0%,
    rgba(10, 13, 11, 0.65) 100%) !important;
  border-color: rgba(255, 138, 31, 0.32) !important;
}
.gain-protect-usp-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at top right, rgba(184,232,52,0.15), transparent 60%) !important;
  opacity: 0 !important;
  transition: opacity 0.35s !important;
  pointer-events: none !important;
}
.gain-protect-usp-card.is-orange::before {
  background: radial-gradient(circle at top right, rgba(255,138,31,0.18), transparent 60%) !important;
}
.gain-protect-usp-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(184, 232, 52, 0.6) !important;
  box-shadow: 0 18px 44px rgba(184, 232, 52, 0.20), inset 0 1px 0 rgba(184,232,52,0.1) !important;
}
.gain-protect-usp-card.is-orange:hover {
  border-color: rgba(255, 138, 31, 0.6) !important;
  box-shadow: 0 18px 44px rgba(255, 138, 31, 0.20) !important;
}
.gain-protect-usp-card:hover::before { opacity: 1 !important; }

.gain-protect-usp-card .gain-protect-usp-num {
  display: block !important;
  font-family: var(--display, 'Anton', sans-serif) !important;
  font-size: 38px !important;
  color: var(--lime) !important;
  line-height: 1 !important;
  margin-bottom: 10px !important;
  text-shadow: 0 0 22px rgba(184, 232, 52, 0.4) !important;
  letter-spacing: 1px !important;
}
.gain-protect-usp-card.is-orange .gain-protect-usp-num {
  color: var(--orange) !important;
  text-shadow: 0 0 22px rgba(255, 138, 31, 0.4) !important;
}
.gain-protect-usp-card .gain-protect-usp-headline {
  font-family: var(--body, 'Inter', sans-serif) !important;
  font-weight: 800 !important;
  font-size: clamp(18px, 2.1vw, 22px) !important;
  color: var(--cream) !important;
  margin: 6px 0 10px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.2px !important;
}
.gain-protect-usp-card .gain-protect-usp-text {
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: rgba(237, 234, 221, 0.85) !important;
  margin: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   KICKER · max-width + Spacing — KEIN Umbruch bei normalen Texten
   ═══════════════════════════════════════════════════════════════════ */
.kicker {
  white-space: nowrap !important;
  max-width: none !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.16em !important;
  padding: 8px 16px !important;
}
@media (max-width: 760px) {
  .kicker {
    font-size: 0.72rem !important;
    letter-spacing: 0.12em !important;
    padding: 7px 14px !important;
  }
}
@media (max-width: 400px) {
  .kicker {
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.4 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   GLOBALE H3-LESBARKEIT · Anton nur noch für DISPLAY-Headlines
   Alle anderen H3 in Inter Bold (lesbarer)
   ═══════════════════════════════════════════════════════════════════ */
h3:not(.display):not(.hero-title):not([class*="brush"]),
.fortknox-wall h3,
.fortknox-mauer h3,
.bg-sparte-card h3,
.compliance-card h3,
.protect-pill h3,
section h3:not(.display) {
  font-family: var(--body, 'Inter', sans-serif) !important;
  font-weight: 700 !important;
  letter-spacing: 0.1px !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  color: var(--cream) !important;
}

/* Display H2 darf weiterhin Anton */
.display, h1.display, h2.display, .hero-title {
  font-family: var(--display, 'Anton', 'Impact', sans-serif) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.12 · SECTION-HEAD SITE-WEIT 1-SPALTIG ZENTRIERT
   Behebt: Kicker abgeschnitten, Lede in 2-Wort-Zeilen, Headline rechts ausgerissen
   ═══════════════════════════════════════════════════════════════════ */

.section-head {
  display: block !important;
  grid-template-columns: 1fr !important;
  text-align: center !important;
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: clamp(40px, 6vw, 64px) !important;
}

.section-head .kicker {
  display: inline-flex !important;
  margin: 0 auto 18px !important;
  text-align: center !important;
}

.section-head h2,
.section-head .display {
  max-width: none !important;
  margin: 0 auto 18px !important;
  text-align: center !important;
}

.section-head .lede {
  max-width: 65ch !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem) !important;
  line-height: 1.6 !important;
  color: rgba(237, 234, 221, 0.78) !important;
}

/* Ausnahme: gain-protect-section behält die USP-Twin-Karten zentriert */
.gain-protect-section .section-head {
  text-align: center !important;
}

/* Kicker für sehr lange Texte: Mobile darf brechen */
@media (max-width: 760px) {
  .section-head .kicker {
    white-space: normal !important;
    max-width: 92% !important;
    line-height: 1.4 !important;
    font-size: 0.7rem !important;
    padding: 8px 14px !important;
  }
}

/* Wenn ein Kicker-Text wirklich zu lang ist, mach ihn 2-zeilig erlaubt — aber zentriert */
.section-head .kicker[data-long="true"],
.section-head .kicker:has(> *:nth-child(2)) {
  white-space: normal !important;
  text-align: center !important;
  line-height: 1.4 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.13 · USP-KACHELN — saubere Typo + gleiche Höhen
   Behebt: „PROGRAM-MIERT" Silbentrennung, ungleichmäßige Karten-Höhe
   ═══════════════════════════════════════════════════════════════════ */

/* Headlines auf den USP-Karten: KEINE automatische Silbentrennung */
.usp-tile .usp-title {
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -ms-hyphens: none !important;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
  text-wrap: balance !important;  /* moderner Browser: ausgeglichene Zeilen */
  font-size: clamp(18px, 2vw, 22px) !important;
  line-height: 1.2 !important;
  margin-bottom: 12px !important;
  min-height: calc(2 * 1.2em) !important;  /* immer mindestens 2 Zeilen Platz */
}

/* USP-Karten alle GLEICHE Höhe via Flex-Container */
.usps-grid,
.usp-grid {
  align-items: stretch !important;
}
.usp-tile {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.usp-tile .usp-text {
  flex-grow: 1 !important;  /* Text füllt verbleibenden Platz */
  hyphens: auto;  /* Text darf Silben trennen, ist OK bei normalem Text */
}

/* Globaler Schutz: Display-Headlines NIE Silben trennen */
.display,
h1.display, h2.display, h3.display,
.hero-title,
.usp-title,
.fortknox-wall h3,
.bg-sparte-card h3 {
  hyphens: none !important;
  -webkit-hyphens: none !important;
  word-break: keep-all !important;
  text-wrap: balance !important;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.14 · FIX 1: DIALOG-SPEAKER-Box breiter, kein Umbruch
   ═══════════════════════════════════════════════════════════════════ */
.dialog-speaker {
  width: auto !important;
  min-width: 82px !important;
  white-space: nowrap !important;
  padding: 4px 12px !important;
  text-align: center !important;
  letter-spacing: 0.6px !important;
}

/* Mobile: kann kompakter werden, aber nicht mehr umbrechen */
@media (max-width: 560px) {
  .dialog-speaker {
    min-width: 72px !important;
    font-size: 10px !important;
    padding: 3px 8px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.14 · FIX 2: ANTON-HEADLINES LESBAR — Stroke RAUS
   Hintergrund: in v3.6 hatte ich -webkit-text-stroke: 0.3px gesetzt.
   Bei Anton (Display-Font) verzeichnet das jeden Buchstaben minimal
   und macht ihn unscharf. Stroke jetzt komplett zurücksetzen.
   ═══════════════════════════════════════════════════════════════════ */

/* GLOBAL: Kein text-stroke mehr auf Headlines */
h1, h2, h3, h4, h5, h6,
.display, .hero-title,
h1.display, h2.display, h3.display,
.usp-title,
.ki-tel-cta-card h2,
.cta-banner-orange h2,
.brush, .brush-orange {
  -webkit-text-stroke: 0 !important;
  text-stroke: 0 !important;
  text-shadow: none !important;
}

/* Anton-Headlines schärfer rendern (Anti-Aliasing) */
.display, h1.display, h2.display, .hero-title,
.ki-tel-cta-card h2,
.cta-banner-orange h2 {
  font-family: var(--display, 'Anton', 'Impact', sans-serif) !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
  letter-spacing: 0.6px !important;
  font-weight: 400 !important;  /* Anton hat nur 400 */
}

/* SUBTILER Schimmer statt grober Stroke (sieht "präsent" aus ohne unscharf) */
.display .brush, .display .brush-orange,
.hero-title .brush, .hero-title .brush-orange {
  filter: drop-shadow(0 0 8px rgba(184, 232, 52, 0.15));
}
.display .brush-orange, .hero-title .brush-orange {
  filter: drop-shadow(0 0 8px rgba(255, 138, 31, 0.15));
}

/* Subheadlines (h3, h4) in Inter Bold sind sowieso schon scharf */
section h3:not(.display),
.ki-tel-dialog h3,
.fortknox-wall h3,
.bg-sparte-card h3,
.protect-pill h3 {
  font-family: var(--body, 'Inter', sans-serif) !important;
  font-weight: 700 !important;
  -webkit-text-stroke: 0 !important;
  -webkit-font-smoothing: antialiased !important;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.15 · RECHTS-SICHERE Sternchen + Fineprint-Erläuterung
   Schützt vor UWG-Abmahnungen wegen konkreter Werbeversprechen
   ═══════════════════════════════════════════════════════════════════ */

.usp-fineprint-ref {
  font-size: 0.6em;
  color: var(--lime);
  vertical-align: super;
  margin-left: 2px;
  font-weight: 600;
}

.usp-fineprint {
  max-width: 880px;
  margin: 24px auto 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(237, 234, 221, 0.55);
  text-align: center;
  padding: 0 24px;
}
.usp-fineprint sup {
  color: var(--lime);
  font-weight: 600;
  margin-right: 4px;
}

@media (max-width: 720px) {
  .usp-fineprint {
    font-size: 11.5px;
    text-align: left;
    padding: 0 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.16 · PILL-TAGS LESBAR + HOVER-SCALE-EFFEKT
   Anton-Font in kleinen Größen ist unscharf → Inter Bold ist klarer
   Plus: Tag wächst beim Hover auf der Karte
   ═══════════════════════════════════════════════════════════════════ */

/* COMPLIANCE-TAGS (BG-KONFORM, ZOLL-FKS-SICHER, HGB §257, etc.) */
.protect-pill-tag,
.protect-pill .tag,
.compliance-card .tag {
  font-family: var(--body, 'Inter', sans-serif) !important;
  font-weight: 800 !important;
  font-size: 11.5px !important;
  letter-spacing: 1.4px !important;
  text-transform: uppercase !important;
  padding: 5px 12px !important;
  background: linear-gradient(135deg, rgba(255,138,31,0.25), rgba(255,138,31,0.10)) !important;
  color: var(--orange) !important;
  border: 1px solid rgba(255, 138, 31, 0.5) !important;
  border-radius: 6px !important;
  display: inline-block !important;
  margin-bottom: 10px !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
  transform-origin: left center !important;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease !important;
}

/* HOVER: TAG wächst + leuchtet stärker */
.protect-pill:hover .protect-pill-tag,
.protect-pill:hover .tag,
.compliance-card:hover .tag {
  transform: scale(1.12) !important;
  background: linear-gradient(135deg, rgba(255,138,31,0.45), rgba(255,138,31,0.20)) !important;
  border-color: rgba(255, 138, 31, 0.85) !important;
  box-shadow:
    0 6px 18px rgba(255, 138, 31, 0.35),
    0 0 0 1px rgba(255, 138, 31, 0.55) !important;
  color: #FFB266 !important;  /* helleres Orange für Kontrast */
}

/* Gleicher Effekt für BG-Sparten-Tags (BG BAU, BG ETEM, BGHM, BG ENERGIE-ELEKTRO, BG VERKEHR, BG NAHRUNG-GASTSTÄTTEN) */
.bg-sparte-tag,
.bg-sparte-card [class*="-tag"]:not(.bg-sparte-timeline-time) {
  font-family: var(--body, 'Inter', sans-serif) !important;
  font-weight: 800 !important;
  font-size: 11.5px !important;
  letter-spacing: 1.4px !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  -webkit-font-smoothing: antialiased !important;
  transform-origin: left center !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s, border-color 0.3s, box-shadow 0.3s !important;
}
.bg-sparte-card:hover .bg-sparte-tag {
  transform: scale(1.12) !important;
  background: linear-gradient(135deg, rgba(184,232,52,0.35), rgba(184,232,52,0.18)) !important;
  border-color: rgba(184, 232, 52, 0.85) !important;
  box-shadow:
    0 6px 18px rgba(184, 232, 52, 0.3),
    0 0 0 1px rgba(184, 232, 52, 0.6) !important;
}

/* GLEICHFALLS: Fort-Knox-Mauer fortknox-name als Sub-Tag */
.fortknox-wall .fortknox-name {
  font-family: var(--mono, 'JetBrains Mono', monospace) !important;
  font-weight: 700 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  -webkit-font-smoothing: antialiased !important;
}

/* Lizenz-Paket Badge "Empfehlung" auch antialiased für Schärfe */
.lizenz-paket-badge,
.paket-badge {
  font-family: var(--body, 'Inter', sans-serif) !important;
  font-weight: 800 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  -webkit-font-smoothing: antialiased !important;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.18 · HERO STAMPS sauber positionieren + Headline schützen
   Behebt: Orange-Stamps überlappen die Headline rechts
   ═══════════════════════════════════════════════════════════════════ */

/* Desktop: Stamps absolut oben rechts, Headline bekommt Platz */
@media (min-width: 901px) {
  .hero-inner {
    position: relative !important;
    padding-right: 0 !important;
  }

  /* KI-Telefon-Stempel: oben rechts */
  .hero-inner > .eigenbau-stamp:not(.eigenbau-stamp--mini) {
    position: absolute !important;
    top: 12px !important;
    right: 16px !important;
    z-index: 4 !important;
    max-width: 200px !important;
    transform: rotate(-7deg) !important;
  }

  /* Backstage-CRM-Stempel: oben rechts daneben, kleiner */
  .hero-inner > .eigenbau-stamp--mini {
    position: absolute !important;
    top: 20px !important;
    right: 235px !important;
    z-index: 3 !important;
    max-width: 170px !important;
    transform: rotate(-4deg) !important;
  }

  /* Headline kriegt Platz: max 70% der Hero-Breite */
  .hero-inner > .display,
  .hero-inner > h1.display {
    max-width: min(900px, calc(100% - 280px)) !important;
  }

  .hero-inner > .kicker.reveal {
    max-width: calc(100% - 280px) !important;
  }
}

/* Sehr breite Desktops: Headline darf wieder bis 70% reichen */
@media (min-width: 1400px) {
  .hero-inner > .display,
  .hero-inner > h1.display {
    max-width: 1000px !important;
  }
}

/* Mobile/Tablet: Stamps normal im Fluss (kein absolute) */
@media (max-width: 900px) {
  .hero-inner > .eigenbau-stamp,
  .hero-inner > .eigenbau-stamp--mini {
    position: static !important;
    display: inline-block !important;
    margin: 0 8px 16px 0 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.19 · LEGAL-SECTION · Datenschutz + AGB im Dark Theme
   Stylt die Template-Inhalte (h2, h3, p, ul, b, ol)
   ═══════════════════════════════════════════════════════════════════ */

.legal-section {
  padding: clamp(40px, 6vh, 72px) 0 clamp(80px, 12vh, 128px);
}

/* Trust-Banner oben */
.legal-trust {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  background: linear-gradient(160deg, rgba(184,232,52,0.07), rgba(10,13,11,0.4));
  border: 1px solid rgba(184, 232, 52, 0.25);
  border-radius: 12px;
  margin-bottom: 40px;
}
.legal-trust-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 232, 52, 0.13);
  border: 1px solid rgba(184, 232, 52, 0.35);
  border-radius: 10px;
  color: var(--lime);
}
.legal-trust p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(237, 234, 221, 0.85);
}

/* Content-Wrapper */
.legal-content {
  color: rgba(237, 234, 221, 0.86);
  font-size: 15px;
  line-height: 1.75;
}

.legal-content h2 {
  font-family: var(--display, 'Anton', 'Impact', sans-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--cream);
  margin: 48px 0 18px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(184, 232, 52, 0.18);
  padding-bottom: 12px;
  -webkit-font-smoothing: antialiased;
}
.legal-content h2:first-child {
  margin-top: 8px;
}

.legal-content h3 {
  font-family: var(--body, 'Inter', sans-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--lime);
  margin: 32px 0 12px;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
}

.legal-content p {
  margin: 0 0 16px;
  line-height: 1.75;
}

.legal-content b,
.legal-content strong {
  color: var(--cream);
  font-weight: 700;
}

.legal-content ul,
.legal-content ol {
  margin: 12px 0 18px;
  padding-left: 24px;
}
.legal-content li {
  margin-bottom: 8px;
  line-height: 1.65;
}
.legal-content ul li::marker {
  color: var(--lime);
}
.legal-content ol li::marker {
  color: var(--orange);
  font-weight: 700;
}

.legal-content a {
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 232, 52, 0.35);
  transition: color 0.25s, border-color 0.25s;
}
.legal-content a:hover {
  color: var(--cream);
  border-color: var(--cream);
}

/* Inline-Untergliederungen wie "1.1" "1.2" -> Highlight */
.legal-content p > b:first-child {
  display: inline-block;
  min-width: 36px;
  color: var(--orange);
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 13px;
  margin-right: 8px;
}

/* Quelle-Block am Ende */
.legal-source {
  margin-top: 56px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--lime);
  border-radius: 4px;
  font-size: 13px;
  color: rgba(237, 234, 221, 0.6);
  line-height: 1.6;
}
.legal-source strong {
  color: rgba(237, 234, 221, 0.85);
}

/* Cookie-Link unten */
.legal-cookie-link {
  margin-top: 32px;
  text-align: center;
}

/* CTA bei AGB */
.legal-cta {
  margin-top: 48px;
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(160deg, rgba(255,138,31,0.06), rgba(10,13,11,0.4));
  border: 1px solid rgba(255, 138, 31, 0.22);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Inhaltsverzeichnis bei AGB */
.legal-content > h2 + h3,
.legal-content > h2:has(+ h3) {
  border-bottom: none;
  padding-bottom: 0;
}

/* Mobile-Anpassung */
@media (max-width: 760px) {
  .legal-content {
    font-size: 14.5px;
  }
  .legal-content h2 {
    font-size: 20px;
    margin: 36px 0 14px;
  }
  .legal-content h3 {
    font-size: 16px;
    margin: 24px 0 10px;
  }
  .legal-trust {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.20 · PROMINENTER IT-RECHT-KANZLEI TRUST-BLOCK
   Optisch hochwertig, dark theme, mit Hover-Effekt
   ═══════════════════════════════════════════════════════════════════ */

.legal-kanzlei-badge {
  margin: 56px 0 32px;
}

.legal-kanzlei-link {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 28px 32px;
  background: linear-gradient(165deg,
    rgba(184, 232, 52, 0.08) 0%,
    rgba(10, 13, 11, 0.6) 50%,
    rgba(255, 138, 31, 0.06) 100%);
  border: 1.5px solid rgba(184, 232, 52, 0.32);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s,
    box-shadow 0.3s;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(184, 232, 52, 0.06);
}

.legal-kanzlei-link::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent,
    var(--lime),
    var(--orange),
    transparent);
  opacity: 0.65;
}

.legal-kanzlei-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right,
    rgba(184, 232, 52, 0.15),
    transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.legal-kanzlei-link:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 232, 52, 0.6);
  box-shadow:
    0 18px 48px rgba(184, 232, 52, 0.18),
    0 0 0 1.5px rgba(184, 232, 52, 0.45),
    inset 0 1px 0 rgba(184, 232, 52, 0.12);
}
.legal-kanzlei-link:hover::after { opacity: 1; }

.legal-kanzlei-shield {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
    rgba(184, 232, 52, 0.2),
    rgba(184, 232, 52, 0.08));
  border: 1.5px solid rgba(184, 232, 52, 0.5);
  border-radius: 16px;
  color: var(--lime);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow:
    0 4px 16px rgba(184, 232, 52, 0.2),
    inset 0 1px 0 rgba(184, 232, 52, 0.15);
}
.legal-kanzlei-shield svg {
  filter: drop-shadow(0 0 8px rgba(184, 232, 52, 0.4));
}

.legal-kanzlei-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.legal-kanzlei-label {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 4px;
  -webkit-font-smoothing: antialiased;
}

.legal-kanzlei-title {
  display: block;
  font-family: var(--body, 'Inter', sans-serif);
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 8px;
  -webkit-font-smoothing: antialiased;
}

.legal-kanzlei-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(237, 234, 221, 0.78);
  margin: 0 0 14px;
}
.legal-kanzlei-text strong {
  color: var(--cream);
  font-weight: 700;
}

.legal-kanzlei-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(237, 234, 221, 0.12);
  font-size: 12px;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  letter-spacing: 0.4px;
}

.legal-kanzlei-stand {
  color: rgba(237, 234, 221, 0.55);
}

.legal-kanzlei-arrow {
  color: var(--lime);
  font-weight: 700;
  transition: transform 0.3s, color 0.3s;
}

.legal-kanzlei-link:hover .legal-kanzlei-arrow {
  transform: translateX(4px);
  color: var(--cream);
}

/* Mobile-Anpassung */
@media (max-width: 640px) {
  .legal-kanzlei-link {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 20px 26px;
    text-align: left;
  }
  .legal-kanzlei-shield {
    width: 56px;
    height: 56px;
  }
  .legal-kanzlei-shield svg {
    width: 36px;
    height: 36px;
  }
  .legal-kanzlei-title {
    font-size: 18px;
  }
  .legal-kanzlei-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* Accessibility: Focus-Visible */
.legal-kanzlei-link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.21 · HERO-HINTERGRUND auf neue Brand-Bilder umstellen
   Anleitung: lade hero-bg-neu.jpg (Web) und hero-bg-mobile-neu.jpg
   (Mobile) in den bilder/-Ordner hoch — der Rest greift automatisch.
   ═══════════════════════════════════════════════════════════════════ */

/* DESKTOP / TABLET (>= 761px) */
@media (min-width: 761px) {
  .hero {
    background:
      linear-gradient(
        90deg,
        rgba(10, 13, 11, 0.92) 0%,
        rgba(10, 13, 11, 0.78) 28%,
        rgba(10, 13, 11, 0.42) 55%,
        rgba(10, 13, 11, 0.18) 80%,
        rgba(10, 13, 11, 0.5) 100%
      ),
      url('bilder/hero-bg-neu.jpg') center / cover no-repeat,
      url('bilder/hero-bg.jpg') center / cover no-repeat,  /* Fallback wenn neu fehlt */
      var(--bg) !important;
  }
}

/* MOBILE (<= 760px) */
@media (max-width: 760px) {
  .hero {
    background:
      linear-gradient(
        180deg,
        rgba(10, 13, 11, 0.94) 0%,
        rgba(10, 13, 11, 0.86) 28%,
        rgba(10, 13, 11, 0.65) 55%,
        rgba(10, 13, 11, 0.88) 82%,
        rgba(10, 13, 11, 0.96) 100%
      ),
      url('bilder/hero-bg-mobile-neu.jpg') center / cover no-repeat,
      url('bilder/hero-bg-mobile.jpg') center / cover no-repeat,  /* Fallback */
      var(--bg) !important;
  }
}

/* WebP-Optimierung: wenn Browser WebP kann, lädt er die kleinere Version */
@supports (background-image: url('test.webp')) {
  @media (min-width: 761px) {
    .hero {
      background:
        linear-gradient(
          90deg,
          rgba(10, 13, 11, 0.92) 0%,
          rgba(10, 13, 11, 0.78) 28%,
          rgba(10, 13, 11, 0.42) 55%,
          rgba(10, 13, 11, 0.18) 80%,
          rgba(10, 13, 11, 0.5) 100%
        ),
        image-set(
          url('bilder/hero-bg-neu.webp') type('image/webp'),
          url('bilder/hero-bg-neu.jpg') type('image/jpeg')
        ),
        var(--bg) !important;
    }
  }
  @media (max-width: 760px) {
    .hero {
      background:
        linear-gradient(
          180deg,
          rgba(10, 13, 11, 0.94) 0%,
          rgba(10, 13, 11, 0.86) 28%,
          rgba(10, 13, 11, 0.65) 55%,
          rgba(10, 13, 11, 0.88) 82%,
          rgba(10, 13, 11, 0.96) 100%
        ),
        image-set(
          url('bilder/hero-bg-mobile-neu.webp') type('image/webp'),
          url('bilder/hero-bg-mobile-neu.jpg') type('image/jpeg')
        ),
        var(--bg) !important;
    }
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.22 · HERO KOMPAKTER — Text auf einen Blick sichtbar
   Behebt: Headline füllt 4+ Viewports, Lede unsichtbar ohne Scrollen
   ═══════════════════════════════════════════════════════════════════ */

/* Hero-Padding reduzieren */
.hero {
  padding: clamp(48px, 7vh, 84px) 0 clamp(36px, 6vh, 64px) !important;
  min-height: auto !important;
}

/* Headline DEUTLICH kleiner machen + alles in einen Container */
.hero .display,
.hero h1.display {
  font-size: clamp(1.9rem, 4.2vw, 3.4rem) !important;
  line-height: 1.05 !important;
  letter-spacing: 0.3px !important;
  margin: 14px 0 18px !important;
  max-width: 100% !important;
}

/* Line-Spans innerhalb der Headline: kein erzwungener Block-Umbruch mehr */
.hero h1.display .line {
  display: inline !important;  /* statt block — Text fließt */
}

/* Aber EIN Break zwischen den beiden Lines erhalten — via <br>-like Spacing */
.hero h1.display .line + .line::before {
  content: "" !important;
  display: block !important;
  height: 0.15em !important;  /* minimaler vertikaler Trenner */
}

/* Auf Desktop: 2 Zeilen statt 5+ */
@media (min-width: 901px) {
  .hero h1.display {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem) !important;
    max-width: calc(100% - 280px) !important;  /* Platz für Stamps rechts */
    line-height: 1.08 !important;
  }
}

/* Kicker etwas kleiner + näher an der Headline */
.hero .kicker {
  font-size: 0.78rem !important;
  padding: 7px 14px !important;
  margin-bottom: 0 !important;
}

/* Lede näher an Headline */
.hero .hero-slogan-clean,
.hero .lede {
  font-size: clamp(0.98rem, 1.5vw, 1.18rem) !important;
  line-height: 1.55 !important;
  margin: 16px 0 22px !important;
  max-width: 58ch !important;
}

/* Ready-Now-Indikator kompakter */
.hero .ready-now-indicator {
  padding: 10px 16px !important;
  margin: 0 0 18px !important;
  font-size: 13px !important;
}

/* Stats-Strip kompakter */
.hero .hero-stats {
  padding: 14px 20px !important;
  margin: 14px 0 20px !important;
  gap: 18px !important;
}

/* CTA-Buttons kompakter */
.hero .hero-cta,
.hero .hero-cta-block {
  margin-top: 8px !important;
  gap: 12px !important;
}

/* Mobile: noch kompakter */
@media (max-width: 760px) {
  .hero {
    padding: 32px 0 28px !important;
  }
  .hero h1.display {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
    line-height: 1.1 !important;
    margin: 12px 0 14px !important;
  }
  .hero .hero-slogan-clean,
  .hero .lede {
    font-size: 0.95rem !important;
    margin: 12px 0 16px !important;
  }
  .hero .ready-now-indicator {
    font-size: 12px !important;
    padding: 8px 12px !important;
    margin-bottom: 12px !important;
  }
  /* Stamps auf Mobile noch kleiner */
  .hero-inner > .eigenbau-stamp {
    transform: rotate(-5deg) scale(0.85) !important;
    margin: 0 4px 12px 0 !important;
  }
  .hero-inner > .eigenbau-stamp--mini {
    transform: rotate(-3deg) scale(0.78) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SONNENAUFGANG-HERO-BG (warmes Orange → Lime → Dunkel)
   Greift auf hero-bg-neu.jpg/.webp wenn vorhanden, sonst alte Fallbacks
   ═══════════════════════════════════════════════════════════════════ */

@media (min-width: 761px) {
  .hero {
    background:
      linear-gradient(
        100deg,
        rgba(10, 13, 11, 0.88) 0%,
        rgba(10, 13, 11, 0.72) 25%,
        rgba(10, 13, 11, 0.35) 55%,
        rgba(255, 138, 31, 0.08) 80%,  /* warmer Orange-Glow rechts (Sonnenaufgang) */
        rgba(10, 13, 11, 0.45) 100%
      ),
      url('bilder/hero-bg-neu.jpg') center / cover no-repeat,
      url('bilder/hero-bg.jpg') center / cover no-repeat,
      var(--bg) !important;
  }
}
@media (max-width: 760px) {
  .hero {
    background:
      linear-gradient(
        180deg,
        rgba(10, 13, 11, 0.92) 0%,
        rgba(10, 13, 11, 0.82) 25%,
        rgba(255, 138, 31, 0.12) 50%,  /* Sonnenaufgang-Akzent in der Mitte */
        rgba(10, 13, 11, 0.88) 78%,
        rgba(10, 13, 11, 0.96) 100%
      ),
      url('bilder/hero-bg-mobile-neu.jpg') center / cover no-repeat,
      url('bilder/hero-bg-mobile.jpg') center / cover no-repeat,
      var(--bg) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.23 · MOBILE FIX-PAKET
   Behebt: Hässliche Silbentrennungen, Kicker abgeschnitten,
   Empfehlung-Badge überdeckt Text, CRM-Overflow, Chatbot-Position
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 760px) {

  /* ─── 1. HYPHENATION nur an sinnvollen Stellen ─── */
  /* hyphenate-limit-chars: min 8 Zeichen davor, 4 vor & 4 nach
     verhindert Trennungen wie "Sechzig" oder "Sparte" */
  body, p, .lede, .legal-content,
  .gain-protect-usp-text,
  .gain-protect-text,
  .protect-pill p,
  .bg-sparte-card p,
  .ki-tel-feature p,
  .saving-cell {
    -webkit-hyphens: auto !important;
    hyphens: auto !important;
    -webkit-hyphenate-limit-before: 4 !important;
    -webkit-hyphenate-limit-after: 4 !important;
    -webkit-hyphenate-limit-chars: 8 4 4 !important;
    hyphenate-limit-chars: 8 4 4 !important;
    -webkit-hyphenate-limit-lines: 2 !important;
    hyphenate-limit-lines: 2 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  /* Eigennamen, Produkt-Bezeichnungen, Marken NIEMALS trennen */
  .logo, .footer-logo,
  .foot-brand a,
  .foot-brand span,
  strong.lime, strong.orange,
  .display, .hero-title, h1, h2, h3,
  .usp-title, .ki-tel-cta-card h2,
  .gain-protect-usp-headline,
  .compare-col-tag, .lizenz-paket-badge,
  .stamp-tag, .stamp-line-big {
    -webkit-hyphens: none !important;
    hyphens: none !important;
    word-break: keep-all !important;
  }

  /* ─── 2. FOOTER-LOGO „DreiHundertSechzig" bricht nicht ─── */
  .foot-brand a.logo,
  footer .logo {
    white-space: nowrap !important;
    overflow: visible !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .foot-brand .logo span,
  footer .logo span {
    white-space: nowrap !important;
    font-size: clamp(1rem, 4.2vw, 1.25rem) !important;
  }

  /* ─── 3. KI-TELEFON-KICKER „NEU IM ANGEBOT · PILOTAKTION LÄUFT" ─── */
  .ki-tel-index-kicker,
  .pilot-banner-kicker {
    white-space: normal !important;
    text-align: center !important;
    max-width: 92% !important;
    margin: 0 auto 8px !important;
    line-height: 1.4 !important;
    padding: 8px 14px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.1em !important;
  }

  /* ─── 4. ABSCHNITT-KICKER UNIVERSELL Mobile-tauglich ─── */
  .kicker {
    white-space: normal !important;
    text-align: center !important;
    max-width: 92% !important;
    line-height: 1.4 !important;
    font-size: 0.7rem !important;
    padding: 7px 14px !important;
    letter-spacing: 0.1em !important;
  }

  /* ─── 5. EMPFEHLUNG-BADGE oben in der Karte statt überlappend ─── */
  .lizenz-paket-badge,
  .paket-badge {
    position: absolute !important;
    top: -14px !important;
    right: 16px !important;
    left: auto !important;
    transform: none !important;
    z-index: 5 !important;
    padding: 6px 14px !important;
    font-size: 10.5px !important;
    letter-spacing: 1.3px !important;
    white-space: nowrap !important;
    background: linear-gradient(135deg, var(--lime), #95C218) !important;
    color: var(--bg) !important;
    border-radius: 100px !important;
    box-shadow: 0 4px 12px rgba(184, 232, 52, 0.45) !important;
  }
  .lizenz-paket,
  .paket-card {
    position: relative !important;
    margin-top: 24px !important;
    overflow: visible !important;
  }
  /* Headline der Paket-Karte hat genug Abstand */
  .lizenz-paket-title,
  .paket-title {
    padding-top: 8px !important;
    margin-right: 110px !important;  /* Platz für Badge rechts */
  }

  /* ─── 6. CRM-HIGHLIGHT-CARD Overflow weg ─── */
  .crm-highlight-card,
  .ki-tel-index-card,
  .index-highlight-card,
  section .wrap > div[class*="highlight"] {
    max-width: calc(100vw - 32px) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    word-wrap: break-word !important;
  }
  .crm-highlight-card *,
  .ki-tel-index-card *,
  .index-highlight-card * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Container-Padding pragmatisch */
  .crm-highlight-card,
  .ki-tel-index-card {
    padding: 24px 18px !important;
  }
  .crm-highlight-card p,
  .ki-tel-index-card p,
  .ki-tel-index-text {
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    hyphens: auto !important;
  }

  /* ─── 7. CHATBOT-AVATAR ÜBER der Mobile-CTA-Leiste ─── */
  .chatbot-toggle,
  #chatbot-toggle,
  .chatbot-bubble,
  [class*="chatbot"][class*="toggle"],
  [id*="chatbot"][class*="trigger"] {
    bottom: 88px !important;   /* CTA-Leiste ~64px + 24px Abstand */
    right: 16px !important;
    z-index: 99 !important;
  }

  /* ─── 8. MOBILE-CTA-LEISTE auf JEDER Seite sichtbar ─── */
  .mobile-sticky-cta,
  .mobile-cta-bar,
  .bottom-cta-bar {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
    padding-bottom: env(safe-area-inset-bottom, 0) !important;
  }

  /* ─── 9. KOMPAKTE TEXT-BLÖCKE in Boxen ─── */
  .protect-pill p,
  .bg-sparte-card p,
  .gain-protect-usp-text {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  /* ─── 10. BG-Sparten-Liste „Deine Sparte nicht dabei?" ─── */
  .bg-sparte-other,
  .bg-sparte-other p {
    -webkit-hyphenate-limit-chars: 12 5 5 !important;
    hyphenate-limit-chars: 12 5 5 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   GLOBAL: Eigennamen schützen (auch Desktop)
   ═══════════════════════════════════════════════════════════════════ */
.foot-brand .logo,
.foot-brand .logo span,
.logo-text,
header .logo span,
nav .logo span {
  white-space: nowrap !important;
  hyphens: none !important;
}

/* Spezielle Worte die NIE trennen */
.no-break,
.brand-name {
  white-space: nowrap !important;
  hyphens: none !important;
  word-break: keep-all !important;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.24 · KEVIN-FEEDBACK-PAKET — Burger zurück, Pfeile fix, BG sauber
   ═══════════════════════════════════════════════════════════════════ */

/* ─── 1. BURGER-MENÜ wieder aktivieren auf Mobile ─── */
@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 1000 !important;
    position: relative !important;
  }
  
  /* Nav-Links: Mobile → Off-Canvas-Menü */
  .nav-links {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    flex-direction: column !important;
    background: rgba(10, 13, 11, 0.98) !important;
    padding: 24px 24px 32px !important;
    gap: 4px !important;
    transform: translateY(-120%) !important;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
    border-bottom: 1px solid rgba(184, 232, 52, 0.2) !important;
    max-height: calc(100vh - 70px) !important;
    overflow-y: auto !important;
  }
  
  .nav.is-open .nav-links,
  .nav.open .nav-links,
  .nav[data-open="true"] .nav-links {
    transform: translateY(0) !important;
  }
  
  .nav-links li,
  .nav-links a {
    width: 100% !important;
  }
  .nav-links a {
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    font-size: 16px !important;
  }
  
  /* Burger-Animation auf Open */
  .nav.is-open .nav-toggle span,
  .nav.open .nav-toggle span,
  .nav[data-open="true"] .nav-toggle span {
    background: transparent !important;
  }
  .nav.is-open .nav-toggle span::before,
  .nav.open .nav-toggle span::before,
  .nav[data-open="true"] .nav-toggle span::before {
    transform: translateY(7px) rotate(45deg) !important;
  }
  .nav.is-open .nav-toggle span::after,
  .nav.open .nav-toggle span::after,
  .nav[data-open="true"] .nav-toggle span::after {
    transform: translateY(-7px) rotate(-45deg) !important;
  }
}

/* ─── 2. MOBILE-CTA-LEISTE entfernen (verdeckt Chatbot, Kevin will sie nicht) ─── */
.mobile-cta-bar,
#mobileCtaBar {
  display: none !important;
}

/* Chatbot wieder normal positioniert (CTA-Leiste ist weg) */
@media (max-width: 760px) {
  .chatbot-toggle,
  #chatbot-toggle,
  .chatbot-bubble,
  [class*="chatbot"][class*="toggle"],
  [id*="chatbot"][class*="trigger"] {
    bottom: 24px !important;
    right: 16px !important;
  }
}

/* ─── 3. PFEILE NACH UNTEN (Process-Steps) sauber ─── */
.process-arrow,
.process-step-arrow,
.step-arrow-down,
.timeline-arrow,
[class*="arrow-down"],
[class*="-arrow"]:not(.btn-arrow):not(.legal-kanzlei-arrow) {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  margin: 12px auto !important;
  position: relative !important;
  z-index: 2 !important;
}
/* Pfeil als sauberes SVG via ::before (nicht mehr unscharf) */
.process-arrow::before,
.process-step-arrow::before,
.step-arrow-down::before {
  content: "" !important;
  width: 20px !important;
  height: 20px !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8E834' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M12 5v14M5 12l7 7 7-7'/></svg>") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  animation: arrow-bounce-soft 2s ease-in-out infinite !important;
  filter: drop-shadow(0 0 8px rgba(184, 232, 52, 0.4)) !important;
}
@keyframes arrow-bounce-soft {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50%      { transform: translateY(4px); opacity: 1; }
}

/* Fallback: jedes ↓-Symbol das als Text steht — schöner rendern */
.process-grid .arrow-text,
.process-step .arrow-text {
  display: inline-flex !important;
  width: 36px !important;
  height: 36px !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;  /* alten Text-Pfeil verstecken */
  position: relative !important;
}
.process-grid .arrow-text::after,
.process-step .arrow-text::after {
  content: "↓" !important;
  font-size: 22px !important;
  color: var(--lime) !important;
  font-family: var(--body) !important;
  font-weight: 800 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: 0 0 12px rgba(184, 232, 52, 0.5) !important;
  animation: arrow-bounce-soft 2s ease-in-out infinite !important;
}

/* ─── 4. BG-SPARTEN-KARTEN: Headlines NIEMALS trennen ─── */
.bg-sparte-card h3,
.bg-sparte-card .bg-sparte-title,
.bg-sparte-name {
  -webkit-hyphens: none !important;
  hyphens: none !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
  text-wrap: balance !important;
  line-height: 1.2 !important;
  font-size: clamp(1.15rem, 2.6vw, 1.45rem) !important;
}
/* Mobile: Headline-Wörter wie „Lebensmittel-Handwerk" als Komposita behalten */
@media (max-width: 760px) {
  .bg-sparte-card h3,
  .bg-sparte-card .bg-sparte-title,
  .bg-sparte-name {
    font-size: 1.05rem !important;
    line-height: 1.25 !important;
    word-spacing: 0 !important;
  }
}

/* ─── 5. „Deine Sparte nicht dabei?" Block — Bauelementhersteller etc. sauber ─── */
.bg-sparte-other,
.bg-sparte-other p,
.bg-sparte-fallback,
.sparte-other-block {
  text-align: left !important;
  padding: 18px 20px !important;
  max-width: calc(100vw - 40px) !important;
  box-sizing: border-box !important;
  margin-left: 0 !important;
}
.bg-sparte-other p {
  font-size: 14.5px !important;
  line-height: 1.6 !important;
  -webkit-hyphenate-limit-chars: 14 6 6 !important;
  hyphenate-limit-chars: 14 6 6 !important;
}

@media (max-width: 760px) {
  /* Block links bündig, etwas mehr Atem */
  .bg-sparte-other,
  .bg-sparte-fallback {
    margin: 24px 0 16px !important;
    padding: 20px 18px !important;
    border-radius: 12px !important;
  }
  /* CTA-Link am Ende des Blocks abheben */
  .bg-sparte-other a,
  .bg-sparte-fallback a {
    display: inline-block !important;
    margin-top: 10px !important;
    font-weight: 700 !important;
    color: var(--orange) !important;
    border-bottom: 1px dashed var(--orange) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.25 · FINAL FIXES — Burger forced, Headlines balanced, Link auf Zeile
   ═══════════════════════════════════════════════════════════════════ */

/* ─── 1. BURGER-MENÜ DAUERHAFT SICHTBAR auf Mobile (höchste Spezifizität) ─── */
@media (max-width: 880px) {
  nav.nav#nav button.nav-toggle,
  nav.nav button.nav-toggle,
  .nav .nav-toggle,
  button.nav-toggle#navToggle,
  #navToggle {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 44px !important;
    height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: 1px solid rgba(184, 232, 52, 0.25) !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 1001 !important;
    position: relative !important;
    margin-left: auto !important;
  }
  
  /* Hover/Aktiv-Zustand für Feedback */
  #navToggle:hover,
  .nav-toggle:hover {
    background: rgba(184, 232, 52, 0.08) !important;
    border-color: rgba(184, 232, 52, 0.45) !important;
  }
  
  /* Striche innen sauber */
  #navToggle span,
  .nav-toggle span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: var(--cream) !important;
    position: relative !important;
    transition: background 0.2s !important;
  }
  #navToggle span::before,
  #navToggle span::after,
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    width: 20px !important;
    height: 2px !important;
    background: var(--cream) !important;
    transition: transform 0.25s ease !important;
  }
  #navToggle span::before { top: -7px !important; }
  #navToggle span::after  { top: 7px !important; }
  
  /* Nav-Inner Flexbox damit Burger rechts landet */
  .nav .nav-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
  }
}

/* Desktop: Burger AUS, normales Menü */
@media (min-width: 881px) {
  .nav-toggle,
  #navToggle {
    display: none !important;
  }
}

/* ─── 2. ALLE SECTION-HEADLINES Site-weit sauber wie der Rest ─── */
/* Problem: „DREI WEGE, DASSELBE ZIEL — UNTERSCHIEDLICHE RECHNUNG"
   bricht in 4 Zeilen, weil text-wrap nicht balanced. */
.section-head h2,
.section-head .display,
section h2.display {
  text-wrap: balance !important;
  max-width: 28ch !important;  /* knapper begrenzen — zwingt Browser zu sauberen Umbrüchen */
  line-height: 1.05 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  hyphens: none !important;
  word-break: keep-all !important;
}

@media (max-width: 760px) {
  .section-head h2,
  .section-head .display,
  section h2.display {
    max-width: 22ch !important;  /* Mobile noch enger */
    font-size: clamp(1.6rem, 6.5vw, 2.3rem) !important;
    line-height: 1.1 !important;
    letter-spacing: 0.3px !important;
  }
}

/* Kicker: bricht jetzt schon auf Mobile, aber sollte SAUBER brechen */
@media (max-width: 760px) {
  .section-head .kicker,
  .kicker {
    max-width: 88% !important;
    margin: 0 auto 16px !important;
    text-align: center !important;
    line-height: 1.4 !important;
    -webkit-hyphens: none !important;
    hyphens: none !important;
    word-break: keep-all !important;
  }
  /* Bauch-/Gefühl darf nicht brechen */
  .kicker {
    overflow-wrap: normal !important;
  }
}

/* ─── 3. FORTKNOX-DEEPLINK auf eigener Zeile, prominenter Button-Style ─── */
.fortknox-deeplink {
  display: inline-block !important;
  margin-top: 4px !important;
  padding: 10px 18px !important;
  background: rgba(184, 232, 52, 0.1) !important;
  border: 1px solid rgba(184, 232, 52, 0.35) !important;
  border-radius: 100px !important;
  color: var(--lime) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  font-size: 14.5px !important;
  letter-spacing: 0.2px !important;
  transition: background 0.25s, border-color 0.25s, transform 0.25s !important;
  white-space: nowrap !important;
  hyphens: none !important;
  word-break: keep-all !important;
}
.fortknox-deeplink:hover {
  background: rgba(184, 232, 52, 0.18) !important;
  border-color: rgba(184, 232, 52, 0.65) !important;
  transform: translateY(-2px) !important;
}

/* Mobile-spezifisch: ganz klar als eigenes Element */
@media (max-width: 760px) {
  .fortknox-deeplink {
    display: inline-block !important;
    margin: 8px auto 0 !important;
    text-align: center !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.26 · FOOTER-BRAND-BLOCK auf Mobile linksbündig zum Rest
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 760px) {
  /* Footer-Grid: foot-brand spannt über volle Breite */
  .foot-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Brand-Block geht über ganze Breite, kein Einrücken */
  .foot-brand {
    grid-column: 1 / -1 !important;  /* volle Breite */
    padding: 0 !important;
    margin: 0 0 8px !important;
    text-align: left !important;
  }
  
  /* Brand-Logo bündig links */
  .foot-brand .logo,
  .foot-brand a.logo {
    margin-left: 0 !important;
    padding-left: 0 !important;
    justify-content: flex-start !important;
  }
  
  /* Brand-Text bündig links — kein 36ch max-width auf Mobile */
  .foot-brand p {
    max-width: 100% !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-align: left !important;
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
  }
}

/* Sehr schmale Geräte: noch enger an den Rand */
@media (max-width: 480px) {
  .foot-brand,
  .foot-brand p,
  .foot-brand .logo {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  
  /* Footer-Container nicht überkomprimieren */
  footer .wrap,
  .footer-wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.27 · FOOTER BRAND-BLOCK perfekt bündig (Mobile + Desktop)
   Behebt: padding-left:38px Hack, der Text neben Logo-Icon schob
   ═══════════════════════════════════════════════════════════════════ */

/* GLOBAL: kein padding-left mehr auf foot-brand p */
.foot-brand p {
  padding-left: 0 !important;
  margin-left: 0 !important;
  max-width: 100% !important;
}

@media (max-width: 760px) {
  /* Logo (Icon + Schriftzug) linksbündig */
  .foot-brand .logo,
  .foot-brand a.logo {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
    justify-content: flex-start !important;
  }
  
  /* Icon kein margin/padding */
  .foot-brand .logo-mark,
  .foot-brand img {
    margin: 0 !important;
    flex-shrink: 0 !important;
  }
  
  /* Schriftzug "DreiHundertSechzig" auf gleicher Linie wie Brand-Text */
  .foot-brand .logo span,
  .foot-brand a.logo span {
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
  }
  
  /* Brand-Text DIREKT linksbündig — KEIN padding-left mehr */
  .foot-brand p {
    padding-left: 0 !important;
    margin: 14px 0 0 !important;
    text-align: left !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
    /* Hyphens komplett ausschalten — sauber umbrechen */
    -webkit-hyphens: none !important;
    hyphens: none !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    text-wrap: pretty !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER-CLAIM TEXT — sauber umbrechen, keine Trennstriche, weder Web noch Mobil
   ═══════════════════════════════════════════════════════════════════ */
.foot-brand p,
footer .foot-brand p {
  -webkit-hyphens: none !important;
  hyphens: none !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  text-wrap: pretty !important;  /* moderner Browser: schöne Umbruch-Optimierung */
}

/* Spezifische Wörter die nie brechen sollen */
.foot-brand p strong,
.foot-brand p em,
.foot-brand .logo span,
.foot-brand .logo em {
  white-space: nowrap !important;
}

/* Desktop: Brand-Block max-width 36ch bleibt (lesbar) */
@media (min-width: 761px) {
  .foot-brand p {
    max-width: 36ch !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.28 · PAKET-FEATURES sauber strukturiert (Mobile + Desktop)
   Behebt: Kreuz-und-Quer-Layout, Häkchen-Misalignment, Strong-Split
   ═══════════════════════════════════════════════════════════════════ */

/* GLOBAL: Liste als Block (kein Flex mit 2-Spalten-Effekt) */
.paket-features,
.lizenz-paket-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px 0 !important;
  display: block !important;  /* kein grid/flex auf der UL */
}

/* Einzelnes List-Item: Häkchen links, Text rechts — sauber als Grid */
.paket-features li,
.lizenz-paket-features li {
  display: grid !important;
  grid-template-columns: 22px 1fr !important;
  column-gap: 12px !important;
  row-gap: 0 !important;
  align-items: start !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  color: rgba(237, 234, 221, 0.85) !important;
  position: static !important;  /* override absolute pseudo */
  padding-left: 0 !important;   /* override !important */
}
.paket-features li:last-child,
.lizenz-paket-features li:last-child {
  border-bottom: none !important;
}

/* Häkchen-Kreis: Spalte 1 des Grids — perfekt aligned mit erster Text-Zeile */
.paket-features li::before,
.lizenz-paket-features li::before {
  content: "✓" !important;
  position: static !important;  /* nicht mehr absolute */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
  background: rgba(184, 232, 52, 0.15) !important;
  color: var(--lime) !important;
  border-radius: 50% !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;  /* optisch mittig zur ersten Text-Zeile */
}

/* WICHTIG: <strong>Begriff</strong> + folgender Text in EINEM Block — KEIN visueller 2-Spalten-Split */
.paket-features li strong,
.lizenz-paket-features li strong {
  display: inline !important;  /* nicht block */
  color: var(--cream) !important;
  font-weight: 700 !important;
  margin-right: 4px !important;  /* nur kleiner Atem nach strong */
  word-spacing: normal !important;
}

/* Mobile: Häkchen kleiner, Text kompakter — aber gleiches Layout-Prinzip */
@media (max-width: 760px) {
  .paket-features li,
  .lizenz-paket-features li {
    grid-template-columns: 20px 1fr !important;
    column-gap: 10px !important;
    padding: 9px 0 !important;
    font-size: 0.91rem !important;
    line-height: 1.5 !important;
  }
  .paket-features li::before,
  .lizenz-paket-features li::before {
    width: 20px !important;
    height: 20px !important;
    font-size: 11.5px !important;
    margin-top: 0 !important;
  }
  /* Mobile: NIEMALS Trennung wegen langer Wörter — sauber umbrechen an Wortgrenzen */
  .paket-features li,
  .lizenz-paket-features li {
    -webkit-hyphens: none !important;
    hyphens: none !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    text-wrap: pretty !important;
  }
  /* Sehr lange Begriffe (KI-Telefonassistent, BG-Compliance-Module) sollen brechen aber als Komposita */
  .paket-features li strong,
  .lizenz-paket-features li strong {
    -webkit-hyphens: none !important;
    hyphens: none !important;
    word-break: break-word !important;
  }
}

/* Hover-Effekt behalten (sauber) */
.paket-features li:hover,
.lizenz-paket-features li:hover {
  color: var(--cream) !important;
}
.paket-features li:hover::before,
.lizenz-paket-features li:hover::before {
  background: var(--lime) !important;
  color: var(--bg) !important;
  transform: scale(1.1) !important;
  box-shadow: 0 0 12px rgba(184, 232, 52, 0.5) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.29 · KI-TELEFON IM HAUPTMENÜ prominent + NEU-Badge
   ═══════════════════════════════════════════════════════════════════ */

/* Highlight-Link mit Lime-Pulse-Dot + NEU-Badge */
.nav-link-highlight {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  position: relative !important;
  color: var(--lime) !important;
  font-weight: 700 !important;
  transition: color 0.25s, transform 0.25s !important;
}
.nav-link-highlight:hover {
  color: var(--cream) !important;
  transform: translateY(-1px) !important;
}

/* Pulse-Dot — sanftes Lime-Pulsieren */
.nav-link-pulse {
  display: inline-block !important;
  width: 8px !important;
  height: 8px !important;
  background: var(--lime) !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  position: relative !important;
  box-shadow: 0 0 8px rgba(184, 232, 52, 0.7) !important;
  animation: nav-pulse-glow 2.4s ease-in-out infinite !important;
}
@keyframes nav-pulse-glow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(184, 232, 52, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 14px rgba(184, 232, 52, 0.9);
    transform: scale(1.15);
  }
}

/* NEU-Badge in Pill-Form */
.nav-link-badge {
  display: inline-flex !important;
  align-items: center !important;
  padding: 2px 7px !important;
  font-size: 9.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  background: var(--orange) !important;
  color: var(--bg) !important;
  border-radius: 100px !important;
  font-family: var(--body, 'Inter', sans-serif) !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 8px rgba(255, 138, 31, 0.4) !important;
}

/* Mobile: Highlight bleibt prominent, aber kompakter */
@media (max-width: 880px) {
  .nav-link-highlight {
    padding: 14px 0 !important;
    font-size: 16px !important;
  }
  .nav-link-pulse {
    width: 9px !important;
    height: 9px !important;
  }
  .nav-link-badge {
    font-size: 10px !important;
    padding: 2px 8px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.29 · PILOT-BANNER (KI-TEL-INDEX-HIGHLIGHT) Kicker SAUBER
   Problem: Mikrofon-Emoji + Text + Pulse-Dot kollidieren
   ═══════════════════════════════════════════════════════════════════ */

.ki-tel-index-kicker {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 9px 18px !important;
  background: rgba(255, 138, 31, 0.12) !important;
  border: 1px solid rgba(255, 138, 31, 0.45) !important;
  border-radius: 100px !important;
  color: var(--orange) !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  letter-spacing: 1.4px !important;
  text-transform: uppercase !important;
  font-family: var(--body, 'Inter', sans-serif) !important;
  -webkit-font-smoothing: antialiased !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  white-space: nowrap !important;
  max-width: 100% !important;
}

/* Pulse-Dot innerhalb des Kickers */
.ki-tel-index-pulse {
  display: inline-block !important;
  width: 7px !important;
  height: 7px !important;
  background: var(--orange) !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 8px rgba(255, 138, 31, 0.8) !important;
  animation: ki-pulse-glow 2.4s ease-in-out infinite !important;
}
@keyframes ki-pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 6px rgba(255, 138, 31, 0.5);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 14px rgba(255, 138, 31, 0.9);
    transform: scale(1.2);
  }
}

/* Mobile: Kicker darf wrappen aber Mikrofon kommt mit */
@media (max-width: 760px) {
  .ki-tel-index-kicker {
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.4 !important;
    padding: 8px 14px !important;
    font-size: 11px !important;
    letter-spacing: 1.2px !important;
    max-width: 92% !important;
    margin: 0 auto !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.30 · HERO-STATS modernes SaaS-Strip-Design
   Komplett-Neugestaltung: keine Kreise mehr, sondern eleganter Strip
   ═══════════════════════════════════════════════════════════════════ */

.hero-stats {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  margin: 28px 0 32px !important;
  max-width: 720px !important;
  background: linear-gradient(135deg,
    rgba(255, 138, 31, 0.06) 0%,
    rgba(10, 13, 11, 0.5) 50%,
    rgba(184, 232, 52, 0.04) 100%) !important;
  border: 1px solid rgba(255, 138, 31, 0.3) !important;
  border-radius: 16px !important;
  padding: 20px 8px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 138, 31, 0.08) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* Top-Strip — Orange→Lime Gradient als visueller Anker */
.hero-stats::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg,
    transparent,
    var(--orange),
    var(--lime),
    transparent) !important;
  opacity: 0.7 !important;
}

/* Einzelne Stat-Cells — KEINE Boxen mehr, KEINE Kreise! */
.hero-stat,
.hero-stat-pulse {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 8px 12px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  border-right: 1px solid rgba(255, 138, 31, 0.18) !important;
  box-shadow: none !important;
  position: relative !important;
  transition: transform 0.3s ease !important;
}
.hero-stat:last-child,
.hero-stat-pulse:last-child {
  border-right: none !important;
}

.hero-stat::before,
.hero-stat-pulse::before {
  display: none !important;  /* alte Glow-Pseudo aus */
}

.hero-stat:hover,
.hero-stat-pulse:hover {
  transform: translateY(-2px) !important;
  background: transparent !important;
}

/* Stat-Zahl — groß, scharf, Orange */
.hero-stat-num {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 2px !important;
  font-family: var(--display, 'Anton', sans-serif) !important;
  font-size: clamp(1.7rem, 4vw, 2.4rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px !important;
  color: var(--orange) !important;
  line-height: 1 !important;
  margin-bottom: 6px !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: 0 0 18px rgba(255, 138, 31, 0.35) !important;
  -webkit-font-smoothing: antialiased !important;
}

.hero-stat-num .lt {
  font-size: 0.7em !important;
  margin-right: 1px !important;
  color: var(--orange) !important;
  opacity: 0.85 !important;
}

/* Stat-Label — sauber unterhalb */
.hero-stat-label {
  display: block !important;
  font-family: var(--body, 'Inter', sans-serif) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  color: rgba(237, 234, 221, 0.85) !important;
  letter-spacing: 0.2px !important;
  -webkit-font-smoothing: antialiased !important;
  max-width: 18ch !important;
  -webkit-hyphens: none !important;
  hyphens: none !important;
  word-break: keep-all !important;
}

/* Mobile: kompakter, aber GLEICHES Strip-Layout (KEINE Kreise!) */
@media (max-width: 760px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    padding: 16px 4px !important;
    margin: 20px 0 24px !important;
    border-radius: 14px !important;
  }
  
  .hero-stat,
  .hero-stat-pulse {
    padding: 4px 6px !important;
    /* Klare Trennlinie zwischen den 3 Stats */
    border-right: 1px solid rgba(255, 138, 31, 0.2) !important;
  }
  .hero-stat:last-child,
  .hero-stat-pulse:last-child {
    border-right: none !important;
  }
  
  .hero-stat-num {
    font-size: clamp(1.4rem, 7vw, 1.85rem) !important;
    margin-bottom: 4px !important;
    letter-spacing: 0.3px !important;
  }
  
  .hero-stat-label {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
    max-width: 100% !important;
    padding: 0 2px !important;
  }
}

/* Sehr schmal: Strip behält Layout, aber sehr eng */
@media (max-width: 380px) {
  .hero-stats {
    padding: 14px 2px !important;
  }
  .hero-stat-num {
    font-size: 1.3rem !important;
  }
  .hero-stat-label {
    font-size: 0.65rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.31 · HERO-STATS RADIKAL-REDESIGN — kein Kreis bleibt am Leben
   ALLE Pseudo-Elements gekillt, höchste Spezifizität
   ═══════════════════════════════════════════════════════════════════ */

/* KILL alle Kreise + Hintergründe vom Original-CSS */
.hero .hero-stats .hero-stat,
.hero .hero-stats .hero-stat-pulse,
.hero-inner .hero-stats .hero-stat,
.hero-inner .hero-stats .hero-stat-pulse,
div.hero-stats > div.hero-stat,
div.hero-stats > div.hero-stat-pulse {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0 !important;
  border: none !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  padding: 8px 14px !important;
  margin: 0 !important;
  aspect-ratio: auto !important;
}

/* KILL alle Pseudo-Elemente die Kreise zeichnen könnten */
.hero .hero-stats .hero-stat::before,
.hero .hero-stats .hero-stat::after,
.hero .hero-stats .hero-stat-pulse::before,
.hero .hero-stats .hero-stat-pulse::after,
div.hero-stats > div::before,
div.hero-stats > div::after {
  display: none !important;
  content: none !important;
  background: none !important;
  border: none !important;
}

/* Container: cleaner Strip mit Glassmorphism */
.hero .hero-stats,
.hero-inner .hero-stats,
div.hero-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  align-items: stretch !important;
  margin: 28px 0 32px !important;
  max-width: 720px !important;
  padding: 18px 6px !important;
  background: linear-gradient(135deg,
    rgba(255, 138, 31, 0.07) 0%,
    rgba(10, 13, 11, 0.55) 50%,
    rgba(184, 232, 52, 0.05) 100%) !important;
  border: 1px solid rgba(255, 138, 31, 0.32) !important;
  border-radius: 18px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 138, 31, 0.1) !important;
  backdrop-filter: blur(12px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(140%) !important;
}

/* Top Gradient-Strip wieder herstellen (über ::before des Containers, NICHT der Stats) */
.hero .hero-stats::before,
.hero-inner .hero-stats::before,
div.hero-stats::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg,
    transparent,
    var(--orange) 30%,
    var(--lime) 70%,
    transparent) !important;
  opacity: 0.7 !important;
  border: none !important;
  border-radius: 0 !important;
}

/* Einzelne Stat-Cells: Flex-Column zentriert */
.hero .hero-stats .hero-stat,
.hero-inner .hero-stats .hero-stat,
div.hero-stats > div.hero-stat,
div.hero-stats > div.hero-stat-pulse {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  border-right: 1px solid rgba(255, 138, 31, 0.18) !important;
  transition: transform 0.3s ease !important;
}
.hero .hero-stats .hero-stat:last-child,
div.hero-stats > div:last-child {
  border-right: none !important;
}
.hero .hero-stats .hero-stat:hover {
  transform: translateY(-2px) !important;
}

/* Zahl: Anton groß scharf Orange */
.hero .hero-stats .hero-stat-num,
.hero-inner .hero-stats .hero-stat-num,
.hero-stats .hero-stat-num {
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 1px !important;
  font-family: var(--display, 'Anton', 'Impact', sans-serif) !important;
  font-size: clamp(1.55rem, 3.5vw, 2.1rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.4px !important;
  color: var(--orange) !important;
  line-height: 1 !important;
  margin: 0 0 6px 0 !important;
  padding: 0 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: 0 0 16px rgba(255, 138, 31, 0.35) !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: optimizeLegibility !important;
  background: none !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
}

.hero-stat-num .lt {
  font-size: 0.65em !important;
  margin-right: 0 !important;
  opacity: 0.85 !important;
  color: var(--orange) !important;
}

/* Label: kompakt unter der Zahl */
.hero .hero-stats .hero-stat-label,
.hero-inner .hero-stats .hero-stat-label,
.hero-stats .hero-stat-label {
  display: block !important;
  font-family: var(--body, 'Inter', sans-serif) !important;
  font-size: 0.74rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.2px !important;
  color: rgba(237, 234, 221, 0.85) !important;
  -webkit-font-smoothing: antialiased !important;
  -webkit-text-stroke: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: 18ch !important;
  -webkit-hyphens: none !important;
  hyphens: none !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  text-wrap: balance !important;
}

/* Mobile-Anpassung — KEINE Kreise, gleiches Strip-Layout, nur kleiner */
@media (max-width: 760px) {
  .hero .hero-stats,
  .hero-inner .hero-stats,
  div.hero-stats {
    padding: 14px 4px !important;
    margin: 18px 0 22px !important;
    border-radius: 14px !important;
  }
  .hero .hero-stats .hero-stat,
  div.hero-stats > div.hero-stat,
  div.hero-stats > div.hero-stat-pulse {
    padding: 4px 6px !important;
  }
  .hero .hero-stats .hero-stat-num,
  .hero-stats .hero-stat-num {
    font-size: clamp(1.25rem, 6.5vw, 1.65rem) !important;
    margin-bottom: 4px !important;
  }
  .hero .hero-stats .hero-stat-label,
  .hero-stats .hero-stat-label {
    font-size: 0.66rem !important;
    line-height: 1.3 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 380px) {
  .hero .hero-stats {
    padding: 12px 2px !important;
  }
  .hero-stat-num {
    font-size: 1.2rem !important;
  }
  .hero-stat-label {
    font-size: 0.62rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.32 · PROCESS-STEP-PFEILE komplett neu — modern + responsive
   Hässlicher Box-Container weg, sauberer Pfeil mit Glow
   ═══════════════════════════════════════════════════════════════════ */

/* KILL alle alten Pfeil-Styles (Box-Container weg) */
.process-step.process-step-arrow {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

/* SVG sauber stylen statt Container */
.process-step.process-step-arrow svg {
  width: 32px !important;
  height: 32px !important;
  color: var(--lime) !important;
  stroke: var(--lime) !important;
  stroke-width: 2.2 !important;
  fill: none !important;
  filter: drop-shadow(0 0 8px rgba(184, 232, 52, 0.45)) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  animation: process-arrow-pulse 2.4s ease-in-out infinite !important;
  transition: transform 0.3s ease !important;
}

@keyframes process-arrow-pulse {
  0%, 100% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* ─── DESKTOP: Horizontal-Pfeile (Steps nebeneinander) ─── */
@media (min-width: 901px) {
  .process-grid {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr auto 1fr !important;
    gap: 16px !important;
    align-items: stretch !important;
  }
  .process-step.process-step-arrow {
    align-self: center !important;
    min-height: 44px !important;
  }
  /* SVG zeigt nach rechts (default) */
  .process-step.process-step-arrow svg {
    transform: rotate(0deg) !important;
  }
}

/* ─── TABLET/MOBILE: Vertikal-Pfeile (Steps untereinander) ─── */
@media (max-width: 900px) {
  .process-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch !important;
  }
  
  /* Pfeil-Container kompakter, zentriert */
  .process-step.process-step-arrow {
    width: 100% !important;
    min-height: 36px !important;
    padding: 4px 0 !important;
  }
  
  /* SVG nach UNTEN rotieren */
  .process-step.process-step-arrow svg {
    width: 28px !important;
    height: 28px !important;
    transform: rotate(90deg) !important;  /* Rechts → Unten */
    stroke-width: 2.5 !important;
  }
  
  /* Bounce-Animation für vertikale Pfeile */
  .process-step.process-step-arrow svg {
    animation: process-arrow-bounce-down 2s ease-in-out infinite !important;
  }
}

/* Vertikale Bounce-Animation (für Mobile) */
@keyframes process-arrow-bounce-down {
  0%, 100% {
    transform: rotate(90deg) translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: rotate(90deg) translateX(5px);  /* dank rotate: 5px nach UNTEN */
    opacity: 1;
  }
}

/* Hover-Effekt für Desktop */
@media (min-width: 901px) {
  .process-grid:hover .process-step.process-step-arrow svg {
    animation-play-state: paused !important;
    transform: scale(1.15) !important;
    filter: drop-shadow(0 0 14px rgba(184, 232, 52, 0.7)) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.32 · „SO LÄUFT DAS AB..." Headline + Process-Steps Mobile-Fix
   ═══════════════════════════════════════════════════════════════════ */

.process-headline {
  font-family: var(--display, 'Anton', sans-serif) !important;
  font-size: clamp(1.4rem, 2.8vw, 1.85rem) !important;
  line-height: 1.2 !important;
  letter-spacing: 0.3px !important;
  text-align: center !important;
  margin: 32px auto 28px !important;
  max-width: 38ch !important;
  -webkit-hyphens: none !important;
  hyphens: none !important;
  word-break: keep-all !important;
  text-wrap: balance !important;
  color: var(--cream) !important;
  -webkit-text-stroke: 0 !important;
  -webkit-font-smoothing: antialiased !important;
}

@media (max-width: 760px) {
  .process-headline {
    font-size: 1.3rem !important;
    line-height: 1.25 !important;
    margin: 24px auto 20px !important;
    padding: 0 12px !important;
    max-width: 28ch !important;
  }
  
  /* Process-Steps auf Mobile: cleaner Box-Look */
  .process-step:not(.process-step-arrow) {
    padding: 22px 18px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(184, 232, 52, 0.18) !important;
    background: linear-gradient(160deg,
      rgba(184, 232, 52, 0.04),
      rgba(10, 13, 11, 0.5)) !important;
  }
  
  .process-step-num {
    font-size: clamp(1.8rem, 5vw, 2.4rem) !important;
    color: var(--lime) !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: 0 0 16px rgba(184, 232, 52, 0.35) !important;
    margin-bottom: 8px !important;
    display: block !important;
  }
  
  .process-step-title {
    font-family: var(--display, 'Anton', sans-serif) !important;
    font-size: 1.15rem !important;
    letter-spacing: 0.4px !important;
    color: var(--cream) !important;
    margin-bottom: 6px !important;
    -webkit-text-stroke: 0 !important;
    -webkit-font-smoothing: antialiased !important;
  }
  
  .process-step-time {
    font-family: var(--mono, 'JetBrains Mono', monospace) !important;
    font-size: 0.78rem !important;
    color: var(--orange) !important;
    letter-spacing: 0.3px !important;
    margin-bottom: 10px !important;
    -webkit-hyphens: none !important;
    hyphens: none !important;
  }
  
  .process-step-text {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    color: rgba(237, 234, 221, 0.85) !important;
    -webkit-hyphens: none !important;
    hyphens: none !important;
    word-break: keep-all !important;
    text-wrap: pretty !important;
  }
  
  /* Process-CTA-Row auf Mobile stapeln */
  .process-cta-row {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
    text-align: center !important;
    margin-top: 24px !important;
  }
  .process-cta-hint {
    font-size: 0.8rem !important;
    text-align: center !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.33 · BRUTAL-FIX für 3 Probleme
   1. Paket-Features Mobile Katastrophe → komplett neu
   2. Process-Arrows Mobile zeigen falsch → größer, nach unten, pulsieren
   3. „<2 Wochen" Stat → „<" eigene Zeile → fixe ich
   ═══════════════════════════════════════════════════════════════════ */

/* ─── 1. PAKET-FEATURES MOBILE — radikal überschreiben ─── */
.paket .paket-features,
.paket-features,
.lizenz-paket .lizenz-paket-features,
.lizenz-paket-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
  display: block !important;
}

/* Ein <li> als KOMPLETTER Block, nicht als 2-Spalten-Flex */
.paket .paket-features li,
.paket-features li,
.lizenz-paket .lizenz-paket-features li,
.lizenz-paket-features li {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 12px 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
  color: rgba(237, 234, 221, 0.85) !important;
  position: static !important;
  padding-left: 0 !important;
  /* WICHTIG: KEINE Spalten — alles fließt inline */
  width: 100% !important;
  box-sizing: border-box !important;
  /* Hyphens komplett aus */
  -webkit-hyphens: none !important;
  hyphens: none !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

/* Häkchen-Kreis: feste Größe, nie wachsen */
.paket .paket-features li::before,
.paket-features li::before,
.lizenz-paket .lizenz-paket-features li::before,
.lizenz-paket-features li::before {
  content: "✓" !important;
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  background: rgba(184, 232, 52, 0.15) !important;
  color: var(--lime) !important;
  border-radius: 50% !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  margin: 1px 0 0 0 !important;
  padding: 0 !important;
}

/* Text-Inhalt der <li>: muss fließen, nicht spalten */
.paket .paket-features li,
.paket-features li {
  /* Text als pseudo-block nach dem Icon */
}
.paket .paket-features li > *:not(::before),
.paket-features li > *:not(::before) {
  display: inline !important;  /* alle <strong>, <span>, <em> inline */
}

/* <strong> in der Liste: nur farblich abheben, inline bleiben */
.paket .paket-features li strong,
.paket-features li strong,
.lizenz-paket-features li strong {
  display: inline !important;
  color: var(--cream) !important;
  font-weight: 700 !important;
  margin: 0 4px 0 0 !important;
  white-space: normal !important;
  word-break: normal !important;
}

/* MOBILE: zwischen Häkchen und Text feste Breite — kein dynamic-grid */
@media (max-width: 760px) {
  .paket-features li,
  .lizenz-paket-features li {
    padding: 11px 0 !important;
    font-size: 0.91rem !important;
    line-height: 1.5 !important;
    gap: 10px !important;
  }
  .paket-features li::before,
  .lizenz-paket-features li::before {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    font-size: 11px !important;
  }
}

/* ─── 2. PROCESS-ARROWS MOBILE: größer, nach unten, deutlich ─── */
@media (max-width: 900px) {
  .process-step.process-step-arrow {
    width: 100% !important;
    min-height: 56px !important;
    padding: 8px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .process-step.process-step-arrow svg {
    width: 44px !important;
    height: 44px !important;
    color: var(--lime) !important;
    stroke: var(--lime) !important;
    stroke-width: 2.8 !important;
    fill: none !important;
    transform: rotate(90deg) !important;
    filter: drop-shadow(0 0 12px rgba(184, 232, 52, 0.65)) !important;
    animation: process-arrow-down-pulse 1.8s ease-in-out infinite !important;
  }
}

/* Pulse-Animation für nach unten zeigende Pfeile */
@keyframes process-arrow-down-pulse {
  0%, 100% {
    transform: rotate(90deg) translateX(0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: rotate(90deg) translateX(6px) scale(1.15);
    opacity: 1;
    filter: drop-shadow(0 0 18px rgba(184, 232, 52, 0.9));
  }
}

/* ─── 3. „< 2 WOCHEN" STAT — „<" auf gleiche Zeile, kein eigener Block ─── */
.hero-stat-num {
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: baseline !important;
  flex-wrap: nowrap !important;
}

.hero-stat-num .lt {
  display: inline-block !important;
  font-size: 0.7em !important;
  line-height: 1 !important;
  margin-right: 1px !important;
  color: var(--orange) !important;
  opacity: 0.9 !important;
  font-family: inherit !important;
  vertical-align: baseline !important;
  white-space: nowrap !important;
}

/* Count-up span auch nowrap */
.hero-stat-num .count-up {
  display: inline-block !important;
  white-space: nowrap !important;
  font-family: inherit !important;
}

/* Hero-Stat-Container: width für „<2 Wochen" hat genug Platz */
.hero .hero-stats .hero-stat:first-child .hero-stat-num,
.hero-stats .hero-stat:first-child .hero-stat-num {
  font-size: clamp(1.45rem, 3.2vw, 1.95rem) !important;  /* etwas kleiner damit alles in eine Zeile passt */
  letter-spacing: 0.2px !important;
}

@media (max-width: 760px) {
  .hero .hero-stats .hero-stat:first-child .hero-stat-num,
  .hero-stats .hero-stat:first-child .hero-stat-num {
    font-size: clamp(1.15rem, 5.5vw, 1.5rem) !important;
  }
}

@media (max-width: 380px) {
  .hero .hero-stats .hero-stat:first-child .hero-stat-num,
  .hero-stats .hero-stat:first-child .hero-stat-num {
    font-size: 1.05rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.33 NACHSCHLAG · Paket-Card NIEMALS break-all
   ═══════════════════════════════════════════════════════════════════ */

/* GLOBAL für die gesamte Paket-Card: keine word-break-all unter keinen Umständen */
.paket,
.paket *,
.lizenz-paket,
.lizenz-paket *,
.pakete-grid,
.pakete-grid * {
  word-break: normal !important;
  overflow-wrap: break-word !important;
  -webkit-hyphens: none !important;
  hyphens: none !important;
}

/* Paket-Card-Container: mind. 280px Inhalt damit Wörter Platz haben */
.paket,
.lizenz-paket {
  min-width: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Mobile: ganzer Card-Container nimmt verfügbare Breite */
@media (max-width: 760px) {
  .paket,
  .lizenz-paket {
    padding: 24px 20px !important;
    margin: 0 !important;
  }
  
  .pakete-grid,
  .lizenz-pakete-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 !important;
  }
  
  /* Paket-Name (PROFESSIONAL etc.) NIEMALS pro Buchstaben brechen */
  .paket .paket-name,
  .paket-name,
  .lizenz-paket-name {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    -webkit-hyphens: none !important;
    hyphens: none !important;
    white-space: normal !important;
    font-size: clamp(1.4rem, 4.5vw, 2rem) !important;
    line-height: 1.15 !important;
  }
  
  /* Paket-Tagline und alle Texte: normales Wort-Brechen */
  .paket p,
  .paket li,
  .paket .paket-tagline,
  .lizenz-paket p,
  .lizenz-paket li {
    word-break: normal !important;
    overflow-wrap: break-word !important;
    -webkit-hyphens: none !important;
    hyphens: none !important;
    text-wrap: pretty !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.34 · FUTURISTISCHER PROCESS-ARROW + PILOT-BANNER 2-zeilig
   ═══════════════════════════════════════════════════════════════════ */

/* KILL alle alten Pfeil-Animationen/Transforms */
.process-step.process-step-arrow svg,
.process-step.process-step-arrow .process-arrow-svg {
  animation: none !important;
  transform: none !important;
  filter: none !important;
}

/* ─── BASIS: futuristisches Pfeil-SVG ─── */
.process-arrow-svg {
  width: 64px !important;
  height: 32px !important;
  color: var(--lime) !important;
  stroke: var(--lime) !important;
  fill: none !important;
  overflow: visible !important;
  filter: drop-shadow(0 0 10px rgba(184, 232, 52, 0.55)) !important;
}

.process-arrow-svg .arrow-line {
  stroke-dasharray: 34 !important;
  stroke-dashoffset: 0 !important;
  animation: arrow-line-flow 1.8s ease-in-out infinite !important;
}

.process-arrow-svg .arrow-head {
  transform-origin: 36px 12px !important;
  animation: arrow-head-pulse 1.8s ease-in-out infinite !important;
}

.process-arrow-svg .arrow-tip-glow {
  animation: arrow-tip-pulse 1.8s ease-in-out infinite !important;
}

/* Line: läuft wie ein "Lade-Pulse" durch */
@keyframes arrow-line-flow {
  0% { stroke-dashoffset: 34; opacity: 0.3; }
  50% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -34; opacity: 0.3; }
}

/* Head: pulsiert mit der Line synchron */
@keyframes arrow-head-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.18); opacity: 1; }
}

/* Tip-Glow: Glowing Tip am Ende */
@keyframes arrow-tip-pulse {
  0%, 100% { 
    r: 1.5;
    opacity: 0.7;
  }
  50% { 
    r: 2.5;
    opacity: 1;
  }
}

/* ─── DESKTOP: horizontal nach rechts ─── */
@media (min-width: 901px) {
  .process-step.process-step-arrow {
    align-self: center !important;
    min-height: 44px !important;
    padding: 0 8px !important;
  }
  .process-arrow-svg {
    width: 70px !important;
    height: 36px !important;
    transform: rotate(0deg) !important;
  }
}

/* ─── MOBILE: nach UNTEN rotiert ─── */
@media (max-width: 900px) {
  .process-step.process-step-arrow {
    width: 100% !important;
    min-height: 64px !important;
    padding: 12px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .process-arrow-svg {
    width: 56px !important;
    height: 32px !important;
    transform: rotate(90deg) !important;  /* nach unten zeigend */
  }
}

/* Hover: alle Animationen schneller + heller */
.process-grid:hover .process-arrow-svg {
  filter: drop-shadow(0 0 16px rgba(184, 232, 52, 0.85)) !important;
}
.process-grid:hover .process-arrow-svg .arrow-line {
  animation-duration: 1.2s !important;
}
.process-grid:hover .process-arrow-svg .arrow-head {
  animation-duration: 1.2s !important;
}
.process-grid:hover .process-arrow-svg .arrow-tip-glow {
  animation-duration: 1.2s !important;
}

/* ═══════════════════════════════════════════════════════════════════
   PILOT-BANNER: „NEU IM ANGEBOT" über 2 Zeilen, „· LÄUFT" auf gleicher Z2
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 760px) {
  .ki-tel-index-kicker {
    /* Inline-flex damit Dot, Mic, Text in einer Reihe stehen */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    
    /* Mehr Padding gibt Atem */
    padding: 12px 22px !important;
    margin: 0 auto 14px !important;
    
    /* Erlaubt Umbruch — Browser wählt clean break */
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.4 !important;
    max-width: 88% !important;
    
    font-size: 11.5px !important;
    letter-spacing: 1.3px !important;
    
    /* Den Text-Inhalt zentriert wrappen */
    text-wrap: balance !important;
    word-spacing: 0.05em !important;
  }
  
  /* Pulse-Dot + Mic-Emoji: gemeinsam mit Text, brechen nie */
  .ki-tel-index-pulse {
    flex-shrink: 0 !important;
    align-self: center !important;
  }
}

/* Web: bleibt einzeilig wie vorher */
@media (min-width: 761px) {
  .ki-tel-index-kicker {
    white-space: nowrap !important;
    padding: 10px 20px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.35 · EIN EINFACHER PFEIL — heller, pulsiert, klar
   Mobil nach unten, Web nach rechts. Nichts mehr.
   ═══════════════════════════════════════════════════════════════════ */

/* Kill alle alten Animationen für Sub-Elemente */
.process-arrow-svg .arrow-line,
.process-arrow-svg .arrow-head,
.process-arrow-svg .arrow-tip-glow {
  animation: none !important;
  display: none !important;
}

/* DAS SVG selbst — heller, simpel, pulsiert */
.process-arrow-svg {
  width: 60px !important;
  height: 30px !important;
  color: #C9F050 !important;          /* helleres Lime als sonst */
  stroke: #C9F050 !important;
  fill: none !important;
  overflow: visible !important;
  filter: drop-shadow(0 0 14px rgba(184, 232, 52, 0.7)) !important;
  animation: arrow-simple-pulse 1.8s ease-in-out infinite !important;
  transition: filter 0.3s ease !important;
}

/* Path: keine Sub-Animation, alles auf SVG-Ebene */
.process-arrow-svg path {
  stroke-width: 2.5 !important;
}

/* DESKTOP: nach RECHTS (kein rotate) */
@media (min-width: 901px) {
  .process-arrow-svg {
    transform: rotate(0deg) !important;
  }
}

/* MOBILE: nach UNTEN (rotate 90deg) */
@media (max-width: 900px) {
  .process-arrow-svg {
    width: 56px !important;
    height: 28px !important;
    transform: rotate(90deg) !important;
  }
}

/* Single Pulse Animation — sanft, heller wird's am Peak */
@keyframes arrow-simple-pulse {
  0%, 100% {
    opacity: 0.7;
    filter: drop-shadow(0 0 8px rgba(184, 232, 52, 0.5));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 18px rgba(184, 232, 52, 0.9));
  }
}

/* Hover: heller + schneller */
.process-grid:hover .process-arrow-svg {
  animation-duration: 1.2s !important;
  color: #DEFF6A !important;
  stroke: #DEFF6A !important;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.36 · PAKET-FEATURES wirklich 2 Spalten + BG-KARTEN synchron
   ═══════════════════════════════════════════════════════════════════ */

/* ─── 1. PAKET-FEATURES: Häkchen-Spalte links | Text-Spalte rechts ─── */
/* Höchste Spezifizität gegen base style.css display:flex */
.paket .paket-features,
.lizenz-paket .lizenz-paket-features,
ul.paket-features,
ul.lizenz-paket-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
  display: block !important;
  width: 100% !important;
}

.paket .paket-features li,
.lizenz-paket .lizenz-paket-features li,
ul.paket-features > li,
ul.lizenz-paket-features > li {
  display: grid !important;
  grid-template-columns: 24px 1fr !important;
  column-gap: 14px !important;
  row-gap: 0 !important;
  align-items: start !important;
  padding: 11px 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  font-size: 0.93rem !important;
  line-height: 1.55 !important;
  color: rgba(237, 234, 221, 0.85) !important;
  width: 100% !important;
  position: static !important;
  padding-left: 0 !important;
  text-align: left !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  -webkit-hyphens: none !important;
  hyphens: none !important;
}

/* Häkchen-Kreis: feste Spalte 1 */
.paket .paket-features li::before,
.lizenz-paket .lizenz-paket-features li::before,
ul.paket-features > li::before,
ul.lizenz-paket-features > li::before {
  content: "✓" !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  background: rgba(184, 232, 52, 0.15) !important;
  color: var(--lime) !important;
  border-radius: 50% !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  margin: 1px 0 0 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

/* <strong> bleibt inline (kein 2-Spalten-Effekt zwischen strong und Text) */
.paket .paket-features li strong,
.lizenz-paket .lizenz-paket-features li strong,
ul.paket-features li strong,
ul.lizenz-paket-features li strong {
  display: inline !important;
  color: var(--cream) !important;
  font-weight: 700 !important;
  margin: 0 5px 0 0 !important;
}

/* Mobile: gleiche Logik, kompakter */
@media (max-width: 760px) {
  .paket .paket-features li,
  ul.paket-features > li,
  ul.lizenz-paket-features > li {
    grid-template-columns: 22px 1fr !important;
    column-gap: 12px !important;
    padding: 10px 0 !important;
    font-size: 0.9rem !important;
  }
  .paket .paket-features li::before,
  ul.paket-features > li::before {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    font-size: 11px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   2. BG-SPARTEN-KARTEN: alle 6 synchron, gleiches Layout, gleiche Höhe
   ═══════════════════════════════════════════════════════════════════ */

.bg-sparten-grid,
.bg-sparten-list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  align-items: stretch !important;  /* alle gleich hoch */
}

@media (max-width: 1100px) {
  .bg-sparten-grid,
  .bg-sparten-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 720px) {
  .bg-sparten-grid,
  .bg-sparten-list {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* Jede BG-Karte: Flex-Column damit Inhalt gestreckt wird */
.bg-sparte-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  background: linear-gradient(165deg,
    rgba(184, 232, 52, 0.04) 0%,
    rgba(10, 13, 11, 0.5) 100%) !important;
  border: 1px solid rgba(184, 232, 52, 0.18) !important;
  border-radius: 16px !important;
  padding: 24px 22px !important;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s !important;
  position: relative !important;
  overflow: hidden !important;
}

.bg-sparte-card:hover {
  border-color: rgba(184, 232, 52, 0.45) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 32px rgba(184, 232, 52, 0.12) !important;
}

/* HEADER der BG-Karte: Icon + Tag + Titel */
.bg-sparte-card .bg-sparte-header {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  margin-bottom: 14px !important;
}

.bg-sparte-card .bg-sparte-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(184, 232, 52, 0.12) !important;
  border: 1px solid rgba(184, 232, 52, 0.25) !important;
  border-radius: 10px !important;
  color: var(--lime) !important;
  flex-shrink: 0 !important;
}
.bg-sparte-card .bg-sparte-icon svg {
  width: 22px !important;
  height: 22px !important;
}

.bg-sparte-card .bg-sparte-titles {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.bg-sparte-card .bg-sparte-tag {
  display: inline-block !important;
  padding: 3px 9px !important;
  background: rgba(184, 232, 52, 0.18) !important;
  color: var(--lime) !important;
  border: 1px solid rgba(184, 232, 52, 0.35) !important;
  border-radius: 5px !important;
  font-family: var(--body, 'Inter', sans-serif) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  align-self: flex-start !important;
  -webkit-text-stroke: 0 !important;
  -webkit-font-smoothing: antialiased !important;
}

.bg-sparte-card h3 {
  font-family: var(--display, 'Anton', sans-serif) !important;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem) !important;
  line-height: 1.2 !important;
  letter-spacing: 0.4px !important;
  color: var(--cream) !important;
  margin: 0 !important;
  -webkit-text-stroke: 0 !important;
  -webkit-font-smoothing: antialiased !important;
  word-break: keep-all !important;
  hyphens: none !important;
}

/* Trades-Zeile */
.bg-sparte-card .bg-sparte-trades {
  font-size: 0.86rem !important;
  line-height: 1.55 !important;
  color: rgba(237, 234, 221, 0.68) !important;
  margin: 0 0 16px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid rgba(184, 232, 52, 0.1) !important;
  hyphens: none !important;
}

/* Module-Liste: Bullet-Reset + gleiche Optik */
.bg-sparte-card .bg-sparte-modules {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 18px !important;
  flex: 1 !important;  /* WICHTIG: füllt verfügbaren Platz → alle Karten gleich hoch */
}

.bg-sparte-card .bg-sparte-modules li {
  display: grid !important;
  grid-template-columns: 16px 1fr !important;
  column-gap: 10px !important;
  align-items: start !important;
  padding: 7px 0 !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  color: rgba(237, 234, 221, 0.82) !important;
  list-style: none !important;
  position: static !important;
}

.bg-sparte-card .bg-sparte-modules li::before,
.bg-sparte-card .bg-sparte-modules li::marker {
  content: "▸" !important;
  color: var(--lime) !important;
  font-size: 0.85rem !important;
  line-height: 1.5 !important;
  font-weight: 700 !important;
  display: inline-block !important;
  /* WICHTIG: position:static überschreibt die ältere absolute-Regel.
     Sonst fällt ::before aus dem Grid-Flow raus, und der Text landet in der
     16px-Bullet-Spalte → vertikaler Buchstaben-Salat. */
  position: static !important;
  left: auto !important;
  top: auto !important;
  text-align: center !important;
}

/* Use-Case-Block (Tag-Timeline) — alle gleich strukturiert */
.bg-sparte-card .bg-sparte-usecase {
  /* WICHTIG: display:block überschreibt die ältere Grid-Regel (60px 1fr),
     die das Label sonst in eine 60px-Spalte zwingt → Wort-pro-Zeile-Salat. */
  display: block !important;
  grid-template-columns: none !important;
  padding-top: 16px !important;
  border-top: 1px dashed rgba(184, 232, 52, 0.15) !important;
  margin-top: auto !important;  /* drückt sich an den unteren Rand */
}

.bg-sparte-card .bg-sparte-usecase-label {
  display: inline-block !important;
  font-family: var(--mono, 'JetBrains Mono', monospace) !important;
  font-size: 0.65rem !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
  color: var(--lime) !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  -webkit-font-smoothing: antialiased !important;
}

/* Timeline-Rows */
.bg-sparte-card .bg-sparte-timeline {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bg-sparte-card .bg-sparte-timeline-row {
  display: grid !important;
  grid-template-columns: 56px 1fr !important;
  column-gap: 12px !important;
  align-items: start !important;
  padding: 8px 0 !important;
  border-bottom: 1px dashed rgba(237, 234, 221, 0.06) !important;
}
.bg-sparte-card .bg-sparte-timeline-row:last-child {
  border-bottom: none !important;
}

.bg-sparte-card .bg-sparte-timeline-time {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--mono, 'JetBrains Mono', monospace) !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px !important;
  color: var(--orange) !important;
  background: rgba(255, 138, 31, 0.1) !important;
  border: 1px solid rgba(255, 138, 31, 0.35) !important;
  padding: 3px 7px !important;
  border-radius: 4px !important;
  height: fit-content !important;
  white-space: nowrap !important;
  width: 100% !important;
  box-sizing: border-box !important;
  -webkit-text-stroke: 0 !important;
}

.bg-sparte-card .bg-sparte-timeline-text {
  display: block !important;
  font-size: 0.82rem !important;
  line-height: 1.5 !important;
  color: rgba(237, 234, 221, 0.78) !important;
  hyphens: none !important;
  word-break: normal !important;
}

/* Mobile: kompakter aber gleiches Synchron-Layout */
@media (max-width: 720px) {
  .bg-sparte-card {
    padding: 22px 18px !important;
  }
  .bg-sparte-card h3 {
    font-size: 1.15rem !important;
  }
  .bg-sparte-card .bg-sparte-trades {
    font-size: 0.83rem !important;
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
  }
  .bg-sparte-card .bg-sparte-modules li {
    padding: 6px 0 !important;
    font-size: 0.85rem !important;
  }
  .bg-sparte-card .bg-sparte-timeline-row {
    grid-template-columns: 52px 1fr !important;
    column-gap: 10px !important;
  }
  .bg-sparte-card .bg-sparte-timeline-time {
    font-size: 10.5px !important;
    padding: 3px 6px !important;
  }
  .bg-sparte-card .bg-sparte-timeline-text {
    font-size: 0.78rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.37 · FINAL FIX (16.05.2026)
   Pakete-Features: vom Grid-Layout WEG.
   Grund: Bei <li><strong>X</strong> Text</li> blockifiziert CSS-Grid
   das <strong> zu display:block (Spec-Regel, kein Override möglich).
   Folge: Text-Node landet in der schmalen 24px-Häkchen-Spalte
   → vertikaler Buchstaben-Salat.
   Lösung: <li> als display:block mit padding-left, ::before absolute.
   ═══════════════════════════════════════════════════════════════════ */

.paket .paket-features li,
.lizenz-paket .lizenz-paket-features li,
ul.paket-features > li,
ul.lizenz-paket-features > li {
  display: block !important;
  position: relative !important;
  padding: 11px 0 11px 38px !important;
  grid-template-columns: none !important;
  column-gap: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  font-size: 0.93rem !important;
  line-height: 1.55 !important;
  color: rgba(237, 234, 221, 0.85) !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  -webkit-hyphens: none !important;
  hyphens: none !important;
}

.paket .paket-features li::before,
.lizenz-paket .lizenz-paket-features li::before,
ul.paket-features > li::before,
ul.lizenz-paket-features > li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 12px !important;
  grid-column: auto !important;
  grid-row: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  background: rgba(184, 232, 52, 0.15) !important;
  color: var(--lime) !important;
  border-radius: 50% !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* <strong> in der Liste: NICHT mehr blockifiziert, bleibt inline neben Text */
.paket .paket-features li strong,
.lizenz-paket .lizenz-paket-features li strong,
ul.paket-features > li strong,
ul.lizenz-paket-features > li strong {
  display: inline !important;
  color: var(--cream) !important;
  font-weight: 700 !important;
  margin: 0 4px 0 0 !important;
}

/* Mobile */
@media (max-width: 760px) {
  .paket .paket-features li,
  .lizenz-paket .lizenz-paket-features li,
  ul.paket-features > li,
  ul.lizenz-paket-features > li {
    padding: 10px 0 10px 34px !important;
    font-size: 0.91rem !important;
  }
  .paket .paket-features li::before,
  .lizenz-paket .lizenz-paket-features li::before,
  ul.paket-features > li::before,
  ul.lizenz-paket-features > li::before {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    font-size: 11px !important;
    top: 11px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.38 · FOOTER-BRAND identisch mit HEADER-BRAND
   Bug: Footer-Logo war wegen loading="lazy" + fade-in-img Animation
   auf opacity:0 hängen geblieben → Logo unsichtbar.
   Font-Size war auch leicht abweichend (16.38px vs 16px).
   ═══════════════════════════════════════════════════════════════════ */

/* Logo-Bild im Footer IMMER sichtbar, keine Lazy-Animation */
.foot-brand .logo-mark,
.foot-brand img.logo-mark {
  opacity: 1 !important;
  animation: none !important;
  visibility: visible !important;
}

/* Brand-Schriftzug Footer = Header (gleiche Font-Größe, gleiche Optik) */
.foot-brand .logo span,
.foot-brand a.logo span {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  color: var(--cream) !important;
}

/* "Sechzig" Italic-Lime wie im Header */
.foot-brand .logo span em,
.foot-brand a.logo span em {
  font-style: italic !important;
  color: var(--lime) !important;
  font-weight: 700 !important;
}

/* Logo-Container (Icon + Schriftzug) bündig wie Header */
.foot-brand .logo,
.foot-brand a.logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.39 · INSTA-TRUST-SECTION (Über-mich)
   Dezent, klickbar als ganzes, Brand-Farben, kein US-Embed
   ═══════════════════════════════════════════════════════════════════ */
.insta-trust-section {
  padding: clamp(40px, 6vw, 70px) 0;
}
.insta-trust {
  max-width: 720px;
  margin: 0 auto;
}
.insta-trust-link {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(184, 232, 52, 0.04) 0%, rgba(10, 13, 11, 0.5) 100%);
  border: 1px solid rgba(184, 232, 52, 0.18);
  border-radius: 14px;
  text-decoration: none;
  color: var(--cream);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.insta-trust-link:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 232, 52, 0.5);
  background: linear-gradient(135deg, rgba(184, 232, 52, 0.08) 0%, rgba(10, 13, 11, 0.55) 100%);
  box-shadow: 0 10px 28px rgba(184, 232, 52, 0.12), 0 0 0 1px rgba(184, 232, 52, 0.2);
}
.insta-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(184, 232, 52, 0.12);
  border: 1px solid rgba(184, 232, 52, 0.28);
  color: var(--lime);
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.insta-trust-link:hover .insta-trust-icon {
  background: rgba(255, 138, 31, 0.15);
  border-color: rgba(255, 138, 31, 0.4);
  color: var(--orange);
  transform: rotate(-5deg) scale(1.06);
}
.insta-trust-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.insta-trust-label {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
}
.insta-trust-handle {
  font-family: var(--display, 'Anton', sans-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--cream);
  letter-spacing: 0.3px;
  line-height: 1.1;
  margin: 2px 0;
}
.insta-trust-sub {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(237, 234, 221, 0.7);
}
.insta-trust-arrow {
  font-size: 1.6rem;
  color: var(--lime);
  font-weight: 700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.insta-trust-link:hover .insta-trust-arrow {
  transform: translateX(4px);
  color: var(--orange);
}

/* Mobile: Kompakter, Arrow weg → mehr Platz fürs Handle */
@media (max-width: 560px) {
  .insta-trust-link {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 18px 18px;
  }
  .insta-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  .insta-trust-icon svg {
    width: 24px;
    height: 24px;
  }
  /* Handle auf Mobile in Inter (schmaler als Anton), darf umbrechen */
  .insta-trust-handle {
    font-family: var(--body, 'Inter', sans-serif) !important;
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.2px !important;
    word-break: break-all;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  .insta-trust-sub {
    font-size: 0.83rem;
  }
  /* Arrow auf Mobile ausblenden — Klick-Ziel ist eh die ganze Card */
  .insta-trust-arrow {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0 !important;
    opacity: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.40 · MEIN VERSPRECHEN — eigene Hero-Sub-Box
   Statt unauffälligem Inline-Strong: prominenter Block mit Display-Header,
   moderner Tool-Liste und Vergleichs-Box als visueller Beweis
   ═══════════════════════════════════════════════════════════════════ */

.versprechen-box {
  position: relative;
  margin: 28px 0 0;
  padding: clamp(28px, 4vw, 44px) clamp(22px, 3vw, 38px);
  background: linear-gradient(160deg,
    rgba(184, 232, 52, 0.06) 0%,
    rgba(184, 232, 52, 0.02) 40%,
    rgba(10, 13, 11, 0.5) 100%);
  border: 1px solid rgba(184, 232, 52, 0.32);
  border-left: 3px solid var(--lime);
  border-radius: 18px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(184, 232, 52, 0.06),
    inset 0 1px 0 rgba(184, 232, 52, 0.08);
  overflow: hidden;
}
.versprechen-box::before {
  /* dezenter Glow von oben rechts */
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(184, 232, 52, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.versprechen-box > * {
  position: relative;
  z-index: 1;
}

/* Header-Block */
.versprechen-header {
  margin-bottom: 24px;
}
.versprechen-kicker {
  display: inline-block;
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(184, 232, 52, 0.12);
  border: 1px solid rgba(184, 232, 52, 0.32);
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  margin-bottom: 16px;
}
.versprechen-headline {
  font-family: var(--display, 'Anton', 'Impact', sans-serif);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: 0.4px;
  color: var(--cream);
  margin: 0 0 12px;
  font-weight: 400;
}
.versprechen-headline em {
  font-style: italic;
  color: var(--lime);
  font-weight: 400;
}
.versprechen-headline .brush {
  position: relative;
  display: inline;
  white-space: nowrap;
}
.versprechen-sub {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(237, 234, 221, 0.78);
  margin: 0 0 22px;
  max-width: 720px;
}

/* Tool-Liste innerhalb der Box (override) */
.versprechen-box .tool-stack-list {
  margin: 0 0 26px;
  padding: 18px 0;
  border-top: 1px dashed rgba(184, 232, 52, 0.18);
  border-bottom: 1px dashed rgba(184, 232, 52, 0.18);
}
.versprechen-box .tool-stack-item {
  font-size: 0.91rem;
  padding: 8px 0;
}
.versprechen-box .tool-stack-cost {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 138, 31, 0.92);
  white-space: nowrap;
}

/* Vergleichs-Box: Einzeltools vs. Mein System */
.versprechen-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  margin: 0 0 22px;
}
.versprechen-compare-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(10, 13, 11, 0.45);
}
.versprechen-compare-them {
  border-color: rgba(255, 138, 31, 0.28);
  background: linear-gradient(160deg, rgba(255, 138, 31, 0.05), rgba(10, 13, 11, 0.5));
}
.versprechen-compare-me {
  border-color: rgba(184, 232, 52, 0.5);
  background: linear-gradient(160deg, rgba(184, 232, 52, 0.10), rgba(10, 13, 11, 0.5));
  box-shadow: 0 8px 24px rgba(184, 232, 52, 0.1);
}
.versprechen-compare-label {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.versprechen-compare-them .versprechen-compare-label {
  color: rgba(255, 138, 31, 0.95);
}
.versprechen-compare-me .versprechen-compare-label {
  color: var(--lime);
}
.versprechen-compare-price {
  font-family: var(--display, 'Anton', sans-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: 0.3px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.versprechen-compare-unit {
  font-family: var(--body, 'Inter', sans-serif);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(237, 234, 221, 0.68);
  letter-spacing: 0;
}
.versprechen-compare-foot {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(237, 234, 221, 0.7);
  margin-top: auto;
}
.versprechen-compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display, 'Anton', sans-serif);
  font-size: 1.4rem;
  letter-spacing: 0.3px;
  color: rgba(237, 234, 221, 0.5);
  padding: 0 6px;
}

/* Closing-Statement */
.versprechen-closer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(237, 234, 221, 0.86);
  margin: 0;
  padding-top: 4px;
}

/* Mobile */
@media (max-width: 720px) {
  .versprechen-box {
    border-radius: 14px;
  }
  .versprechen-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    padding: 5px 12px;
  }
  .versprechen-compare {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .versprechen-compare-vs {
    padding: 4px 0;
    font-size: 1.1rem;
  }
  .versprechen-compare-col {
    padding: 18px 18px;
  }
  .versprechen-headline {
    font-size: clamp(1.4rem, 7vw, 1.9rem);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.41 · SEO/A11Y · Footer-Headings als H3 (statt H4) für saubere
   Heading-Hierarchie (Skip H2→H4 vermeiden).
   Optik 1:1 wie Original-H4: Inter, uppercase, muted, weight 700.
   ═══════════════════════════════════════════════════════════════════ */
footer .foot-col h3,
.foot-col h3.foot-col-h,
.foot-col > h3 {
  font-family: var(--body, 'Inter', system-ui, sans-serif) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  font-weight: 700 !important;
  margin: 0 0 14px !important;
  line-height: 1.3 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   v3.42 · BG-SPARTEN-MODULES — synchrone Y-Positionen
   Problem: 1-zeilige Items (35px) und 2-zeilige (56px) standen
   wild gemischt zwischen den Karten → Pfeile + Trennlinien sprangen
   in unterschiedlichen Y-Positionen herum.
   Fix: min-height pro Item = 2-zeilige Höhe, sodass alle 6 Karten
   pixelgenau synchron sind (1. Pfeil, 2. Pfeil, 3. Pfeil, ... auf
   gleicher Y-Achse zwischen den Karten).
   ═══════════════════════════════════════════════════════════════════ */
.bg-sparte-card .bg-sparte-modules {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.bg-sparte-card .bg-sparte-modules li {
  min-height: 56px !important;
  padding: 6px 0 !important;
  align-items: center !important;  /* Pfeil + Text vertikal mittig */
  align-content: center !important;
  display: grid !important;
  grid-template-columns: 16px 1fr !important;
  column-gap: 10px !important;
}

/* Mobile: kleinere min-height (kompaktere Darstellung) */
@media (max-width: 720px) {
  .bg-sparte-card .bg-sparte-modules li {
    min-height: 50px !important;
    padding: 5px 0 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.43 · BG-SPARTEN-TRADES — einheitliche Höhe (Karten 1:1 sync)
   Trades-Listen waren 58px (BGHM, BGN) bis 104px (BG Verkehr, BGW)
   → Module-Listen starteten auf unterschiedlichen Y-Positionen
   → Pfeile + Trennlinien zwischen Karten asymmetrisch
   Fix: min-height = 104px für alle (deckt 3-zeiligen Worst Case)
   Mobile (1-Spalten-Layout): kein Sync-Bedarf, min-height auto
   ═══════════════════════════════════════════════════════════════════ */
.bg-sparte-card .bg-sparte-trades {
  min-height: 104px !important;
}
@media (max-width: 720px) {
  .bg-sparte-card .bg-sparte-trades {
    min-height: 0 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.43b · BG-SPARTEN-Headlines synchron
   "Lebensmittel-Handwerk" (BGN) brach in 2 Zeilen um → alle anderen
   Karten verschoben sich. Fix: min-height auf h3 = 2 Zeilen.
   ═══════════════════════════════════════════════════════════════════ */
.bg-sparte-card h3 {
  min-height: 2.4em !important;
  display: flex !important;
  align-items: flex-start !important;
}
@media (max-width: 720px) {
  .bg-sparte-card h3 {
    min-height: 0 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.44 · PILOT-BANNER Mobile-Optimierung
   Problem: 3-zeiliger Text auf Mobile + großer Button = überfüllt
   Fix: Headline auf Mobile verkürzt zu "Pilot-10 · 8/10 Plätze frei"
   Button-Text "Slot sichern" → "Sichern" auf Mobile
   ═══════════════════════════════════════════════════════════════════ */

/* Default: Desktop-Variante sichtbar, Mobile-Spans versteckt */
.pilot-banner .pbh-only-desktop {
  display: inline;
}
.pilot-banner .pbh-only-mobile {
  display: none;
}

/* Mobile <560px: kompakte Variante */
@media (max-width: 560px) {
  .pilot-banner .pbh-only-desktop {
    display: none !important;
  }
  .pilot-banner .pbh-only-mobile {
    display: inline !important;
  }
  .pilot-banner-headline {
    font-size: 13px !important;
    font-weight: 600 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* Button kompakter */
  .pilot-banner-cta {
    font-size: 12px !important;
    padding: 7px 12px !important;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .pilot-banner-close {
    font-size: 16px !important;
    padding: 4px 6px !important;
    flex-shrink: 0;
  }
  .pilot-banner-inner {
    padding: 10px 14px !important;
    gap: 10px !important;
    align-items: center !important;
  }
  .pilot-banner-pulse {
    flex-shrink: 0;
  }
}

/* Sehr schmale Geräte (<380px): noch kompakter — "Plätze" weglassen */
@media (max-width: 380px) {
  .pilot-banner-cta {
    font-size: 11.5px !important;
    padding: 6px 10px !important;
  }
  .pilot-banner .pbh-tiny-hide {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.45 · PROCESS-STEPS Mobile auf 1 Spalte erzwingen
   Problem: 7 sich widersprechende .process-Regeln in style.css/patch.
   Letzte aktive Regel war "2 Spalten <760px" → auf 390px iPhone landeten
   2 Karten nebeneinander → Texte abgeschnitten ("EINSCHÄTZUN...").
   Fix: <600px = 1 Spalte, garantiert volle Breite pro Karte.
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .process {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .process::before,
  .process::after {
    display: none !important;
  }
  .process-step {
    padding: 22px 22px !important;
  }
  .process-step h3 {
    font-size: 1.1rem !important;
  }
  .process-step p {
    font-size: 0.93rem !important;
    line-height: 1.55 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   v3.46 · PFEILE SAUBER (16.05.26)
   Problem 1: PROCESS-Section (index.html) hat 2 Pfeile übereinander:
     - HTML-SVG zeigt →
     - CSS ::before mit data-URL-SVG zeigt ↓
   Problem 2: BRANCHE-Section (fuer-wen.html) zeigt "→" auch auf Mobile,
     soll aber auf Mobile ↓ zeigen.
   
   Lösung: GENAU EIN Pfeil pro Element, Richtung je Viewport differenziert.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── FIX 1: PROCESS-ARROWS (.process-step-arrow) ───────────────────── */
/* Töte das alte ::before Pseudo-Element komplett — das HTML-SVG ist der einzige Pfeil */
.process-arrow::before,
.process-step-arrow::before,
.step-arrow-down::before,
.process-step.process-step-arrow::before {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

/* HTML-SVG ist der einzige Pfeil. Desktop: zeigt rechts (default). Mobile: rotiere zu unten. */
.process-step.process-step-arrow svg,
.process-arrow-svg {
  transition: none !important;
}

/* Desktop ≥901px: Pfeil zeigt nach rechts (→) */
@media (min-width: 901px) {
  .process-step.process-step-arrow svg,
  .process-arrow-svg {
    transform: rotate(0deg) !important;
    animation: process-arrow-pulse-h 2.4s ease-in-out infinite !important;
  }
}
@keyframes process-arrow-pulse-h {
  0%, 100% { opacity: 0.75; transform: rotate(0deg) scale(1); }
  50%      { opacity: 1;    transform: rotate(0deg) scale(1.08); }
}

/* Mobile ≤900px: Pfeil zeigt nach unten (↓) */
@media (max-width: 900px) {
  .process-step.process-step-arrow svg,
  .process-arrow-svg {
    transform: rotate(90deg) !important;
    animation: process-arrow-pulse-v 2.4s ease-in-out infinite !important;
  }
}
@keyframes process-arrow-pulse-v {
  0%, 100% { opacity: 0.75; transform: rotate(90deg) scale(1); }
  50%      { opacity: 1;    transform: rotate(90deg) scale(1.08); }
}

/* ─── FIX 2: BRANCHE-ARROWS (.branche-arrow auf fuer-wen.html) ─────── */
/* Default (Desktop): HTML-Text "→" wird angezeigt — keine Änderung. */
/* Mobile ≤760px: HTML-Text verstecken, "↓" via ::before einfügen. */
@media (max-width: 760px) {
  .branche-arrow {
    /* HTML-Text "→" verstecken */
    font-size: 0 !important;
    line-height: 0 !important;
  }
  .branche-arrow::before {
    content: "↓" !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    color: var(--lime) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  /* Sicherheit: keine ::after Pfeile zusätzlich */
  .branche-arrow::after {
    display: none !important;
  }
}
