/* ============================================================================
   JP-798 — "Start Demo" button has incorrect background colour
   /de/retourenmanagement-software/ (page-id 226255) + /en/returns-management-software/
   (262889 EN carries the 226255 DE-source body class, so this rule covers both).

   The secondary "Start Demo / Demo starten" CTA is a WHITE-filled pill — the
   fill is pinned by JP-442 (`background:#fff !important`), and JP-557 later added
   the 2px Dark Blue outline (client C12) but left the white fill in place. On the
   light-sand (#eeeee7) hero + prices sections the white pill reads as an odd
   solid block.

   Per the updated button design system (Figma 1428:4304, node 1428:4362
   "Secondary / Default" = NO fill + 2px Dark Blue #0b1b45 border + Dark Blue
   text), the secondary button's fill must be TRANSPARENT. The JP-557 outline
   keeps it legible on the light-sand background.

   Beats JP-442's white `!important` via higher specificity (the extra `.no-icon`
   class) plus later alphabetical load order (jp-798 > jp-557 > jp-442). Targets
   ONLY the two "Start Demo" secondaries — the hero secondary and the single
   .is-inverted prices pill; the orange primary (.has-wawi-gradient) and the
   navy-card outlined button are untouched. Page-scoped (rule 4b).
   ============================================================================ */
body.page-id-226255:not(.home) section.hero-product-section .product-buttons-group a.product-button-group__button--with-icon.no-icon:not(.has-wawi-gradient),
body.page-id-226255 .product-button-group__button--with-icon.no-icon.is-inverted {
    background-color: transparent !important;
}
