/* ==========================================================================
   [SAFE] 01. WEBFONT
   Bindet die Faro-Schrift für Überschriften und Buttons ein.
   ========================================================================== */

@font-face {
  font-family: 'Faro';
  src: url(https://142727007.fs1.hubspotusercontent-eu1.net/hubfs/142727007/raw_assets/public/Generator%20child/fonts/FaroWeb-BoldLucky.woff) format('woff');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}


/* =========================
   [OVERRIDE] Inter lokal erzwingen
   ========================= */

html, body,
body, .body-wrapper,
p, a, span, div,
li, ul, ol,
input, textarea, select,
button, .hs-button {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

/* Überschriften + alle Kind-Elemente (z. B. HubSpot-generierte <span>-Tags) */
h1, h2, h3, h4, h5, h6,
h1 *, h2 *, h3 *, h4 *, h5 *, h6 * {
  font-family: "Faro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
}


/* ==========================================================================
   [WATCH] 02. GLOBAL RESET / BASIS
   Globale Basisregeln für Box-Model und Links.
   Achtung: Link-Regeln wirken seitenweit.
   ========================================================================== */

html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}


/* ==========================================================================
   [WATCH] 03. TYPOGRAFIE – GLOBAL
   Setzt Faro global auf alle Überschriften.
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Faro', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin: 0 0 0.5em;
}


/* ==========================================================================
   [WATCH] 04. TYPOGRAFIE – RESPONSIVE HEADING SIZES
   Breakpoint-spezifische Größen für Überschriften.
   HINWEIS: Der frühere Tippfehler 'hh1' wurde hier bewusst auf 'h1' korrigiert.
   ========================================================================== */

/* Desktop */
@media (min-width: 1200px) {
  h1 { font-size: 3.5rem; line-height: 1.1; }      /* 56px */
  h2 { font-size: 2.375rem; line-height: 1.15; }   /* 38px */
  h3 { font-size: 1.8125rem; line-height: 1.3; }   /* 29px */
  h4 { font-size: 1.375rem; line-height: 1.3; }    /* 22px */
  h5 { font-size: 1.125rem; line-height: 1.35; }   /* 18px */
  h6 { font-size: 1rem; line-height: 1.4; letter-spacing: 0.05em; text-transform: uppercase; } /* 16px */
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  h1 { font-size: clamp(2.6rem, 3.2vw, 3rem) !important; line-height: 1.2 !important; }
  h2 { font-size: clamp(1.9rem, 2.6vw, 2rem) !important; line-height: 1.25 !important; }
  h3 { font-size: clamp(1.3rem, 1.8vw, 1.4rem) !important; line-height: 1.25 !important; }
  h4 { font-size: clamp(1.15rem, 1.7vw, 1.25rem) !important; line-height: 1.35 !important; }
  h5 { font-size: clamp(0.9rem, 1.2vw, 0.95rem) !important; line-height: 1.35 !important; }
  h6 { font-size: clamp(0.9rem, 1.2vw, 0.95rem) !important; line-height: 1.45 !important; }
}

/* Mobile */
@media (max-width: 767px) {
  h1 { font-size: 2.3125rem; line-height: 1.1; }    /* 37px */
  h2 { font-size: 1.7rem; line-height: 1.15; }     /* ~27px */
  h3 { font-size: 1.4rem; line-height: 1.15; }     /* ~22px */
  h4 { font-size: 1.2rem; line-height: 1.15; }      /* ~19px */
  h5 { font-size: 1.05rem; line-height: 1.15; }    /* ~17px */
  h6 { font-size: 0.95rem; line-height: 1.1; letter-spacing: 0.05em; text-transform: uppercase; } /* ~15px */
}


/* ==========================================================================
   [WATCH] 05. BUTTON-TYPOGRAFIE – GLOBAL
   Setzt Faro global auf Buttons und Input-Buttons.
   ========================================================================== */

button,
.hs-button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  font-family: 'Faro', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 700;
}


/* ==========================================================================
   [SAFE] 06. QUOTES-MODUL
   Eigene Typografie für Quotes-Überschriften und Buttons.
   ========================================================================== */

.hs-quotes h1,
.hs-quotes h2,
.hs-quotes h3,
.hs-quotes h4,
.hs-quotes h5,
.hs-quotes h6,
.hs-quotes h1 *,
.hs-quotes h2 *,
.hs-quotes h3 *,
.hs-quotes h4 *,
.hs-quotes h5 *,
.hs-quotes h6 * {
  font-family: 'Faro', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif !important;
  color: #111111;
}

.hs-quotes .hs-button,
.hs-quotes button,
.hs-quotes input[type="submit"] {
  font-family: 'Faro', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif !important;
  font-weight: 700;
}


/* ==========================================================================
   [WATCH] 07. MOBILE RICHTEXT – TEXT LINKS
   Erzwingt linksbündige Ausrichtung innerhalb definierter RichText-Bereiche.
   Das '*' macht den Block stark überschreibend.
   ========================================================================== */

@media (max-width: 767px) {
  .mobile-left-text h6,
  .mobile-left-text h2,
  .mobile-left-text div {
    text-align: left !important;
  }

  .mobile-left-text * {
    text-align: left !important;
  }
}


/* ==========================================================================
   [SAFE] 08. PRICING-LISTE / CUSTOM BULLETS
   Eigene Bullet-Darstellung für Pricing-Listen.
   ========================================================================== */

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: #ffffff;
}

.pricing-list li::before {
  content: "•";
  color: #C9FF3D;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  margin-top: 2px;
  flex: 0 0 auto;
}

/* [WATCH] Globaler Marker-Farbton für native Listen */
ul li::marker,
ol li::marker {
  color: #d7ff38;
}


/* ==========================================================================
   [SAFE] 09. HUBSPOT-FORMS – GLOBAL MOBILE EINSPALTIG
   Macht mehrspaltige HubSpot-Formulare auf Mobil einspaltig.
   ========================================================================== */

@media (max-width: 767px) {
  .hs-form fieldset.form-columns-2 .hs-form-field,
  .hs-form fieldset.form-columns-3 .hs-form-field {
    width: 100% !important;
    float: none !important;
    display: block;
  }
}


/* ==========================================================================
   [WATCH] 10. NEWSLETTER-FORMULARE – GEZIELT AUF 2 FORM-TARGETS
   Stark an konkrete Form-Targets gebunden. Optisch stabil, aber wartungsrelevant.
   ========================================================================== */

#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 form,
#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 .hs-form,
#hs_form_target_widget_1764928256539-7491 form,
#hs_form_target_widget_1764928256539-7491 .hs-form {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 .hs-form-field,
#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 .input,
#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 .hs-input,
#hs_form_target_widget_1764928256539-7491 .hs-form-field,
#hs_form_target_widget_1764928256539-7491 .input,
#hs_form_target_widget_1764928256539-7491 .hs-input {
  margin: 0 !important;
  padding: 0 !important;
}

#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 label,
#hs_form_target_widget_1764928256539-7491 label {
  color: #D7FF3F;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px 0;
  display: inline-block;
}

#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 .hs-form-required,
#hs_form_target_widget_1764928256539-7491 .hs-form-required {
  color: #ff3b30;
  margin-left: 2px;
}

#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 input[type="email"],
#hs_form_target_widget_1764928256539-7491 input[type="email"] {
  width: 100%;
  height: 54px;
  padding: 0 !important;
  border: 1px solid #D7FF3F;
  background: transparent;
  color: #fff;
  border-radius: 2px;
  box-sizing: border-box;
  outline: none;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 input[type="email"]::placeholder,
#hs_form_target_widget_1764928256539-7491 input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 input[type="email"]:focus,
#hs_form_target_widget_1764928256539-7491 input[type="email"]:focus {
  box-shadow: 0 0 0 1px #D7FF3F;
}

#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 .hs-submit,
#hs_form_target_widget_1764928256539-7491 .hs-submit {
  margin-top: 22px !important;
  text-align: left;
  padding: 0 !important;
}

#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 input[type="submit"],
#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 button[type="submit"],
#hs_form_target_widget_1764928256539-7491 input[type="submit"],
#hs_form_target_widget_1764928256539-7491 button[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #D7FF3F !important;
  color: #000 !important;
  border: 2px solid transparent !important;
  border-radius: 999px !important;
  height: 56px !important;
  min-height: 56px !important;
  padding: 0 34px !important;
  box-sizing: border-box !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  outline: none !important;
  box-shadow: none !important;
  transform: none !important;
  position: relative !important;
  top: 0 !important;
  transition: background .2s ease, color .2s ease, border-color .2s ease !important;
}

#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 input[type="submit"]:hover,
#hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 button[type="submit"]:hover,
#hs_form_target_widget_1764928256539-7491 input[type="submit"]:hover,
#hs_form_target_widget_1764928256539-7491 button[type="submit"]:hover {
  background: #020617 !important;
  color: #D7FF3F !important;
  border: 2px solid #D7FF3F !important;
  padding: 0 34px !important;
  box-shadow: none !important;
  outline: none !important;
  transform: none !important;
  top: 0 !important;
}

/* [WATCH] Mobil: Formular visuell bündig ausrichten */
@media (max-width: 767px) {
  #hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6,
  #hs_form_target_widget_1764928256539-7491 {
    --newsletter-offset-left: 33px;
    --newsletter-offset-right: 16px;
  }

  #hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6,
  #hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 form,
  #hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 .hs-form,
  #hs_form_target_widget_1764928256539-7491,
  #hs_form_target_widget_1764928256539-7491 form,
  #hs_form_target_widget_1764928256539-7491 .hs-form {
    margin-left: calc(-1 * var(--newsletter-offset-left)) !important;
    margin-right: calc(-1 * var(--newsletter-offset-right)) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: auto !important;
    max-width: none !important;
  }

  #hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 .hs-form-field,
  #hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 .input,
  #hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 .hs-input,
  #hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 .hs-email,
  #hs_form_target_widget_1764928256539-7491 .hs-form-field,
  #hs_form_target_widget_1764928256539-7491 .input,
  #hs_form_target_widget_1764928256539-7491 .hs-input,
  #hs_form_target_widget_1764928256539-7491 .hs-email {
    margin: 0 !important;
    padding: 0 !important;
  }

  #hs_form_target_widget_1764846526943-ea8d8c73-b76d-4859-96c0-d97b9bbc39f6 input[type="email"],
  #hs_form_target_widget_1764928256539-7491 input[type="email"] {
    width: 100% !important;
  }
}


/* ==========================================================================
   [RISK] 11. HEADER / MOBILE MENU / OFFCANVAS
   Globaler Header-Bereich mit hohem Seiteneffekt-Risiko.
   Hier lag bereits ein visueller Fehler im mobilen CTA.
   ========================================================================== */

.header .header__menu-container--mobile,
.header .header__menu--mobile,
.header .header__menu--show,
.header .header__menu-submenu,
.header .header__navigation,
.header .header__menu {
  background-color: #020617 !important;
}

/* [RISK] Breite Link-/Icon-Regel für Header und Mobile-Menü */
.header .header__menu--mobile a,
.header .header__menu-link,
.header .header__menu-child-toggle,
.header .header__menu-toggle {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* [WATCH] Ausnahme für CTA-Buttons im mobilen Menü */
.header .header__menu--mobile a.button,
.header .header__menu--mobile .button,
.header .header__menu--mobile a.hs-button,
.header .header__menu--mobile .hs-button {
  color: #020617 !important;
}

/* Hover / Focus / Active für Menülinks */
.header .header__menu-link:hover,
.header .header__menu-link:focus,
.header .header__menu-item--active > .header__menu-link,
.header .header__menu-link--active-link {
  color: #d7ff38 !important;
}

/* Mobile Menü: Hover / Focus / Active */
.header .header__menu--mobile .header__menu-link:hover,
.header .header__menu--mobile .header__menu-link:focus,
.header .header__menu--mobile .header__menu-item--active > .header__menu-link {
  color: #d7ff38 !important;
}

/* Icon-Farben bei Hover / Active */
.header .header__menu-link:hover svg,
.header .header__menu-item--active svg {
  fill: #d7ff38 !important;
}

/* [WATCH] Header-Buttons: Interaktionszustände */
.header .button:hover,
.header .button:focus,
.header .button:active,
.header a.button:hover,
.header a.button:focus,
.header a.button:active {
  color: #020617 !important;
}

/* [WATCH] Falls Textfarbe an innere Elemente weitergegeben werden muss */
.header .button:hover *,
.header .button:focus *,
.header .button:active * {
  color: #020617 !important;
}


/* ==========================================================================
   [SAFE] 12. VIDEO / MEDIA
   Runde Ecken für HubSpot-Video und Entfernung der Baseline-Lücke im Hero-Bild.
   ========================================================================== */

.hs-video-widget,
.hs-video-container,
.hs-video-wrapper {
  border-radius: 25px;
  overflow: hidden;
}

.row-fluid-wrapper:first-of-type img {
  display: block;
}


/* ==========================================================================
   [SAFE] 13. COUNTDOWN-TIMER
   Bis 1024px zweispaltige Darstellung des Countdown-Moduls.
   ========================================================================== */

@media (max-width: 1024px) {
  .countdown-timer,
  .countdown-timer .countdown-timer__wrapper {
    padding-left: 0;
    padding-right: 0;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .countdown-timer__section {
    width: 100% !important;
  }
}


/* ==========================================================================
   [WATCH] 14. CALCULATOR-MODUL
   Stark auf eine konkrete Widget-Klasse zugeschnitten.
   Optisch stabil, aber bei Modulwechsel wartungsrelevant.
   ========================================================================== */

.calc-widget1772522272555 .calc__field-input {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: stretch !important;
  gap: 0 !important;
}

.calc-widget1772522272555 .calc__field-input input,
.calc-widget1772522272555 .calc__field-input select {
  width: clamp(260px, 30vw, 280px) !important;
  flex: 0 0 auto !important;
  border-top-left-radius: 999px !important;
  border-bottom-left-radius: 999px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.calc-widget1772522272555 [class*="suffix"] {
  flex: 0 0 110px !important;
  width: 110px !important;
  min-width: 110px !important;
  white-space: nowrap !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-top-right-radius: 999px !important;
  border-bottom-right-radius: 999px !important;
}

@media (max-width: 768px) {
  .calc-widget1772522272555 .calc__field-input {
    display: grid !important;
    grid-template-columns: 1fr 110px !important;
    gap: 0 !important;
    align-items: stretch !important;
    width: 100% !important;
  }

  .calc-widget1772522272555 .calc__field-input input,
  .calc-widget1772522272555 .calc__field-input select {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    border-top-left-radius: 999px !important;
    border-bottom-left-radius: 999px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .calc-widget1772522272555 .calculator-input__suffix,
  .calc-widget1772522272555 .sr-calculator__suffix,
  .calc-widget1772522272555 [class*="suffix"] {
    width: 110px !important;
    min-width: 110px !important;
    max-width: 110px !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 999px !important;
    border-bottom-right-radius: 999px !important;
  }
}


/* ==========================================================================
   [SAFE] 15. TABS-MODUL
   Farbsteuerung für inaktive, Hover- und aktive Tabs.
   ========================================================================== */

.tabs-wrapper .tabs [role="tab"] {
  background-color: #d7ff38;
  color: #000;
}

.tabs-wrapper .tabs [role="tab"]:hover {
  background-color: #b2e600;
}

.tabs-wrapper .tabs [role="tab"][aria-selected="true"] {
  background-color: #b2e600;
  color: #000;
}


/* ==========================================================================
   [WATCH] 16. TABLET – BUTTONS / CTA-GRUPPEN / CARD-GROUPS
   Breite Tablet-Regeln mit Einfluss auf viele Button- und Card-Layouts.
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1024px) {
  .btn,
  a.button,
  .hs-button {
    font-size: 14px !important;
    padding: 10px 18px !important;
    min-height: 44px !important;
    border-radius: 999px;
    line-height: 1.2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero__actions,
  .cta-group {
    gap: 16px;
  }

  .card-group {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 24px 24px !important;
  }

  .card-group .card-group__card {
    width: calc(50% - 12px) !important;
    max-width: calc(50% - 12px) !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
  }
}


/* ==========================================================================
   [SAFE] 17. TABLET – PRICING CARD GROUP
   Spezifisches Tablet-Layout für Pricing-Cards.
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1024px) {
  .pricing-card-group.card-group {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
  }

  .pricing-card-group.card-group .card-group__card,
  .pricing-card-group.card-group .card-group__card:nth-child(2n+1),
  .pricing-card-group.card-group .card-group__card:nth-child(2n+2),
  .pricing-card-group.card-group .card-group__card:nth-child(3n+1),
  .pricing-card-group.card-group .card-group__card:nth-child(3n+2),
  .pricing-card-group.card-group .card-group__card:nth-child(3n+3),
  .pricing-card-group.card-group .card-group__card:nth-child(4n+1),
  .pricing-card-group.card-group .card-group__card:nth-child(4n+2),
  .pricing-card-group.card-group .card-group__card:nth-child(4n+3),
  .pricing-card-group.card-group .card-group__card:nth-child(4n+4) {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin-right: 0 !important;
    margin-bottom: 40px !important;
    padding: 20px 22px !important;
    min-height: auto !important;
  }

  .pricing-card-group.card-group .card-group__card:nth-child(2) {
    margin-top: 40px !important;
  }

  .pricing-card-group.card-group .card-group__card:last-child {
    margin-bottom: 0 !important;
  }

  .pricing-card-group.card-group .card-group__card h2,
  .pricing-card-group.card-group .card-group__card h3 {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
  }

  .pricing-card-group.card-group .card-group__card ul {
    margin-bottom: 16px !important;
  }

  .pricing-card-group.card-group .card-group__card li {
    margin-bottom: 8px !important;
  }

  .pricing-card-group.card-group .card-group__card .price,
  .pricing-card-group.card-group .card-group__card [class*="price"] {
    margin-top: 12px !important;
    margin-bottom: 8px !important;
  }

  .pricing-card-group.card-group .card-group__card .hs-button {
    margin-top: 10px !important;
  }
}


/* ==========================================================================
   [WATCH] 18. TABLET – BUTTON-ICONS AUSBLENDEN
   Achtung: '>*:first-child' ist relativ aggressiv.
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1024px) {
  .button--primary svg,
  .button--primary i,
  .button--secondary svg,
  .button--secondary i {
    display: none !important;
  }

  .button--primary > *:first-child,
  .button--secondary > *:first-child {
    display: none !important;
  }

  .button--primary,
  .button--secondary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    white-space: nowrap !important;
  }
}


/* ==========================================================================
   [SAFE] 19. FEATURE-BEREICH
   Responsives Verhalten für Feature-Bilder und Feature-Cards.
   ========================================================================== */

@media (max-width: 1024px) {
  .feature-image-2 {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .feature-tablet-layout {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
  }

  .feature-right {
    display: contents !important;
  }

  .feature-card {
    flex: 0 0 calc(50% - 12px) !important;
    max-width: calc(50% - 12px) !important;
  }
}

@media (max-width: 767px) {
  .feature-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* ==========================================================================
   [SAFE] 20. PARALLAX-BUTTONS
   Spezifische Button-Darstellung für den Parallax-Bereich.
   ========================================================================== */

.parallax-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.parallax-buttons a.button.button--primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 18px 30px !important;
  min-height: 52px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.parallax-buttons a.button.button--primary:last-child {
  padding-left: 38px !important;
  padding-right: 38px !important;
}

.parallax-buttons a.button.button--primary .button__icon,
.parallax-buttons a.button.button--primary .hs_cos_wrapper.button__icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  line-height: 0 !important;
  flex: 0 0 auto !important;
}

.parallax-buttons a.button.button--primary .button__icon svg,
.parallax-buttons a.button.button--primary .hs_cos_wrapper.button__icon svg {
  width: 17px !important;
  height: 17px !important;
  display: block !important;
  fill: currentColor !important;
  transform: none !important;
}

@media (max-width: 768px) {
  .parallax-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .parallax-buttons a.button.button--primary {
    width: auto !important;
    max-width: none !important;
  }
}

/* Desktop: Bildformat Feature Cards */
div[id^="hs_cos_wrapper_"] .services-feature-cards__media,
div[id^="hs_cos_wrapper_"] .services-feature-cards__media--sticky {
  width: 600px !important;
  height: 452px !important;
  aspect-ratio: auto !important;
  max-height: none !important;
}

div[id^="hs_cos_wrapper_"] .services-feature-cards__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Mobile */
@media (max-width: 901px) {
  div[id^="hs_cos_wrapper_"] .services-feature-cards__media,
  div[id^="hs_cos_wrapper_"] .services-feature-cards__media--sticky,
  div[id^="hs_cos_wrapper_"] .services-feature-cards__media--mobile {
    width: 100% !important;
    max-width: 420px !important;
    height: auto !important;
    aspect-ratio: 550 / 364 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  div[id^="hs_cos_wrapper_"] .services-feature-cards__media img,
  div[id^="hs_cos_wrapper_"] .services-feature-cards__media--mobile img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

/* ==========================================================================
   [SAFE] SPLIX BLOG POST – isolated styling (NO website side effects)
   Requires: <main class="splix-blog splix-blog--post"> in blog-post.html
   ========================================================================== */

/* 1) Page background */
.body-wrapper .splix-blog--post {
  background-color: #020617;
  background-image:
    radial-gradient(900px 520px at 18% 0%, rgba(215, 255, 63, 0.10), transparent 60%),
    radial-gradient(820px 520px at 85% 10%, rgba(215, 255, 63, 0.06), transparent 58%),
    linear-gradient(180deg, #020617 0%, #050814 55%, #020617 100%);
  background-repeat: no-repeat;
  color: #ffffff;
  min-height: 100vh;
}

/* 2) Kill any white backgrounds inside the blog scope (common theme/DnD layers) */
.body-wrapper .splix-blog--post,
.body-wrapper .splix-blog--post #main-content,
.body-wrapper .splix-blog--post .container-fluid,
.body-wrapper .splix-blog--post .row-fluid-wrapper,
.body-wrapper .splix-blog--post .row-fluid,
.body-wrapper .splix-blog--post .span12,
.body-wrapper .splix-blog--post .widget-span {
  background: transparent !important;
}

/* 3) Layout helpers (keeps your global theme rules intact; no .content-wrapper sizing here) */
.body-wrapper .splix-blog--post .blog-post__column-wrapper {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

@media (max-width: 1024px) {
  .body-wrapper .splix-blog--post .blog-post__column-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Sidebar sticky on desktop */
@media (min-width: 1025px) {
  .body-wrapper .splix-blog--post .blog-post__left-sidebar {
    position: sticky;
    top: 120px;
  }
}

/* 4) “Surface card” for content sections */
.body-wrapper .splix-blog--post .blog-post-section {
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(215, 255, 63, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  padding: 34px clamp(18px, 3vw, 42px);
}

/* 5) Meta styling */
.body-wrapper .splix-blog--post .blog-post__timestamp,
.body-wrapper .splix-blog--post .blog-post__meta {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 14px;
}

.body-wrapper .splix-blog--post .reading-minutes {
  color: rgba(215, 255, 63, 0.85);
}

/* 6) Back button – use your existing button styles, only tweak spacing/alignment */
.body-wrapper .splix-blog--post .btn__back-to-posts.button {
  justify-content: flex-start;
}

/* 7) Featured image */
.body-wrapper .splix-blog--post .blog-post__featured-image {
  margin-top: 18px;
  margin-bottom: 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(215, 255, 63, 0.12);
}

.body-wrapper .splix-blog--post .blog-post__featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* 8) Body typography */
.body-wrapper .splix-blog--post .blog-post__body {
  max-width: 760px;
}

.body-wrapper .s