


@font-face {
  font-family: "Space Mono";
  src: url("/fonts/space-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("/fonts/space-mono-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Thunder";
  src: url("/fonts/Thunder-MediumLC.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Thunder";
  src: url("/fonts/Thunder-SemiBoldLC.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Thunder";
  src: url("/fonts/Thunder-BlackLC.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "Instrument Sans";
  src: url("/fonts/instrument-sans-var.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("/fonts/instrument-serif-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("/fonts/inter-tight-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


@layer reset, tokens, base, layout, components, utilities;




@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    tab-size: 2;
  }

  body,
  h1, h2, h3, h4, h5, h6,
  p, figure, blockquote, dl, dd {
    margin: 0;
  }

  ul[role="list"],
  ol[role="list"] {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

  b,
  strong {
    font-weight: 700;
  }

  img,
  picture,
  svg,
  video {
    display: block;
    max-inline-size: 100%;
    block-size: auto;
  }

  input,
  button,
  textarea,
  select {
    font: inherit;
    color: inherit;
  }

  button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  a {
    color: inherit;
    text-decoration-thickness: max(1px, 0.05em);
    text-underline-offset: 0.15em;
  }

  :target {
    scroll-margin-block-start: var(--scroll-offset, 1.5rem);   
  }
}


@layer tokens {
  :root {
    
    --ink:        oklch(0 0 0);              
    --ink-900:    oklch(0.223 0.008 275);    
    --ink-700:    oklch(0.320 0 0);          
    --ink-600:    oklch(0.440 0 0);          
    --surface:    oklch(0.860 0.003 106);    
    --surface-2:  oklch(0.967 0 0);          
    --paper:      oklch(1 0 0);              
    --line:       oklch(0.720 0 0);          
    --accent:     oklch(0.810 0.214 152);    
    --accent-ink: oklch(0 0 0);              
    --danger:     oklch(0.654 0.232 29);     

    
    --light-grey: #d1d1cf;
    --white:      #fff;
    --black:      #000;
    --transparent:#0000;
    --image-corner: 2px;
    --mh-neon:    #00e676;
    --mh-accent:  #00e676;
    --mh-black:   #000;
    --mh-bg:      #d1d1cf;
    --mh-bg-light:#f4f4f4;
    --mh-gray:    #f4f4f4;
    --mh-fail:    #ff3b30;
    
    --mh-border:  #000;
    --mh-fg:      #000;
    --mh-inv:     #fff;
    --mh-soft:    rgba(0, 0, 0, 0.05);
    --mh-gap-sm:  1rem;

    
    --color-bg:            var(--surface);
    --color-surface:       var(--surface-2);
    --color-text:          var(--ink);
    --color-text-muted:    var(--ink-600);
    --color-inverse-bg:    var(--ink);
    --color-inverse-text:  var(--paper);
    --color-border:        var(--ink);
    --color-line:          var(--line);
    --color-cta:           var(--accent);
    --color-cta-text:      var(--accent-ink);
    --color-danger:        var(--danger);
    
    --overlay-soft:        color-mix(in oklab, var(--ink) 5%, transparent);
    --overlay-veil:        color-mix(in oklab, var(--ink) 85%, transparent);
    --accent-wash:         color-mix(in oklab, var(--accent) 8%, transparent);

    
    --font-body:    "Space Mono", ui-monospace, "SFMono-Regular", "Menlo", monospace;
    --font-display: "Thunder", "Arial Narrow", system-ui, sans-serif;

    
    --fs-2xs:     clamp(0.70rem, 0.68rem + 0.10vw, 0.75rem);
    --fs-xs:      clamp(0.80rem, 0.78rem + 0.10vw, 0.85rem);
    --fs-sm:      0.90rem;
    --fs-base:    1rem;
    --fs-md:      clamp(1.125rem, 1.09rem + 0.18vw, 1.20rem);
    --fs-lg:      clamp(1.50rem, 1.35rem + 0.75vw, 2rem);
    --fs-xl:      clamp(2rem, 1.78rem + 1.10vw, 2.50rem);
    --fs-2xl:     clamp(2.40rem, 2.05rem + 1.75vw, 3rem);
    --fs-3xl:     clamp(3rem, 2.30rem + 3.50vw, 5rem);
    --fs-display: clamp(3.50rem, 1.80rem + 8.50vw, 9rem);

    --lh-tight:   1.1;
    --lh-snug:    1.3;
    --lh-normal:  1.5;
    --tracking-wide:   0.05em;
    --tracking-normal: 0;

    
    --sp-3xs: 0.25rem;   
    --sp-2xs: 0.5rem;    
    --sp-xs:  0.75rem;   
    --sp-sm:  1rem;      
    --sp-md:  1.5rem;    
    --sp-lg:  2rem;      
    --sp-xl:  2.5rem;    
    --sp-2xl: 3.75rem;   
    --sp-3xl: 5rem;      
    --sp-4xl: clamp(5rem, 3rem + 8vw, 10rem);  

    
    --m-fs-h1:      2rem;       
    --m-fs-h1-xs:   1.875rem;   
    --m-fs-h2:      1.5rem;     
    --m-fs-h3:      1.25rem;    
    --m-fs-eyebrow: 0.8125rem;  
    --m-fs-lead:    1.0625rem;  
    --m-sect-pad:   2.75rem;    
    --m-gap-card:   0.75rem;    
    --m-gap-block:  1.5rem;     
    --m-tap:        2.75rem;    

    --section-y: clamp(2rem, 6vw, 5rem);
    --gutter:    clamp(1rem, 6vw, 3rem);

    
    --container:         80rem;   
    --container-content: 64rem;   
    --container-narrow:  48rem;   

    
    --radius-xs:   2px;    
    --radius-sm:   4px;
    --radius-md:   12px;
    --radius-lg:   24px;
    --radius-full: 9999px;

    
    --border:      1px solid var(--color-border);
    --border-hair: 0.5px solid var(--color-border);

    
    --shadow-hard-sm:  5px 5px 0 color-mix(in oklab, var(--ink) 10%, transparent);
    --shadow-hard:     10px 10px 0 color-mix(in oklab, var(--ink) 20%, transparent);
    --shadow-hard-ink: 10px 10px 0 var(--ink);
    --shadow-modal:    0 20px 60px color-mix(in oklab, var(--ink) 50%, transparent);

    
    --z-base:     0;
    --z-raised:   2;
    --z-sticky:   100;
    --z-dropdown: 200;
    --z-overlay:  1000;
    --z-top:      9999;

    
    --dur-fast: 0.2s;
    --dur-mid:  0.4s;
    --dur-slow: 0.6s;
    --ease-standard: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-pop:      cubic-bezier(0.175, 0.885, 0.32, 1.275);

    
    --scroll-offset: 1.5rem;   
    --focus-ring: 0 0 0 2px var(--color-bg), 0 0 0 4px var(--ink);
  }
}


@layer base {
  html {
    scroll-behavior: smooth;
    scroll-padding-block-start: var(--scroll-offset);
  }

  body {
    margin: 0;
    min-block-size: 100dvh;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: var(--lh-normal);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: var(--lh-tight);
    text-transform: uppercase;
    letter-spacing: var(--tracking-normal);
    text-wrap: balance;
  }

  h1 { font-size: var(--fs-display); }
  h2 { font-size: var(--fs-3xl); }
  h3 { font-size: var(--fs-2xl); }
  h4 { font-size: var(--fs-xl); }
  h5 { font-size: var(--fs-lg); }
  h6 { font-size: var(--fs-md); }

  p { text-wrap: pretty; }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible,
  [tabindex]:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: var(--radius-xs);
  }

  ::selection {
    background-color: var(--accent);
    color: var(--accent-ink);
  }

  :where(:disabled) {
    cursor: not-allowed;
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;   
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
}


@layer utilities {
  
  .visually-hidden {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  
  .skip-link {
    position: absolute;
    inset-block-start: var(--sp-2xs);
    inset-inline-start: var(--sp-2xs);
    z-index: var(--z-top);
    padding: var(--sp-2xs) var(--sp-sm);
    background-color: var(--ink);
    color: var(--paper);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    transform: translateY(-150%);
    transition: transform var(--dur-fast) var(--ease-standard);
  }
  .skip-link:focus {
    transform: translateY(0);
  }

  
  .wrap {
    --wrap-pad: 6%;
    
    margin-inline: max(var(--wrap-pad), (100% - var(--container)) / 2);
  }
  .wrap--content { --container: var(--container-content); }
  .wrap--narrow  { --container: var(--container-narrow); }

  .section {
    padding-block: var(--section-y);
  }
}


@layer layout {
  

  
  .grid-bg {
    --cell: 24px;
    --line: rgba(0, 0, 0, 0.08);
    --bg: transparent;
    background-color: var(--bg);
    background-image:
      linear-gradient(to right, var(--line) 1px, transparent 1px),
      linear-gradient(to bottom, var(--line) 1px, transparent 1px);
    background-size: var(--cell) var(--cell);
    background-position: 0 0;
  }

  .hyphenated {
    hyphens: auto;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  
  .reveal { opacity: 1; }
  html.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  html.js .reveal.is-in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    html.js .reveal { opacity: 1; transform: none; transition: none; }
  }
}


@layer components {

  
  .padding-global {
    margin-top: auto;
    padding-left: 6%;
    padding-right: 6%;
  }
  .padding-global.nav { padding-left: 3%; padding-right: 3%; }

  

  .padding-section-large { padding-top: 5rem; padding-bottom: 5rem; }
  .padding-section-large.top-padding-off { padding-top: 0; }
  
  .padding-section-large.hero-padding { padding-top: var(--sp-2xl); padding-bottom: var(--sp-sm); }
  .padding-section-small { padding-top: 2rem; padding-bottom: 2rem; }

  .max-width-large { max-width: 48rem; }
  .align-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    font-family: "Space Mono", monospace;
  }
  .margin-bottom { margin: 0; }
  .section-hero { overflow: hidden; }

  
  .navbar-component {
    position: relative;
    z-index: 1000;
    background-color: var(--black);
    width: 100%;
    min-height: 4.5rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
  }

  .nav-component {
    display: grid;
    grid-template-columns: 18% 69% 13%;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 80rem;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #000;
  }

  .nav-logo-link { padding-left: 0; display: inline-block; }
  .navbar-logo { width: 200px; height: auto; }

  .navbar-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
  }

  .nav-link {
    color: var(--white);
    text-transform: none;
    padding: 0.5rem 1rem;
    font-family: "Space Mono", monospace;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    background: none;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }
  .nav-link:hover { color: var(--white); text-decoration: underline; }
  .nav-dropdown-link[aria-current="page"] { color: #0082f3; }

  
  .link-block { display: none; }

  .dropdown { position: relative; padding: 0.5rem 1rem; }
  .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    padding: 0;
  }
  .dropdown-toggle .icon {
    width: 0.5em;
    height: 0.5em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
  }

  .dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    background: #dddddd;
    display: none;
    z-index: 900;
    padding: 6px 0;
  }
  .dropdown:hover .dropdown-list,
  .dropdown:focus-within .dropdown-list,
  .dropdown-toggle[aria-expanded="true"] + .dropdown-list {
    display: block;
    border: 2px solid #000;
  }
  .nav-dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #222222;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Space Mono", monospace;
  }
  .nav-dropdown-link:hover { background: #cfcfcf; }

  .navbar-buttton-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    justify-self: end;
  }

  .button.on-nav {
    display: inline-block;
    border: 1px solid var(--white);
    background-color: var(--transparent);
    color: var(--white);
    border-radius: 2px;
    padding: 12px 24px;
    font-family: "Space Mono", monospace;
    font-size: 16px;
    line-height: 1.5em;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
  }
  .button.on-nav:hover { background-color: var(--white); color: var(--black); }

  .navbar-menu-button {
    display: none;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
  }
  .menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -0.5rem;
  }
  .menu-icon-line-top,
  .menu-icon-line-bottom { width: 24px; height: 2px; background-color: var(--white); }
  .menu-icon-line-middle {
    width: 24px; height: 2px; background-color: var(--white);
    margin-top: 6px; margin-bottom: 6px;
  }

  
  .hero-block {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 90vh;
    margin-left: auto;
    margin-right: auto;
  }
  .p-opener {
    display: block;
    color: #0009;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
  }
  .heading-hero {
    text-align: center;
    text-wrap: normal;
    font-size: 8vh;
    margin: 20px 0 10px;
  }

  
  .header-component {
    display: block;
    align-items: center;
    margin-bottom: 60px;
  }
  .header-cta-wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    place-items: start stretch;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .hero-wrap {
    display: block;
    flex-flow: column;
    height: 48vh;
  }
  .embed-animation { padding-left: 30px; padding-right: 30px; }

  .text-hero-wrap {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
  }
  .author-quote-small {
    display: flex;
    flex-flow: column;
    gap: 24px;
    width: 90%;
  }
  .paragraph-small {
    margin-top: 10px;
    font-family: "Space Mono", monospace;
    font-size: 1rem;
    line-height: 1.4em;
  }

  .check-list { list-style: none; padding-left: 0; margin: 0; }
  .check-list-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
  }
  .check-list-item-icon {
    margin-right: 10px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  }
  .check-list-item-text { font-family: "Space Mono", monospace; font-weight: 400; }
  .check-list-item-text strong { font-weight: 700; }

  
  .button {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    border-radius: 2px;
    padding: 1rem 2rem;
    font-family: "Space Mono", monospace;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5em;
    text-decoration: none;
    border: 0;
    cursor: pointer;
  }
  .button:hover { background-color: #9e7676; }
  .button.is-primary {
    background-color: var(--transparent);
    color: var(--black);
    border: 1px solid #000;
    border-radius: 2px;
    margin-top: 40px;
    margin-left: 0;
    margin-right: auto;
    font-weight: 400;
  }
  .button.is-primary:hover { background-color: var(--black); color: var(--white); }
  .button.is-primary.button-dark { background-color: var(--black); color: var(--white); margin-left: auto; }
  .button.is-primary.button-dark.button-next-steps { color: var(--white); }

  .block-next-steps-2 {
    display: flex;
    gap: 50px;   
    align-self: flex-start;
  }
  .block-next-steps-2.is-cta-mobile { display: none; }

  
  .header-component-w-grid {
    display: flex;
    flex-flow: column;
    gap: var(--sp-xl);   
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .author-quote {
    display: block;
    align-self: center;
    width: 100%;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
  }
  .block-content {
    position: relative;
    width: 100%;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    border: 0.15rem solid #000;
    border-radius: 2px;
  }
  .block-content.grid-bg { border-width: 0.1rem; }
  ._w-grid-badge {
    position: absolute;
    inset: 0% auto auto;
    z-index: 2;
    background-color: var(--black);
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    transform: translate(20%, -50%);
  }
  .paragraph-23 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-transform: uppercase;
    margin: 0 auto;
  }
  .author-quote-tool-text {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 40px;
  }
  .box-lauftext-text {
    width: 65%;
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
    overflow: visible;
  }
  .heading-style-h3 {
    margin: 0 auto 10px;
    font-size: 3.75rem;
    font-weight: 600;
    overflow: visible;
  }
  .p-block { font-size: 1rem; }
  .p-block strong { font-weight: 700; }
  .portrait { width: 300px; padding-right: 20px; }

  
  .mh-compact-wrap {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .mh-compact-img {
    position: relative;
    z-index: 2;
    width: auto;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: grayscale(100%) contrast(110%);
    transition: filter 0.4s ease, transform 0.4s ease;
  }
  .mh-compact-wrap:hover .mh-compact-img { filter: grayscale(0%) contrast(100%); transform: scale(1.02); }
  .mh-compact-badge {
    position: absolute;
    z-index: 3;
    bottom: 8%;
    right: -5%;
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    padding: 0.6rem 1rem;
    border-radius: 2px;
    box-shadow: 5px 5px 0px #000000;
    font-family: system-ui, -apple-system, sans-serif;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  .mh-compact-wrap:hover .mh-compact-badge { transform: translateY(-3px); box-shadow: 5px 8px 0px #000000; }
  .mh-c-name { display: block; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2; }
  .mh-c-role { display: block; font-size: 0.65rem; text-transform: uppercase; opacity: 0.7; margin-top: 3px; }

  
  .mh-sequencer-wrap {
    width: 100%;
    max-width: 500px;
    height: 450px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Space Mono", monospace;
    background: transparent;
    position: relative;
    overflow: hidden;
  }
  .mh-scene-indicator {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--mh-black);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    font-weight: 700;
    min-height: 1.2rem;
  }
  .mh-step-scene {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    animation: sceneFadeIn 0.4s ease forwards;
  }
  .mh-step-scene.is-active { display: flex; }
  .mh-step-scene[data-seq-scene="search"] { justify-content: flex-start; padding-top: 20%; }
  @keyframes sceneFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

  .mh-search-box {
    width: 100%;
    border: 2px solid var(--mh-black);
    padding: 1rem;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 6px 6px 0px var(--mh-black);
  }
  .mh-search-brand { font-weight: 900; }
  .g-b { color: #4285F4; }
  .g-r { color: #EA4335; }
  .g-y { color: #FBBC05; }
  .g-g { color: #34A853; }
  .mh-typing { font-size: 0.9rem; margin-left: 5px; white-space: pre; }
  .mh-cursor { width: 2px; height: 1.2rem; background: var(--mh-neon); animation: blink 0.8s infinite; }

  .mh-search-results {
    width: 100%;
    padding: 10px;
    height: 380px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  }
  .mh-res-card {
    background: #fff;
    border: 2px solid var(--mh-black);
    padding: 0.8rem;
    margin-bottom: 12px;
    box-shadow: 4px 4px 0px var(--mh-black);
    position: relative;
  }
  .mh-res-card.is-dim2 { opacity: 0.4; }
  .mh-res-card.is-dim3 { opacity: 0.2; }
  .mh-res-card.winner { border-color: var(--mh-neon); box-shadow: 6px 6px 0px var(--mh-neon); z-index: 2; }
  .mh-res-card.winner.clicked { transform: scale(0.98); background: #f0fff4; transition: all 0.2s; }
  .mh-res-title { color: #1a0dab; text-decoration: underline; font-weight: 700; font-size: 0.85rem; display: block; }
  .mh-res-desc { font-family: system-ui, sans-serif; font-size: 0.7rem; color: #4d5156; margin-top: 4px; line-height: 1.3; }
  .mh-click-indicator { position: absolute; right: 20px; top: 50%; font-size: 1.5rem; pointer-events: none; opacity: 0; transform: translateY(20px); }
  .mh-click-indicator.animate-click { animation: clickPulse 1s ease forwards; }
  @keyframes clickPulse { 0% { opacity: 0; transform: translateY(20px); } 50% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: scale(0.8); } }

  .mh-web-detailed {
    width: 100%;
    border: 2px solid var(--mh-black);
    background: #fff;
    padding: 0;
    box-shadow: 8px 8px 0px var(--mh-black);
    display: flex;
    flex-direction: column;
  }
  .mh-web-header { background: #eee; padding: 6px 12px; border-bottom: 1px solid #000; font-size: 0.5rem; display: flex; gap: 5px; align-items: center; }
  .mh-dot { width: 8px; height: 8px; border-radius: 50%; }
  .mh-dot--r { background: #ff5f56; }
  .mh-dot--y { background: #ffbd2e; }
  .mh-dot--g { background: #27c93f; }
  .mh-web-url { margin-left: 10px; opacity: 0.5; }
  .mh-web-hero { padding: 1rem; border-bottom: 1px dashed #ccc; }
  .mh-web-h1 { font-family: system-ui; font-weight: 800; font-size: 1rem; line-height: 1.1; margin-bottom: 8px; }
  .mh-web-p { font-family: system-ui; font-size: 0.75rem; line-height: 1.3; opacity: 0.8; margin-bottom: 12px; border-left: 2px solid var(--mh-neon); padding-left: 10px; }
  .mh-web-cta { display: inline-block; background: var(--mh-neon); border: 1px solid #000; padding: 5px 10px; font-size: 0.55rem; font-weight: 700; text-transform: uppercase; }
  .mh-web-tool-area { padding: 1rem; background: #fafafa; }
  .mh-tool-label { font-size: 0.55rem; font-weight: 700; display: block; }
  .mh-web-progress { height: 6px; background: #eee; border: 1px solid #000; margin: 8px 0; position: relative; }
  .mh-web-progress-fill { height: 100%; background: var(--mh-neon); width: 0%; transition: width 3s cubic-bezier(0.4, 0, 0.2, 1); }
  .mh-tool-tags { display: flex; gap: 8px; font-size: 0.5rem; }
  .mh-tag { background: #000; color: #fff; padding: 2px 5px; }

  .mh-inbox-section { width: 100%; background-color: transparent; display: flex; justify-content: center; font-family: system-ui, -apple-system, sans-serif; }
  .mh-notification-stack { width: 100%; max-width: 500px; height: 380px; display: flex; flex-direction: column; gap: 12px; padding: 10px 20px; overflow: hidden; -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%); mask-image: linear-gradient(to bottom, black 70%, transparent 100%); }
  .mh-lead-card { background: #fff; border: 2px solid var(--mh-black); padding: 1rem; display: grid; grid-template-columns: 35px 1fr; gap: 12px; align-items: center; box-shadow: 5px 5px 0px var(--mh-black); flex-shrink: 0; animation: leadPopIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
  .mh-lead-icon { width: 35px; height: 35px; background: var(--mh-neon); border: 1px solid #000; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
  .mh-lead-header { display: flex; justify-content: space-between; font-family: "Space Mono", monospace; font-size: 0.6rem; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; color: #666; }
  .mh-lead-title { font-weight: 800; font-size: 0.85rem; margin-bottom: 2px; }
  .mh-lead-desc { font-size: 0.75rem; opacity: 0.7; line-height: 1.2; }
  .mh-neon-text { color: var(--mh-black); background: var(--mh-neon); padding: 0 4px; font-weight: 700; }

  .mh-roof-container {
    width: 100%;
    height: 380px;
    background-color: #fdfdfd;
    border: 2px solid var(--mh-black);
    box-shadow: 8px 8px 0px var(--mh-black);
    background-image: linear-gradient(#e0e0e0 1px, transparent 1px), linear-gradient(90deg, #e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
    overflow: hidden;
  }
  .mh-blueprint-label { position: absolute; bottom: 10px; right: 10px; font-size: 0.6rem; background: #fff; border: 1px solid #000; padding: 2px 5px; z-index: 10; }
  .mh-roof-grid { display: grid; width: 100%; height: 100%; grid-template-columns: repeat(20, 1fr); grid-template-rows: repeat(20, 1fr); }
  .mh-rf-item { opacity: 0; animation: popOnGrid 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; position: relative; }
  .mh-rf-house { grid-column: 6 / 16; grid-row: 12 / 20; border: 3px solid var(--mh-black); border-top: none; background: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; z-index: 2; }
  .mh-rf-scaffold { border-left: 2px dashed #999; border-right: 2px dashed #999; background: repeating-linear-gradient(45deg, transparent, transparent 10px, #f0f0f0 10px, #f0f0f0 12px); z-index: 1; }
  .mh-rf-scaffold-l { grid-column: 4 / 6; grid-row: 8 / 20; animation-delay: 0.3s; }
  .mh-rf-scaffold-r { grid-column: 16 / 18; grid-row: 8 / 20; animation-delay: 0.4s; }
  .mh-rf-truss { grid-column: 5 / 17; grid-row: 5 / 12; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); background-color: #e0e0e0; animation-delay: 0.8s; z-index: 3; display: flex; justify-content: center; align-items: flex-end; }
  .mh-rf-insulation { position: absolute; width: 100%; height: 100%; background: repeating-linear-gradient(-45deg, #fff9c4, #fff9c4 5px, #fff59d 5px, #fff59d 10px); clip-path: polygon(50% 10%, 5% 90%, 95% 90%); opacity: 0; animation: popOnGrid 0.5s ease forwards; animation-delay: 1.4s; z-index: 4; }
  .mh-rf-tiles { position: absolute; width: 100%; height: 100%; background: repeating-linear-gradient(0deg, transparent, transparent 18px, #ff8a80 19px, #ff8a80 20px); clip-path: polygon(50% 0%, 0% 100%, 100% 100%); opacity: 0; animation: popOnGrid 0.5s ease forwards; animation-delay: 2.0s; z-index: 5; }
  .mh-rf-window { position: absolute; top: 40%; left: 55%; width: 20%; height: 25%; background: #e1f5fe; border: 2px solid #000; opacity: 0; transform: skewX(-10deg); animation: popOnGrid 0.5s ease forwards; animation-delay: 2.5s; z-index: 6; }
  .mh-rf-worker { grid-column: 16 / 18; grid-row: 7 / 9; font-size: 2rem; z-index: 10; animation-delay: 2.8s; }
  @keyframes blink { 50% { opacity: 0; } }
  @keyframes leadPopIn { 0% { transform: translateY(-40px) scale(0.9); opacity: 0; } 100% { transform: translateY(0) scale(1); opacity: 1; } }
  @keyframes popOnGrid { 0% { opacity: 0; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1); } }

  
  .mh-split-wrap {
    width: 100%;
    max-width: 64rem;
    height: auto;
    margin: 0 auto;
    font-family: "Space Mono", monospace;
    background: #fff;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--mh-black);
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
  }
  .mh-split-header {
    height: 40px;
    flex-shrink: 0;
    border-bottom: 2px solid var(--mh-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background: #eee;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
  }
  .mh-split-live { font-size: 0.6rem; }
  .mh-split-body {
    display: grid;
    height: 100%;
    grid-template-columns: 1fr 1fr;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
    align-items: start;
  }
  .mh-split-body.finished { grid-template-columns: 0fr 1fr; }
  .mh-zone-active {
    background: #fff;
    border-right: 2px solid var(--mh-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    position: relative;
    opacity: 1;
    transition: opacity 0.2s, padding 0.2s;
    height: 100%;
    min-height: 100%;
  }
  
  .mh-split-body.finished .mh-zone-active { opacity: 0; padding: 0; border: none; min-width: 0; height: 0 !important; min-height: 0 !important; }
  .mh-label { font-size: 1rem; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; letter-spacing: 1px; }
  .mh-zone-list { background: var(--mh-gray); display: flex; flex-direction: column; position: relative; overflow: hidden; height: auto; }
  .mh-list-header-row { display: grid; grid-template-columns: 1fr 30px 1fr; padding: 10px 15px; border-bottom: 2px solid var(--mh-black); background: #e0e0e0; font-size: 1rem; font-weight: 900; text-transform: uppercase; text-align: center; }
  .mh-col-bad { color: #606060; }
  .mh-col-good { color: #000; }
  .mh-list-scroll-area { padding: 15px; display: flex; flex-direction: column; gap: 8px; height: auto; }
  .mh-clash-box { width: 100%; text-align: center; margin-bottom: 1.5rem; display: flex; flex-direction: column; align-items: center; }
  .mh-text-bad { font-size: 1.2rem; line-height: 1.4; font-weight: 700; color: #555; position: relative; opacity: 0; transform: translateY(10px); transition: 0.3s; max-width: 90%; }
  .mh-text-bad.visible { opacity: 1; transform: translateY(0); }
  .mh-text-bad::after { content: ""; position: absolute; left: -5%; top: 50%; width: 0%; height: 3px; background: var(--mh-fail); transform: rotate(-2deg); transition: width 0.3s ease-out; }
  .mh-text-bad.striked { opacity: 0.5; }
  .mh-text-bad.striked::after { width: 110%; }
  .mh-text-good { font-size: 1.3rem; line-height: 1.3; font-weight: 900; color: var(--mh-black); background: var(--mh-neon); padding: 8px 12px; border: 3px solid var(--mh-black); box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2); opacity: 0; transform: scale(0.8); margin-top: 5px; max-width: 95%; }
  .mh-text-good.slam { opacity: 1; transform: scale(1) rotate(-1deg); animation: slamPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
  @keyframes slamPop { 50% { transform: scale(1.05) rotate(1deg); } }
  .mh-list-item { background: #fff; border: 1px solid var(--mh-black); padding: 8px; font-size: 0.9rem; display: grid; grid-template-columns: 1fr 20px 1fr; align-items: center; box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1); opacity: 0; transition: opacity 0.5s ease, transform 0.5s ease; }
  .mh-list-item.revealed { opacity: 1; transform: translateX(0); animation: itemSlideIn 0.4s forwards; }
  @keyframes itemSlideIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
  .li-bad { color: #767676; text-align: right; text-decoration: line-through; text-decoration-color: var(--mh-fail); padding-right: 5px; line-height: 1.3; }
  .li-sep { text-align: center; color: #ddd; font-weight: 300; }
  .li-good { font-weight: 700; color: #000; padding-left: 5px; border-left: 3px solid var(--mh-neon); line-height: 1.3; }
  .mh-split-body.finished .mh-list-item { padding: 12px; font-size: 0.9rem; box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1); margin-bottom: 5px; }

  
  .footer-section { background-color: var(--black); color: var(--light-grey); padding-bottom: 0; overflow: hidden; }
  .padding-section-medium { padding-top: 5rem; padding-bottom: 5rem; }
  .padding-section-medium.bottom-2rem { padding-bottom: 2rem; }
  .footer-component { flex-direction: column; align-items: center; display: block; }
  .text-size-large { font-family: "Space Mono", monospace; font-size: 1.5rem; font-weight: 500; }
  .cta-wrap { text-align: center; flex-flow: column wrap; justify-content: center; align-items: center; margin-bottom: 2rem; padding-top: 10px; padding-bottom: 10px; text-decoration: none; display: flex; }
  .heading-large { color: var(--black); text-transform: uppercase; white-space: nowrap; object-fit: fill; align-items: center; font-family: "Thunder", sans-serif; font-size: 15vw; font-weight: 600; line-height: 1; display: flex; overflow: visible; }
  .heading-large.contact { width: 100%; color: var(--white); text-transform: uppercase; object-fit: fill; padding-top: 20px; font-family: "Thunder", sans-serif; font-size: 20vh; font-weight: 600; position: relative; }
  .heading-large.contact:hover { text-decoration: underline; }
  
.footer-ueber { max-width: 46rem; margin: 1.6rem auto 2.2rem; text-align: center; }
.footer-ueber p { font-size: 0.92rem; line-height: 1.6; color: rgba(255, 255, 255, 0.72); margin: 0; }
.footer-ueber a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.footer-ueber a:hover { opacity: 0.85; }

.footer-additional-links-wrap { grid-column-gap: 16px; grid-row-gap: 16px; grid-template-rows: auto auto; grid-template-columns: 1fr 1fr 1fr; grid-auto-columns: 1fr; padding-bottom: 3rem; display: grid; }
  .footer-link { color: var(--white); justify-content: space-between; font-weight: 500; text-decoration: none; display: flex; }
  .footer-link:hover { text-decoration: underline; }
  .footer-link.text-color-white { color: var(--white); text-align: center; justify-content: center; font-family: "Space Mono", monospace; }
  .divider { background-color: var(--black); color: #555353; width: 100%; max-width: 100%; height: 1px; }
  .divider.footer { background-color: #d1d1cf61; }
  .footer-link-wrap { justify-content: space-between; align-items: center; width: auto; padding-top: 3rem; display: flex; }
  .footer-link-container { grid-column-gap: 2.5rem; grid-row-gap: .75rem; grid-template-rows: auto; grid-template-columns: 1fr 1fr 1fr 1fr; grid-auto-columns: 1fr; justify-content: start; justify-items: start; display: grid; }
  .footer-link-container.text-color-white { grid-row-gap: 3rem; grid-template-rows: auto auto; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }

  

  
  .section-content { position: relative; overflow: visible; }
  
  #live-demo .heading-style-h3 { text-wrap: wrap; margin-bottom: 0; }
  #live-demo .margin-bottom.margin-small { margin-bottom: 1rem; overflow: visible; }
  .content-5-5 { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; grid-auto-columns: 1fr; column-gap: 3em; row-gap: 3em; align-items: center; margin-bottom: 0; position: relative; }
  .text-content { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; gap: 20px; max-width: 600px; }
  .dyn-content { display: flex; flex-flow: column; }
  .dyn-navigation { width: 100%; }
  .div-block-77 { display: flex; flex-flow: column; align-self: center; gap: 5px; }
  .btn-batch { display: flex; flex-flow: column; justify-content: center; align-items: center; font-family: "Space Mono", monospace; font-size: 0.9rem; }
  .btn-weiterlesen { display: none; }
  .paragraph-small.hidden-p { margin-top: 10px; }

  
  .mh-switcher-nav { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1.5rem; margin-bottom: 1rem; border-bottom: 2px solid #000; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: #000; }
  .mh-switcher-title { font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; text-align: center; min-width: 200px; }
  .mh-switcher-sub { display: block; font-size: 0.7rem; font-weight: 400; opacity: 0.6; margin-top: 4px; text-transform: none; }
  .mh-nav-btn { width: 44px; height: 44px; background: transparent; border: 1px solid #000; border-radius: 2px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; transition: all 0.2s ease; user-select: none; }
  .mh-nav-btn:hover { background: #000; color: #fff; }
  .mh-nav-btn:active { opacity: 0.8; }
  .mh-tool-content { animation: mhFadeIn 0.5s ease forwards; }
  
  .mh-hidden-tool { display: none !important; }

  
  .mh-conf-wrapper { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif; font-size: 1rem; line-height: 1.5; background-color: var(--mh-bg); color: var(--black); padding: 2rem; max-width: 800px; margin: 0 auto; border: 1px solid #000; box-sizing: border-box; position: relative; overflow-x: hidden; }
  .mh-conf-wrapper.mh-surface-light { background-color: var(--mh-bg-light); }
  .mh-conf-wrapper * { box-sizing: border-box; }
  
  #live-demo .mh-conf-wrapper p { font-family: var(--font-body); }
  .mh-h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.05em; }
  .mh-sub { font-size: 1rem; margin-bottom: 2rem; opacity: 0.8; line-height: 1.5; }
  
  .mh-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .mh-card { border: 1px solid #000; padding: 1.5rem; cursor: pointer; transition: all 0.2s ease; background: transparent; display: flex; flex-direction: column; justify-content: center; min-height: 120px; position: relative; min-width: 0; overflow-wrap: break-word; } 
  .mh-card:hover { background-color: var(--mh-soft, rgba(0,0,0,0.05)); }
  .mh-card.active { background-color: #000; color: var(--mh-bg); border-color: #000; }
  .mh-check-indicator { position: absolute; top: 10px; right: 10px; font-size: 1.2rem; display: none; }
  .mh-card.active .mh-check-indicator { display: block; }
  .mh-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
  .mh-input-group { margin-bottom: 1.5rem; }
  .mh-range-val { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; min-width: 0; } 
  .mh-conf-wrapper input[type="range"] { width: 100%; accent-color: #000; height: 4px; background: #000; border-radius: 2px; outline: none; }
  .mh-select, .mh-input { width: 100%; padding: 0.8rem; border: 1px solid #000; border-radius: 2px; background: #fff; color: #000; }
  .mh-checkbox-wrapper { display: flex; align-items: center; border: 1px solid #000; padding: 1rem; margin-bottom: 0.5rem; cursor: pointer; transition: background 0.2s; min-width: 0; }
  .mh-checkbox-wrapper > div { min-width: 0; overflow-wrap: break-word; } 
  .mh-checkbox-wrapper:hover { background: var(--mh-soft, rgba(0,0,0,0.05)); }
  .mh-checkbox-wrapper input { margin-right: 1rem; width: 20px; height: 20px; accent-color: #000; }
  .mh-btn { background-color: #000; color: #fff; border: none; padding: 1rem 2rem; font-size: 1rem; font-weight: 600; cursor: pointer; border-radius: 2px; width: 100%; text-transform: uppercase; margin-top: 1rem; display: block; text-align: center; text-decoration: none; transition: opacity 0.2s; overflow-wrap: break-word; word-break: normal; white-space: normal; }
  .mh-btn:hover { opacity: 0.8; }
  .mh-btn:disabled { opacity: 0.3; cursor: not-allowed; }
  .mh-btn-outline { background-color: transparent; border: 1px solid #000; color: #000; margin-top: 0.5rem; }
  .mh-btn-neon { background: #000; color: #fff; border: 1px solid #000; width: fit-content; max-width: 100%; margin-left: auto; margin-right: auto; margin-top: 1.5rem; }
  .mh-btn-neon:hover, .mh-btn.mh-btn-neon:hover { background: var(--mh-accent); color: #000; opacity: 1; }
  .mh-step { display: none; animation: mhFadeIn 0.4s ease; }
  .mh-step.active { display: block; }
  .mh-alert { background: var(--mh-soft, rgba(0,0,0,0.05)); padding: 1rem; font-size: 1rem; margin-top: 1rem; border-radius: 2px; }
  .mh-alert-accent { border-left: 4px solid var(--mh-accent); background: rgba(0, 230, 118, 0.05); border-radius: 0; }
  .mh-alert-danger { border-left: 4px solid #ff3333; }
  .mh-alert-dark { border-left: 4px solid #000; }
  .mh-summary-box { border-left: 4px solid #000; padding-left: 1.5rem; margin-bottom: 2rem; }
  .mh-tag { display: inline-block; background: #000; color: #fff; padding: 2px 6px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; border-radius: 2px; margin-right: 5px; vertical-align: middle; }
  .mh-tag-accent { background: var(--mh-accent); color: #000; padding: 2px 8px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-weight: 600; }
  .mh-tag-block { margin-bottom: 0.5rem; }
  .mh-tag-demo { background: var(--mh-accent); color: #000; margin-bottom: 0.5rem; letter-spacing: 0.04em; } 
  .mh-info-btn { width: 24px; height: 24px; border-radius: 50%; border: 1px solid #000; display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; cursor: pointer; background: transparent; color: #000; vertical-align: middle; }
  .mh-info-btn:hover { background: #000; color: #fff; }
  .mh-modal-overlay { display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(209, 209, 207, 0.95); z-index: 100; justify-content: center; align-items: center; padding: 2rem; backdrop-filter: blur(2px); }
  .mh-modal-overlay.open { display: flex; }
  .mh-modal-content { background: #fff; border: 1px solid #000; padding: 2rem; max-width: 500px; position: relative; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
  .mh-close-modal { position: absolute; top: 10px; right: 10px; cursor: pointer; font-size: 1.5rem; line-height: 1; }
  .mh-text-link { text-decoration: underline; cursor: pointer; font-size: 0.9rem; font-weight: 600; margin-top: 1rem; display: inline-block; }
  .mh-section-head { margin-bottom: 2rem; border-bottom: 1px solid #000; padding-bottom: 1rem; }
  .mh-price-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; background: #fff; border: 1px solid #000; }
  .mh-price-table th { background: #000; color: #fff; text-align: left; padding: 12px; font-size: 0.75rem; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif; text-transform: uppercase; letter-spacing: 0.04em; }
  .mh-price-table td { border-bottom: 1px solid #eee; padding: 12px; font-size: 1rem; vertical-align: top; }
  .mh-price-table tr:last-child td { border-bottom: none; }
  .mh-price-tag { font-weight: 800; display: block; margin-top: 5px; font-size: 1.1rem; }
  .mh-timeline { position: relative; padding-left: 30px; margin-top: 1rem; }
  .mh-timeline::before { content: ""; position: absolute; left: 10px; top: 10px; bottom: 10px; width: 2px; background: #000; opacity: 0.2; }
  .mh-timeline-item { position: relative; margin-bottom: 1.5rem; }
  .mh-timeline-dot { position: absolute; left: -30px; top: 0; width: 22px; height: 22px; background: #000; color: #fff; border-radius: 50%; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; font-weight: 800; }
  .mh-timeline-dot.mh-timeline-dot-check { width: 26px; height: 26px; border: 2px solid #fff; }
  .mh-timeline-title { font-weight: 800; font-size: 1rem; margin-bottom: 0.2rem; }
  .mh-timeline-desc { font-size: 1rem; opacity: 0.85; line-height: 1.4; }
  .mh-text-sm { font-size: 0.85rem; }
  .mh-text-xs { font-size: 0.75rem; }
  .mh-muted { opacity: 0.7; }
  .mh-finance-box { background: #fff; border: 1px dashed #000; padding: 1.5rem; margin-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
  .mh-finance-val { font-size: 1.8rem; font-weight: 800; color: #000; }
  .mh-finance-label { font-size: 0.8rem; text-transform: uppercase; opacity: 0.7; }
  .mh-chart-wrapper { display: flex; align-items: center; gap: 1.5rem; margin-top: 1.5rem; padding: 1rem; background: rgba(255, 255, 255, 0.5); }
  .mh-donut { width: 100px; height: 100px; border-radius: 50%; background: conic-gradient(#000 0% 0%, #ccc 0% 100%); position: relative; display: flex; justify-content: center; align-items: center; }
  .mh-donut::after { content: ""; width: 70px; height: 70px; background: var(--mh-bg); border-radius: 50%; position: absolute; }
  .mh-chart-legend { font-size: 0.9rem; line-height: 1.6; }
  .mh-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 5px; }
  .mh-priority-card { border-left: 8px solid #000; }
  .mh-priority-card.emergency { border-left-color: #f33; }
  .mh-issue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; margin-top: 1rem; }
  .mh-issue-tag { border: 1px dashed #000; padding: 0.8rem; text-align: center; font-size: 0.9rem; cursor: pointer; }
  .mh-issue-tag:hover { background: rgba(255, 51, 51, 0.1); border-color: #f33; }
  .mh-issue-tag.active { background: #f33; color: #fff; border-color: #f33; font-weight: 700; }
  .mh-upload-box { border: 2px dashed #000; padding: 1.5rem; text-align: center; cursor: pointer; margin-top: 1rem; transition: 0.2s; }
  .mh-upload-box:hover { background: var(--mh-soft, rgba(0,0,0,0.05)); }
  .mh-slot-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; opacity: 0.5; pointer-events: none; transition: opacity 0.3s; }
  .mh-slot-list.unlocked { opacity: 1; pointer-events: all; }
  .mh-slot { display: flex; justify-content: space-between; align-items: center; padding: 1rem; border: 1px solid #000; cursor: pointer; }
  .mh-slot:hover { background: var(--mh-soft, rgba(0,0,0,0.05)); }
  .mh-slot.active { background: #000; color: #fff; }
  .mh-slot.prio-slot { border-color: #f33; background: rgba(255, 51, 51, 0.05); }
  .mh-slot.prio-slot.active { background: #f33; color: #fff; border-color: #f33; }
  .mh-badge-route { background: #000; color: #fff; font-size: 0.6rem; padding: 2px 6px; border-radius: 2px; text-transform: uppercase; margin-left: 10px; }
  .mh-calendar-modal { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #fff; z-index: 50; padding: 2rem; display: none; flex-direction: column; }
  .mh-calendar-modal.open { display: flex; animation: mhFadeIn 0.3s; }
  .mh-cal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; margin-bottom: 1rem; }
  .mh-cal-day { border: 1px solid #ddd; padding: 10px 5px; text-align: center; cursor: pointer; font-size: 0.8rem; }
  .mh-cal-day.selected { background: #000; color: #fff; border-color: #000; }
  .mh-cal-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 1rem; }
  .mh-cal-time { border: 1px solid #000; padding: 10px; text-align: center; cursor: pointer; }
  .mh-cal-time:hover { background: #eee; }
  
  .mh-tool-head { margin-bottom: 2rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #000; padding-bottom: 1rem; }
  .mh-tool-head-l { font-weight: 700; font-size: 0.8rem; }
  .mh-tool-head-r { font-size: 0.8rem; }
  .mh-field-label { font-weight: 700; font-size: 0.9rem; display: block; margin-bottom: 0.5rem; }
  .mh-res-box { background: #fff; padding: 1rem; border: 1px solid #000; text-align: center; }

  
  .single-top-down { display: flex; flex-flow: column; gap: 40px; margin-bottom: 40px; position: relative; }
  .centered-heading { text-align: center; margin-bottom: 16px; }
  .text-content-center { align-self: center; max-width: 75%; }
  .dyn-content-center { padding-bottom: 40px; }
  .calculation-tool { background-color: var(--light-grey); border: 1px solid #000; max-width: 85%; margin-left: auto; margin-right: auto; padding: 40px; display: block; }
  .rechner-statisch { display: block; }

  .mh-roi-wrapper { width: 100%; max-width: 100%; margin: 2rem 0; padding: 0; background: transparent; color: #000; position: relative; }
  .mh-roi-header { margin-bottom: 1.5rem; min-height: 1px; }
  .mh-roi-label-container { display: flex; align-items: center; gap: 8px; margin-bottom: 0; grid-column: 1; grid-row: 1; }
  .mh-roi-label { font-family: var(--font-body); font-size: 0.75rem; text-transform: uppercase; font-weight: 600; }
  .mh-info-trigger { cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease; padding: 0; border: 0; background: transparent; }
  .mh-info-trigger:hover { transform: scale(1.1); }
  .mh-info-trigger svg { width: 16px; height: 16px; fill: #000; }
  .mh-modal-close { position: absolute; top: 10px; right: 10px; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 1.2rem; background: transparent; border: 0; line-height: 1; }
  .mh-modal-title { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; display: block; color: #008343;  }
  .mh-roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .mh-roi-input-group { margin-bottom: 2rem; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; align-items: center; }
  .mh-roi-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 2px; background: #000; outline: none; margin: 1.5rem 0; grid-column: 1 / -1; grid-row: 2; }
  .mh-roi-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; background: #00e676; border: 2px solid #000; cursor: pointer; }
  .mh-roi-slider::-moz-range-thumb { width: 18px; height: 18px; background: #00e676; border: 2px solid #000; cursor: pointer; border-radius: 0; }
  .mh-roi-slider:focus-visible { outline: 2px solid #00e676; outline-offset: 4px; }
  .mh-roi-value-display { font-family: var(--font-display); font-size: 2.2rem; color: #000; line-height: 1; grid-column: 2; grid-row: 1; text-align: right; }
  .mh-roi-card { border: 1px solid #000; padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; min-height: 140px; }
  .mh-roi-card.bad { background: rgba(0, 0, 0, 0.03); border-style: dashed; color: #535353; }
  .mh-roi-card.good { background: #fff; color: #000; border-width: 2px; }
  .mh-roi-card.loss { background: #ce2929; color: #fff; border-color: #000; box-shadow: 10px 10px 0 #000; }
  .mh-roi-card-title { font-family: var(--font-body); font-size: 0.7rem; text-transform: uppercase; margin-bottom: 1rem; }
  .mh-roi-stat { font-family: var(--font-display); font-size: 3rem; line-height: 0.8; margin-bottom: 0.5rem; }
  .mh-roi-disclaimer { margin-top: 3rem; padding: 1.5rem; border: 1px solid #000; background: rgba(0, 0, 0, 0.02); }
  .mh-roi-disclaimer p { font-size: 0.85rem; line-height: 1.5; margin: 0; opacity: 0.8; }
  
  #conversion-rechner .paragraph-small,
  #conversion-rechner .mh-roi-disclaimer p,
  .leistungen-collection-list .desc-leistung,
  .leistungen-collection-list .paragraph-small.leistungen { text-wrap: wrap; }

  
  .first-steps-content-wrap { margin-bottom: 60px; }
  .leistungen-collection-list { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-auto-columns: 1fr; gap: 32px; max-width: none; }
  .leistungen-card-1, .leistungen-card-2, .leistungen-card-3,
  .leistungen-card-4, .leistungen-card-5, .leistungen-card-6 {
    color: var(--black); display: flex; flex-direction: column; align-items: flex-start;
    text-decoration: none; overflow: hidden;
  }
  .leistungen-content { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; width: 100%; height: 100%; margin-top: auto; padding: 1rem; text-decoration: none; }
  .leistungen-content:hover,
  [data-leist-card]:focus-visible .leistungen-content { color: var(--white); background-color: #000; }
  [data-leist-card] { cursor: pointer; }
  .box-leistungen { margin: 0 0 10px; }
  .badge { border: 0.5px solid #000; border-radius: 2px; padding: 4px 10px; display: block; }
  .leistungen-content:hover .badge,
  [data-leist-card]:focus-visible .badge { border-color: #fff; }
  .badge-text { font-family: var(--font-body); font-size: 0.82rem; font-weight: 400; }
  .heading-style-h5-leistungen { text-transform: uppercase; font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; line-height: 1.1; text-decoration: none; text-wrap: wrap; }
  
  .heading-style-h5 { text-transform: uppercase; border-bottom: 1px #00000080; font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; line-height: 1.1; text-decoration: none; }
  .heading-style-h5.jobs-heading { border-bottom-style: solid; }
  .desc-leistung { margin-top: 0; font-family: var(--font-body); font-size: 1rem; line-height: 1.4em; }
  .leistungen-card-ex-1, .leistungen-card-ex-2, .leistungen-card-ex-3,
  .leistungen-card-ex-4, .leistungen-card-ex-5, .leistungen-card-ex-6 {
    display: none; grid-column-gap: 16px; grid-row-gap: 16px;
    grid-template-rows: auto; grid-template-columns: 95% 5%; grid-auto-columns: 1fr; padding: 1rem;
  }
  .leistungen-collection-list [data-leist-ex].is-open { display: grid; grid-column: span 2 / span 2; }
  .leistungen-collection-list .is-hidden { display: none; }
  .div-block-85 { display: flex; flex-flow: column; }
  .div-block-84 { align-self: start; }
  .paragraph-small.leistungen { margin-top: 0; }
  .block-next-steps-leistungen { display: flex; gap: 50px; align-self: flex-start; }  
  img.close { cursor: pointer; }
  img.close:focus-visible { outline: 2px solid #000; outline-offset: 2px; }

  
  ._w-check-block { color: #fff; text-align: center; background-color: #e62020; display: flex; flex-flow: column; gap: 20px; margin-top: 0; padding: 40px 140px; }
  ._w-check-block.dark-bg { background-color: var(--black); }
  ._w-check-block .heading-style-h3 { color: #fff; }
  .block-next-steps { display: flex; gap: 50px; align-self: center; }  
  .button.is-primary.button-grey { background-color: var(--light-grey); }
  .button.is-primary.button-white { color: var(--white); border-color: #fff; margin-left: auto; }

  @keyframes mhFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
}


@media screen and (min-width: 1280px) {
  .navbar-logo { width: 250px; }
  .heading-hero { font-size: 8vh; }
}
@media screen and (min-width: 1440px) {
  .header-cta-wrapper { max-width: 72rem; }
}


@media screen and (max-width: 1199px) {
  .nav-component { display: flex; border-bottom: 0; }
  .navbar-menu { display: none; }
  .navbar-menu-button { display: flex; align-items: center; }

  
  .navbar-component[data-nav-open] .navbar-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: calc(100dvh - 4.5rem);
    background-color: var(--black);
    padding: 1rem 5% 6.5rem;
    overflow: auto;
    z-index: 999;
  }
  
  .navbar-component[data-nav-open] .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.2rem;
  }
  .navbar-component[data-nav-open] .dropdown {
    width: 100%;
    align-self: center;
    text-align: center;
  }
  .navbar-component[data-nav-open] .dropdown-toggle {
    justify-content: center;
    width: 100%;
    padding: 1rem 0;
    font-size: 1.2rem;
  }
  
  .navbar-component[data-nav-open] .dropdown-list {
    position: static;
    width: 100%;
    background-color: var(--black);
    border: 0;
    padding: 0.5rem 0 1rem;
  }
  .navbar-component[data-nav-open] .nav-dropdown-link,
  .navbar-component[data-nav-open] .nav-dropdown-link[aria-current="page"] {
    color: var(--white);
    text-align: left;
  }
  
  .navbar-component[data-nav-open] .menu-icon-line-middle { opacity: 0; }
  .navbar-component[data-nav-open] .menu-icon-line-top { transform: translateY(8px) rotate(45deg); }
  .navbar-component[data-nav-open] .menu-icon-line-bottom { transform: translateY(-8px) rotate(-45deg); }

  
  .navbar-component[data-nav-open] .link-block {
    display: block;
    width: fit-content;
    min-width: 8rem;
    margin: 1.5rem auto 0;
    padding: 1rem 1.5rem;
    border: 1px solid var(--white);
    text-align: center;
  }

  
  .navbar-component[data-nav-open] .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .navbar-component[data-nav-open] .dropdown-toggle[aria-expanded="true"] .icon {
    transform: translateY(2px) rotate(225deg);
  }

  
  .navbar-component[data-nav-open] .dropdown:hover .dropdown-list,
  .navbar-component[data-nav-open] .dropdown:focus-within .dropdown-list { display: none; }
  .navbar-component[data-nav-open] .dropdown-toggle[aria-expanded="true"] + .dropdown-list { display: block; }
}

@media screen and (max-width: 991px) {
  .padding-global { padding-left: 3%; padding-right: 3%; }
  .wrap { --wrap-pad: 3%; }   
  
  .padding-global.nav { padding-left: 3%; padding-right: 3%; }
  .padding-section-large.hero-padding { padding-top: 1rem; }
  .padding-section-small { padding-top: 1rem; padding-bottom: 1rem; }

  .heading-hero { font-size: 6vh; }
  .hero-block { max-width: 80%; }
  .header-cta-wrapper { grid-template-columns: 50% 50%; max-width: 100%; margin-bottom: 20px; }
  .author-quote-small { width: auto; }
  .hero-wrap { height: auto; }

  .header-component-w-grid { gap: 40px; }
  .author-quote-tool-text { width: auto; max-width: 99.518%; padding-left: 20px; padding-right: 20px; }
  .author-quote { max-width: 100%; }
  .heading-style-h3 { font-size: 3rem; }
  .portrait { width: 300px; max-height: 460.219px; margin-top: 0; margin-bottom: 0; padding-right: 0; }
  .block-content { width: auto; max-width: none; margin-left: 0; margin-right: 0; }

  .block-next-steps-2.is-cta-desktop { display: none; }
  .block-next-steps-2.is-cta-mobile { display: flex; gap: 0; padding-bottom: 40px; }

}

@media screen and (max-width: 767px) {
  .padding-global { padding-left: 5%; padding-right: 5%; }
  .wrap { --wrap-pad: 5%; }   
  .navbar-component { min-height: 4rem; }
  .nav-link { font-size: 1.1rem; }
  .padding-section-large.hero-padding { padding-top: 1rem; }

  .heading-hero { font-size: var(--m-fs-h1); }   
  .header-cta-wrapper { display: flex; flex-flow: column; }
  .hero-wrap { align-self: center; width: 100%; }
  .embed-animation { margin-left: 0; margin-right: 0; }

  .header-component-w-grid { gap: 40px; overflow: visible; }
  .author-quote-tool-text { flex-flow: column; justify-content: flex-start; align-items: center; gap: 40px; }
  
  .mh-split-section { margin-top: var(--sp-xl); }
  .box-lauftext-text { flex-flow: column; width: auto; max-width: none; display: flex; }
  .heading-style-h3 { font-size: 3rem; }
  .portrait { order: -9999; align-self: center; width: 55%; max-width: 270px; }   
  .block-next-steps-2.is-cta-mobile { gap: 30px; }
}

@media screen and (max-width: 479px) {
  .nav-component { padding-top: 1rem; padding-bottom: 1rem; }
  .navbar-logo { width: 180px; }
  .button.on-nav { display: none; }

  .heading-hero { font-size: var(--m-fs-h1-xs); }   
  .p-opener { text-align: inherit; align-self: flex-start; }   

  .button { color: var(--white); border: 1px solid #fff; margin-top: 40px; padding-top: 12px; padding-bottom: 12px; font-size: 1rem; }
  
  .button.is-primary { color: #000; border: 1px solid #000; margin-top: 10px; margin-left: auto; font-size: 0.9rem; }
  .button.is-primary.button-dark { color: #fff; border: 1px solid #000; }
  .button.is-primary.button-white { color: #fff; border-color: #fff; }
  .button.is-primary.button-dark.button-next-steps { margin-top: 0; margin-left: auto; margin-right: auto; display: inline-flex; }   
  .button.is-primary.button-next-steps { margin-top: 0; }

  .block-next-steps-2 { gap: 20px; flex-flow: column; align-self: center; }
  .paragraph-small { font-size: 0.9rem; }

  .header-component-w-grid { gap: 32px; margin-bottom: 0; overflow: visible; }
  ._w-grid-badge { transform: translate(5%, -50%); }
  .author-quote-tool-text { gap: 30px; padding-left: 5px; padding-right: 5px; }
  .heading-style-h3 { margin-bottom: 0; padding-top: 6px; }   
  .p-block { font-size: 0.9rem; }
  .portrait { width: 62%; max-width: 240px; }   
  .check-list-item-text { font-size: 0.9rem; line-height: 1.4em; }
  .embed-animation { margin-top: 20px; padding-left: 0; padding-right: 0; }
  .hero-wrap { width: 100%; height: auto; position: relative; }
}

@media (max-width: 767px) {
  .mh-list-header-row { font-size: 0.9rem; }
  .mh-split-body.finished .mh-list-item { font-size: 0.8rem; padding: 10px; }
  .mh-split-wrap { min-height: 500px; }
  .mh-split-body { grid-template-columns: 1fr; grid-template-rows: min-content 1fr; align-items: stretch; }
  
  .mh-zone-active { border-right: none; border-bottom: 2px solid var(--mh-black); min-height: 250px; height: auto !important; }
  .mh-zone-list { min-height: 300px; }
  .mh-label { font-size: 0.9rem; }
  .mh-text-bad { font-size: 1rem; }
  .mh-text-good { font-size: 1.1rem; }
  .mh-list-item { font-size: 0.75rem; display: none; }
  .mh-list-item.revealed { display: grid; }
  .mh-split-body.finished { grid-template-columns: 1fr; grid-template-rows: 0fr 1fr; }
  
  .mh-split-body.finished .mh-zone-active { min-height: 0 !important; height: 0 !important; padding: 0 !important; border-bottom: none; opacity: 0; }
}


@media screen and (max-width: 991px) {
  
  .content-5-5 { display: flex; flex-flow: column; column-gap: 2em; row-gap: 2em; }
  .content-5-5.cc { column-gap: 0; row-gap: 0; }
  
  #live-demo .dyn-content { margin-top: var(--sp-xl); }
  
  #performance-sprechstunde .text-content { order: -9999; }
  .btn-weiterlesen { display: block; color: rgba(0,0,0,0.58); margin-top: 10px; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; cursor: pointer; }
  .btn-weiterlesen .bold-text-11 { text-decoration: underline; }
  .check-list.hidden-p { display: none; }
  .check-list.hidden-p.is-open { display: block; }
}
@media (max-width: 768px) {
  .mh-roi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .mh-price-table thead { display: none; }
  .mh-price-table, .mh-price-table tbody, .mh-price-table tr, .mh-price-table td { display: block; width: 100%; }
  .mh-price-table tr { border-bottom: 2px solid #000; padding: 1rem 0; }
  .mh-price-table td { border: none; padding: 0.5rem 12px; }
  .mh-price-table td:first-child { padding-top: 0; }
  .mh-price-table td strong { font-size: 1.2rem; text-transform: uppercase; }
  .mh-price-tag { margin-top: 10px; padding: 8px; background: #f9f9f9; display: inline-block; width: auto; }
}
@media (max-width: 600px) {
  .mh-conf-wrapper { padding: 1rem; }
  .mh-sub { margin-bottom: 1.25rem; }
  .mh-section-head { margin-bottom: 1.25rem; }
  .mh-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
  .mh-card { padding: 0.9rem; min-height: 90px; }
  .mh-icon { font-size: 1.5rem; margin-bottom: 0.35rem; }
  .mh-input-group { margin-bottom: 1.25rem; }
  .mh-range-val { font-size: 1.4rem; margin-bottom: 0.4rem; gap: 8px; }
  .mh-btn { padding: 0.8rem 1rem; margin-top: 0.75rem; }
  .mh-btn-outline { margin-top: 0.5rem; }
  .mh-chart-wrapper { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .mh-finance-box { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .mh-modal-overlay { padding: 1rem; }
  .mh-modal-content { padding: 1.25rem; }
  .mh-price-table th, .mh-price-table td { padding: 8px; }
  .mh-timeline { padding-left: 24px; }
  .mh-timeline::before { left: 8px; }
  .mh-timeline-dot { left: -24px; width: 20px; height: 20px; }
  .mh-timeline-dot.mh-timeline-dot-check { width: 24px; height: 24px; }
  .mh-cal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 380px) {
  .mh-grid-2 { grid-template-columns: 1fr; }
  .mh-cal-grid { grid-template-columns: repeat(2, 1fr); }
}


@media screen and (max-width: 479px) {
  #live-demo .button.is-primary { color: #000; border: 1px solid #000; }
  .block-next-steps-2 .button.is-primary { color: #000; border: 1px solid #000; }
  .block-next-steps-2 .button.is-primary.button-dark { color: #fff; border: 1px solid #000; }
}


@media screen and (max-width: 991px) {
  .padding-section-large.top-padding-off { padding-bottom: 4rem; }
  .leistungen-collection-list { grid-template-columns: 1fr 1fr; grid-row-gap: 24px; }
}
@media screen and (max-width: 767px) {
  ._w-check-block { padding-left: 40px; padding-right: 40px; }
  .leistungen-content { grid-column-gap: 15px; grid-row-gap: 15px; width: 100%; }
  .leistungen-collection-list { grid-template-columns: 1fr; }
  .leistungen-card-ex-1, .leistungen-card-ex-2, .leistungen-card-ex-3,
  .leistungen-card-ex-4, .leistungen-card-ex-5, .leistungen-card-ex-6 { padding-top: 0; }
  .block-next-steps-leistungen { margin-top: 1rem; }
}
@media screen and (max-width: 479px) {
  .single-top-down { grid-column-gap: 20px; grid-row-gap: 20px; margin-top: 20px; margin-bottom: 20px; }
  .centered-heading { margin-bottom: 24px; }
  ._w-check-block { padding-left: 20px; padding-right: 20px; }
  .text-content-center { max-width: none; }
  .calculation-tool { max-width: 100%; margin-left: 0; margin-right: 0; padding-left: 20px; padding-right: 20px; }
  .block-next-steps { grid-column-gap: 10px; grid-row-gap: 10px; }
  .leistungen-content { padding-top: 2rem; padding-bottom: 2rem; }
  .leistungen-collection-list { grid-column-gap: 0; grid-row-gap: 0; flex-flow: column; display: flex; }
  .leistungen-card-1, .leistungen-card-2, .leistungen-card-3,
  .leistungen-card-4, .leistungen-card-5, .leistungen-card-6 { display: block; }
  .heading-style-h5-leistungen { font-size: 1.75rem; }
  .heading-style-h5 { font-size: 1.75rem; }
  .desc-leistung { font-size: 0.9rem; }
  .paragraph-small.leistungen { font-size: 0.9rem; }
  .block-next-steps-leistungen { grid-column-gap: 20px; grid-row-gap: 20px; flex-flow: column; align-self: center; }

  
  #conversion-rechner .button.is-primary,
  .leistungen-collection-list .button.is-primary { color: #000; border: 1px solid #000; }
  .leistungen-collection-list .button.is-primary.button-dark { color: #fff; border: 1px solid #000; }
  ._w-check-block .button.is-primary.button-grey { color: #000; border: 1px solid #000; }
  ._w-check-block .button.is-primary.button-white { color: #fff; border: 1px solid #fff; }
}


@layer components {
  .mh-wizard-wrapper {
    
    --mh-wz-bg: #d1d1cf;
    --mh-wz-text: #000;
    --mh-wz-border: #000;
    --mh-wz-active: #000;
    --mh-wz-active-text: #fff;

    max-width: 800px;
    margin: 0 auto;
    background-color: var(--mh-wz-bg);
    color: var(--mh-wz-text);
    padding: 0;
    border: 1px solid var(--mh-wz-border);
    box-sizing: border-box;
    font-family: "Space Mono", monospace;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    box-shadow: none;
  }
  .mh-wizard-wrapper * { box-sizing: border-box; }

  .mh-w-progress { height: 4px; background: transparent; border-bottom: 1px solid var(--mh-wz-border); width: 100%; position: relative; }
  .mh-w-bar { height: 100%; background: var(--mh-wz-active); width: 25%; transition: width 0.4s ease; box-shadow: none; }

  .mh-w-header { padding: 2rem 2rem 1rem 2rem; border-bottom: none; }
  .mh-w-headline { font-family: "Thunder", sans-serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0; }
  .mh-w-sub { font-size: 1rem; opacity: 0.8; line-height: 1.5; color: var(--mh-wz-text); font-family: inherit; margin: 0; }

  .mh-w-body { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }
  .mh-w-step { display: none; animation: mhFadeIn 0.4s ease; height: 100%; }
  .mh-w-step.active { display: flex; flex-direction: column; }
  .mh-w-step:focus { outline: none; }

  .mh-opt-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
  .mh-opt-card { border: 1px solid var(--mh-wz-border); padding: 1.5rem; cursor: pointer; transition: all 0.2s ease; background: transparent; display: flex; align-items: center; gap: 15px; color: var(--mh-wz-text); }
  .mh-opt-card:hover { background-color: rgba(0, 0, 0, 0.05); }
  .mh-opt-card.is-wz-selected { background-color: var(--mh-wz-active); color: var(--mh-wz-active-text); border-color: var(--mh-wz-border); transform: none; }
  .mh-opt-icon { font-size: 1.5rem; width: 40px; text-align: center; }
  .mh-opt-title { font-weight: 700; display: block; margin-bottom: 2px; text-transform: uppercase; font-size: 0.9rem; }
  .mh-opt-desc { font-size: 0.9rem; opacity: 0.8; }

  .mh-label-cont { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: var(--mh-wz-text); display: block; margin-bottom: 8px; letter-spacing: 0.05em; }
  .mh-input-cont { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--mh-wz-border); color: var(--mh-wz-text); padding: 10px 0; font-size: 16px; outline: none; transition: 0.2s; font-family: inherit; border-radius: 0; }
  textarea.mh-input-cont { resize: vertical; min-height: 60px; border: 1px solid var(--mh-wz-border); padding: 10px; background: rgba(255, 255, 255, 0.3); }
  .mh-input-cont:focus { background: rgba(255, 255, 255, 0.5); }
  .mh-input-cont::placeholder { color: #666; font-style: italic; }

  .mh-tag-group { display: flex; flex-wrap: wrap; gap: 10px; }
  .mh-tag-opt { background: transparent; border: 1px solid var(--mh-wz-border); color: var(--mh-wz-text); padding: 8px 16px; font-size: 0.9rem; cursor: pointer; border-radius: 2px; transition: 0.2s; font-family: inherit; }
  .mh-tag-opt:hover { background: rgba(0, 0, 0, 0.05); }
  .mh-tag-opt.is-wz-selected { background: var(--mh-wz-active); color: var(--mh-wz-active-text); border-color: var(--mh-wz-active); font-weight: 600; }

  .mh-package-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .mh-package-card { border: 1px solid var(--mh-wz-border); padding: 1rem; cursor: pointer; display: flex; flex-direction: column; gap: 0.5rem; transition: all 0.2s; background: transparent; height: 100%; }
  .mh-package-card:hover { background: rgba(0, 0, 0, 0.05); }
  .mh-package-card.is-wz-selected { background: var(--mh-wz-active); color: var(--mh-wz-active-text); border-color: var(--mh-wz-active); }
  .mh-pkg-head { display: flex; justify-content: space-between; align-items: center; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 0.5rem; border-bottom: 1px solid rgba(0, 0, 0, 0.1); padding-bottom: 0.5rem; }
  .mh-package-card.is-wz-selected .mh-pkg-head { border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
  .mh-pkg-body { font-size: 0.8rem; line-height: 1.4; opacity: 0.9; }

  .mh-w-footer { margin-top: auto; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
  .mh-back-btn { background-color: transparent; border: 1px solid var(--mh-wz-border); color: var(--mh-wz-text); padding: 1rem 2rem; font-size: 0.9rem; font-weight: 600; cursor: pointer; border-radius: 2px; text-transform: uppercase; transition: opacity 0.2s; font-family: inherit; }
  .mh-back-btn:hover { background: rgba(0, 0, 0, 0.05); }
  .mh-wz-next-btn { background-color: var(--mh-wz-active); color: var(--mh-wz-active-text); border: 1px solid var(--mh-wz-active); padding: 1rem 2.5rem; font-size: 0.9rem; font-weight: 600; cursor: pointer; border-radius: 2px; text-transform: uppercase; transition: opacity 0.2s; font-family: inherit; }
  .mh-wz-next-btn:hover { opacity: 0.8; transform: none; box-shadow: none; }
  .mh-wz-next-btn:disabled { opacity: 0.3; cursor: not-allowed; background: var(--mh-wz-active); color: var(--mh-wz-active-text); }

  

  
  
  .mh-hidden { display: none !important; }
  .mh-hp { display: none; }
  .mh-fieldset { border: 0; padding: 0; margin-inline: 0; min-inline-size: 0; }
  legend.mh-label-cont { padding: 0; }
  .mh-contact-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
  .mh-gdpr-row { display: flex; gap: 10px; align-items: center; margin-top: 1rem; font-size: 0.8rem; color: #000; }
  .mh-gdpr-row label { flex: 1; }
  .mh-gdpr-row input[type="checkbox"] { margin-top: 3px; accent-color: #000; }
  .mh-gdpr-row a { color: inherit; text-decoration: underline; display: inline; }
  .mh-w-error { margin: 1rem 0 0; color: #b00020; font-size: 0.85rem; font-family: inherit; }
  
  .mh-wizard-wrapper form[data-mh-form] { height: 100%; display: flex; flex-direction: column; }
}

@media (max-width: 600px) {
  .mh-w-body { padding: 1.5rem; }
  .mh-tag-group { flex-direction: column; }
  .mh-tag-opt { text-align: center; }
  .mh-package-grid { grid-template-columns: 1fr; }
  .mh-w-footer { flex-direction: column-reverse; gap: 1rem; }
  .mh-back-btn, .mh-wz-next-btn { width: 100%; }
}
@media (max-width: 479px) {
  .mh-wizard-wrapper { font-size: 0.9rem; }
  .mh-w-sub { font-size: 0.9rem; }
}



@layer components {
  
  .heading-style-h4 { text-transform: uppercase; padding-left: 0; padding-right: 0; font-size: 2.5rem; font-weight: 500; }
  .grid-boxes-4 { display: grid; grid-column-gap: 0px; grid-row-gap: 0px; grid-template-rows: auto; grid-template-columns: 25% 25% 25% 25%; grid-auto-columns: 1fr; }
  .saeule { display: flex; grid-column-gap: 15px; grid-row-gap: 15px; background-color: #fff; border: 1px solid #000; border-radius: 2px; flex-flow: column; height: 100%; margin-left: 15px; margin-right: 15px; padding: 20px 25px; text-decoration: none; box-shadow: 10px 10px #0003; color: inherit; }
  a.saeule { color: inherit; }
  .saeule.saeule-dark { color: #fff; background-color: #000; }

  
  .section-preise { position: relative; }
  .p-opener.sauele-dark { color: #fff9; }
  .grid-boxes-3 { display: grid; grid-column-gap: 0px; grid-row-gap: 0px; grid-template-rows: auto; grid-template-columns: 33% 33% 33%; grid-auto-columns: 1fr; }
  .preis-tag { display: flex; justify-content: flex-start; align-items: center; padding-left: 0; padding-right: 10px; font-family: "Thunder", sans-serif; font-size: 2rem; font-weight: 500; }
  .preis-ust { font-size: 0.72rem; letter-spacing: 0.02em; opacity: 0.75; margin: -2px 0 8px; } 
  
  .u-para { font-family: system-ui, -apple-system, "Segoe UI", sans-serif; }
  
  .preis-col { display: flex; flex-direction: column; align-items: flex-start; }
  .preis-col .preis-ust { margin: 2px 0 0; }
  .vorteile-liste { display: grid; grid-column-gap: 16px; grid-row-gap: 16px; grid-template-rows: auto auto; grid-template-columns: 10% 90%; grid-auto-columns: 1fr; }
  .vorteile-liste.preis-block { height: auto; min-height: 16rem; margin-top: 20px; }
  .vorteile-liste-content { max-width: 100%; }
  .paragraph-22 { font-family: "Space Mono", monospace; font-weight: 400; }
  .content-4-6 { display: grid; grid-column-gap: 0px; grid-row-gap: 0px; grid-template-rows: auto; grid-template-columns: 60% 40%; grid-auto-columns: 1fr; margin-bottom: 0; }
  .button.is-primary.button-dark.button-price { margin-top: 20px; }
  .button.is-primary.button-white.button-price { margin-top: 20px; }
  .button.is-primary.button-dark.button-price-2 { margin-top: 0; margin-right: 0; padding: .5rem 1rem; }
  
  .forms-div { grid-column: 1 / -1; }
  .mh-preset { margin-top: 40px; }
  html.js .mh-preset { display: none; }
  html.js .mh-preset.is-revealed { display: block; }

  
  html.js #form-general { display: none; }
  html.js #form-general.is-revealed { display: block; }

  
  .content-2-5-5 { display: flex; flex-flow: column; grid-column-gap: 20px; grid-row-gap: 20px; }
  .dyn-sprechstunde { position: relative; }
  .padding-section-large.bottom-padding-5-rem { padding-bottom: 5rem; }

  
  .mh-slot-card { background: #1a1a1a; border: 1px solid #333; padding: 2rem; border-radius: 2px; position: relative; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); color: #fff; font-family: system-ui, -apple-system, sans-serif; max-width: 400px; }
  .mh-card-header-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
  .mh-thunder-title { font-family: "Thunder", sans-serif; text-transform: uppercase; font-size: 2.5rem; line-height: 0.9; margin: 0; letter-spacing: 0.02em; }
  .mh-live-badge { display: flex; align-items: center; gap: 6px; background: rgba(255, 51, 51, 0.15); color: #f33; padding: 4px 8px; border-radius: 4px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; border: 1px solid rgba(255, 51, 51, 0.3); font-family: system-ui, sans-serif; margin-top: 5px; white-space: nowrap; color: #ff5555; }
  .mh-pulse { width: 8px; height: 8px; background-color: #f33; border-radius: 50%; animation: pulse-red 2s infinite; }
  @keyframes pulse-red { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 51, 51, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 51, 51, 0); } }
  .mh-check-list { list-style: none; padding: 0; margin: 0; font-family: system-ui, sans-serif; }
  .mh-check-list li { display: flex; gap: 10px; margin-bottom: 0.8rem; font-size: 0.9rem; align-items: center; }
  .mh-check-icon { color: #d1d1cf; }
  .mh-slot-avail { background: rgba(255, 255, 255, 0.05); padding: 0.8rem; border-radius: 2px; margin-top: 1.5rem; font-size: 0.8rem; text-align: center; }
  .mh-slot-avail strong { color: #fff; }
  .mh-emerg-btn { display: flex; justify-content: space-between; align-items: center; background: #fff; color: #000; text-decoration: none; padding: 1rem 1.5rem; font-weight: 700; font-size: 1rem; border-radius: 2px; transition: transform 0.2s; margin-top: 1.5rem; cursor: pointer; font-family: system-ui, sans-serif; width: 100%; border: none; text-align: left; }
  .mh-emerg-btn:hover { transform: scale(1.02); }
  .mh-slot-note { text-align: center; margin-top: 0.8rem; font-size: 0.7rem; opacity: 0.5; }

  
  .mh-booking-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); z-index: 9999; backdrop-filter: blur(5px); justify-content: center; align-items: center; padding: 1rem; font-family: system-ui, sans-serif; }
  .mh-booking-modal.open { display: flex; animation: mhFadeIn 0.3s ease; }
  .mh-booking-content { background: #fff; width: 100%; max-width: 500px; border-radius: 4px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); position: relative; color: #000; }
  .mh-cal-header { background: #000; color: #fff; padding: 1.5rem; text-align: center; display: flex; justify-content: space-between; align-items: center; }
  .mh-cal-nav { cursor: pointer; font-size: 1.5rem; user-select: none; width: 40px; background: transparent; border: none; color: #fff; line-height: 1; padding: 0; }
  .mh-cal-nav:hover { opacity: 0.7; }
  .mh-cal-month-title { font-weight: 700; font-size: 1.1rem; text-transform: uppercase; }
  .mh-cal-close { position: absolute; top: 10px; right: 13px; font-size: 1.5rem; cursor: pointer; background: transparent; border: none; color: #fff; line-height: 1; padding: 0 2px; min-height: 24px; }
  .mh-cal-body { padding: 1.5rem; }
  .mh-cal-grid-expr { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: 1rem; }
  .mh-cal-week { display: contents; }
  .mh-cal-head { text-align: center; font-size: 0.7rem; color: #737373; text-transform: uppercase; padding-bottom: 5px; }
  .mh-cal-day-expr { height: 40px; display: flex; justify-content: center; align-items: center; border-radius: 4px; cursor: pointer; font-size: 0.9rem; border: 1px solid transparent; transition: all 0.2s; }
  .mh-cal-day-expr:hover { background: #f0f0f0; }
  .mh-cal-day-expr.active { background: #000; color: #fff; font-weight: bold; }
  .mh-cal-day-expr.disabled { color: #ccc; cursor: not-allowed; text-decoration: line-through; background: transparent; }
  .mh-cal-day-expr.disabled:hover { background: transparent; }
  .mh-cal-day-expr.empty { cursor: default; }
  .mh-time-container { border-top: 1px solid #eee; padding-top: 1rem; margin-top: 1rem; display: none; }
  .mh-time-container.show { display: block; animation: mhSlideDown 0.3s ease; }
  .mh-time-label { font-weight: 700; font-size: 0.9rem; margin-bottom: 5px; }
  .mh-slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
  .mh-time-chip { border: 1px solid #000; padding: 8px; text-align: center; border-radius: 2px; cursor: pointer; font-size: 0.9rem; transition: 0.2s; }
  .mh-time-chip:hover { background: #eee; }
  .mh-time-chip.selected { background: #000; color: #fff; }
  .mh-confirm-btn { width: 100%; background: #f33; color: #fff; border: none; padding: 1rem; font-weight: 700; text-transform: uppercase; margin-top: 1.5rem; cursor: pointer; display: none; }
  .mh-confirm-btn--submit { display: block; }
  @keyframes mhSlideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

  
  .mh-hp-wrap { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
  .mh-form-terminbanner { background: #f5f5f5; padding: 0.8rem; border-radius: 4px; margin-bottom: 1.2rem; font-size: 0.85rem; text-align: center; }
  .mh-bk-group { margin-bottom: 0.8rem; }
  .mh-bk-label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 4px; }
  .mh-bk-input { width: 100%; padding: 0.6rem; border: 1px solid #ccc; border-radius: 2px; font-size: 0.9rem; box-sizing: border-box; }
  textarea.mh-bk-input { resize: vertical; }
  .mh-bk-gdpr { margin-bottom: 1rem; display: flex; gap: 8px; align-items: flex-start; }
  .mh-bk-gdpr input { margin-top: 3px; flex-shrink: 0; }
  .mh-bk-gdpr label { font-size: 0.75rem; line-height: 1.4; color: #555; }
  .mh-bk-gdpr a { color: #000; text-decoration: underline; display: inline; }
  .mh-bk-back-row { text-align: center; margin-top: 0.8rem; }
  .mh-bk-back { font-size: 0.8rem; color: #888; text-decoration: underline; }
  
  .mh-booking-success { display: none; text-align: center; padding: 1rem 0; }
  .mh-booking-success .mh-bk-success-icon { width: 44px; height: 44px; margin: 0 auto 0.6rem; border-radius: 50%; background: #000; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
  .mh-booking-success p { font-size: 0.85rem; color: #555; margin-top: 0.5rem; }
  [data-mh-cal-step2].is-complete .mh-booking-success { display: block; }
  [data-mh-cal-step2].is-complete #bookingForm,
  [data-mh-cal-step2].is-complete .mh-form-terminbanner { display: none; }
  .mh-booking-content .mh-w-error { color: var(--mh-fail, #f33); font-size: 0.85rem; margin-top: 0.8rem; text-align: center; }

  
  .service-grid { --stack-peek: 75px; z-index: 110; display: grid; grid-column-gap: 10%; grid-row-gap: 10%; grid-template-rows: auto; grid-template-columns: 50% 35%; grid-auto-columns: 1fr; align-items: start; height: auto; min-height: auto; margin-bottom: 0; padding-top: 0; padding-bottom: 0; position: relative; }
  .service-heading-wrapper { z-index: 200; display: flex; flex-flow: column; width: 100%; align-self: start; position: sticky; top: var(--scroll-offset); }
  .service-item-container { display: grid; grid-column-gap: 32px; grid-row-gap: 32px; grid-template-rows: auto; grid-template-columns: 1fr; grid-auto-columns: 1fr; grid-auto-rows: auto; max-width: 100%; margin-top: 0; padding: 0; position: static; }
  .single-service { display: flex; grid-column-gap: 2rem; grid-row-gap: 2rem; border: 1px solid var(--black); background-color: var(--light-grey); border-radius: 2px; flex-flow: column; align-items: flex-start; height: auto; padding: .4rem; position: sticky; top: var(--scroll-offset); overflow: visible; box-shadow: 0 2px 5px 2px #0003; }
  
  .single-service:nth-child(2) { top: calc(var(--scroll-offset) + 1 * var(--stack-peek)); }
  .single-service:nth-child(3) { top: calc(var(--scroll-offset) + 2 * var(--stack-peek)); }
  .single-service:nth-child(4) { top: calc(var(--scroll-offset) + 3 * var(--stack-peek)); }
  .single-service:nth-child(5) { top: calc(var(--scroll-offset) + 4 * var(--stack-peek)); }
  .single-service:nth-child(6) { top: calc(var(--scroll-offset) + 5 * var(--stack-peek)); }
  .card-content { display: flex; grid-column-gap: 40px; grid-row-gap: 40px; border: 1px solid #000; border-radius: 2px; flex-flow: column; justify-content: space-between; height: auto; padding: 2rem 1rem; }
  .service-content { grid-column-gap: 10px; grid-row-gap: 10px; flex-direction: column; align-items: flex-start; display: block; }
  .heading-style-h4-card { text-transform: uppercase; padding-left: 0; padding-right: 0; font-size: 1.7rem; font-weight: 500; }
  .paragraph-small.card.grey { color: #00000099; }
  .tittle-sticky-h3 { margin-bottom: 20px; font-size: 3.75rem; position: static; top: 60px; }

  
  .grid-boxes-2-1 { display: grid; grid-column-gap: 0px; grid-row-gap: 40px; grid-template-rows: auto; grid-template-columns: 50% 50%; grid-auto-columns: 1fr; }
  .grid-boxes-2 { display: grid; grid-column-gap: 0px; grid-row-gap: 40px; grid-template-rows: auto auto auto; grid-template-columns: 50% 50%; grid-auto-columns: 1fr; }
  .blackbox { display: flex; grid-column-gap: 20px; grid-row-gap: 20px; color: #fff; background-color: #000; flex-flow: column; justify-content: flex-start; margin-left: 20px; margin-right: 20px; padding: 40px 30px; }
  .blackbox.hell { color: #000; background-color: #f4f4f4; position: relative; }
  .div-block-29 { display: grid; grid-column-gap: 10px; grid-row-gap: 10px; grid-template-rows: auto; grid-template-columns: 10% 80% 10%; grid-auto-columns: 1fr; align-self: auto; }
  .blackbox-emoj { font-size: 2.5rem; }
  .blackbox-facts { display: flex; grid-column-gap: 0px; grid-row-gap: 0px; justify-content: space-between; align-self: center; align-items: center; margin-top: 20px; padding-left: 20px; padding-right: 20px; }
  ._w-grid-badge-e { z-index: 2; background-color: var(--black); width: auto; margin-top: 0; margin-left: 0; margin-right: 0; padding-left: 10px; padding-right: 10px; position: absolute; inset: 0% auto auto 0; }
  .paragraph-23 { color: var(--white); text-transform: uppercase; justify-content: center; align-items: center; margin-top: 0; margin-left: auto; margin-right: auto; display: flex; }

  
  .blackbox-arrow { display: flex; flex-flow: column; background: transparent; border: none; padding: 0; cursor: pointer; }
  .pfeil-aufklappen { display: block; transition: transform 0.2s ease; }
  .blackbox-arrow[aria-expanded="true"] .pfeil-aufklappen { transform: rotate(180deg); }
  .code-embed-6 { background-color: #000; align-self: center; margin-top: 20px; }
  .div-block-33, .div-block-34, .div-block-35, .div-block-36, .div-block-37, .div-block-38 { display: none; }
  .div-block-33.is-open, .div-block-34.is-open, .div-block-35.is-open, .div-block-36.is-open, .div-block-37.is-open, .div-block-38.is-open { display: block; }
  .block-quote { background-color: #ffffff12; margin-top: 20px; margin-bottom: 20px; }
  .italic-text-2 { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; font-size: .9rem; font-weight: 300; }
  .rich-text-block-4 { margin-top: 20px; margin-bottom: 20px; }

  
  .mh-h-btn { background-color: #df2d2d; color: #fff; font-family: "Space Mono", monospace; font-weight: 400; font-size: 1.125rem; border: none; border-radius: 2px; padding: 0.8rem 1.5rem; cursor: pointer; text-transform: uppercase; transition: transform 0.2s, background 0.2s; display: inline-block; text-decoration: none; line-height: 1; }
  .mh-h-btn:hover { background-color: #d00; transform: translateY(-2px); }
  .mh-h-btn:disabled { cursor: not-allowed; }
  .mh-h-modal { display: none; position: fixed; inset: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 9999; backdrop-filter: blur(5px); justify-content: center; align-items: center; padding: 20px; font-family: system-ui, -apple-system, sans-serif; }
  .mh-h-modal.is-open { display: flex; animation: mhHFadeIn 0.3s ease; }
  .mh-h-content { background: #1a1a1a; color: #fff; width: 100%; max-width: 700px; border: 1px solid #333; border-radius: 2px; overflow: hidden; max-height: 90vh; display: flex; flex-direction: column; box-shadow: 0 30px 80px rgba(0,0,0,0.8); }
  .mh-h-header { background: #000; padding: 1.5rem; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; }
  .mh-h-title { font-family: "Thunder", sans-serif; font-size: 2rem; text-transform: uppercase; line-height: 1; }
  .mh-h-close { cursor: pointer; font-size: 1.5rem; color: #fff; background: transparent; border: none; line-height: 1; transition: color 0.2s; }
  .mh-h-close:hover { color: #f33; }
  .mh-h-body { padding: 2rem; overflow-y: auto; }
  .mh-h-input-group { margin-bottom: 2rem; }
  .mh-h-input { width: 100%; background: transparent; border: none; border-bottom: 2px solid #fff; color: #fff; font-size: 1.5rem; font-family: "Space Mono", monospace; padding: 0.5rem 0; outline: none; margin-bottom: 1rem; }
  .mh-h-input::placeholder { color: #555; }
  .mh-h-check-wrap { display: flex; gap: 10px; font-size: 0.8rem; color: #ccc; align-items: flex-start; margin-bottom: 1.5rem; }
  .mh-h-check-wrap label { flex: 1; }
  .mh-h-checkbox { accent-color: #f33; width: 16px; height: 16px; cursor: pointer; margin-top: 2px; }
  .mh-h-result-box { background: #111; border: 1px solid #333; padding: 1.5rem; margin-bottom: 2rem; font-family: "Space Mono", monospace; font-size: 0.9rem; max-height: 300px; overflow-y: auto; }
  .mh-tag-row { margin-bottom: 8px; display: flex; align-items: baseline; }
  .mh-tag-badge { font-weight: 700; font-size: 0.7rem; padding: 2px 6px; border-radius: 2px; margin-right: 10px; min-width: 35px; text-align: center; display: inline-block; }
  .h-h1 { margin-left: 0; color: #fff; font-weight: 700; font-size: 1.1rem; border-bottom: 1px solid #333; padding-bottom: 5px; margin-bottom: 15px; }
  .h-h1 .mh-tag-badge { background: #f33; color: #fff; }
  .h-h2 { margin-left: 20px; color: #ddd; }
  .h-h2 .mh-tag-badge { background: #fff; color: #000; }
  .h-h3 { margin-left: 40px; color: #aaa; font-size: 0.85rem; }
  .h-h3 .mh-tag-badge { background: #333; color: #fff; border: 1px solid #555; }
  .h-h4, .h-h5, .h-h6 { margin-left: 60px; color: #777; font-size: 0.8rem; }
  .h-h4 .mh-tag-badge, .h-h5 .mh-tag-badge, .h-h6 .mh-tag-badge { background: transparent; border: 1px solid #333; color: #777; }
  .mh-h-info { background: rgba(255,255,255,0.05); padding: 1.5rem; border-left: 3px solid #00e676; }
  .mh-h-info h4 { margin: 0 0 0.5rem 0; text-transform: uppercase; font-size: 0.9rem; color: #00e676; }
  .mh-h-info ul { padding-left: 1rem; margin: 0; font-size: 0.9rem; color: #ccc; line-height: 1.5; }
  .mh-h-info li { margin-bottom: 0.5rem; }

  
  .mh-google-preview { background: #fff; padding: 15px; border-radius: 8px; margin-bottom: 1.5rem; font-family: Arial, sans-serif; }
  .mh-gp-url { color: #202124; font-size: 12px; margin-bottom: 2px; }
  .mh-gp-title { color: #1a0dab; font-size: 18px; line-height: 1.2; margin-bottom: 3px; cursor: pointer; text-decoration: none; }
  .mh-gp-title:hover { text-decoration: underline; }
  .mh-gp-desc { color: #4d5156; font-size: 13px; line-height: 1.4; }
  .mh-meta-stat { display: flex; justify-content: space-between; font-size: 0.8rem; border-bottom: 1px solid #333; padding-bottom: 8px; margin-bottom: 8px; }
  .mh-stat-label { color: #888; font-family: "Space Mono", monospace; }
  .mh-stat-val { color: #fff; font-weight: 700; }
  .val-good { color: #00e676; }
  .val-bad { color: #ff3333; }
  .val-warn { color: #ffb74d; }

  
  .mh-json-container { background: #111; border: 1px solid #333; padding: 1.5rem; border-radius: 4px; font-family: "Space Mono", monospace; font-size: 0.85rem; line-height: 1.5; color: #ccc; white-space: pre-wrap; overflow-x: auto; margin-bottom: 1.5rem; box-shadow: inset 0 0 20px rgba(0,0,0,0.5); }
  .json-key { color: #d1d1cf; font-weight: 700; }
  .json-string { color: #00e676; }
  .json-number { color: #ffb74d; }
  .json-boolean { color: #ff3333; }
  .json-null { color: #888; }
  .mh-schema-type { display: inline-block; background: #333; color: #fff; padding: 2px 8px; border-radius: 2px; font-size: 0.7rem; text-transform: uppercase; margin-bottom: 5px; font-family: system-ui, sans-serif; font-weight: 700; }

  
  .mh-code-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 1.5rem; }
  .mh-code-stat { background: #111; border: 1px solid #333; padding: 1rem; border-radius: 2px; display: flex; flex-direction: column; justify-content: center; text-align: center; }
  .mh-stat-big { font-family: "Thunder", sans-serif; font-size: 2.5rem; line-height: 0.9; color: #fff; margin-bottom: 5px; }
  .mh-stat-sub { font-size: 0.7rem; text-transform: uppercase; color: #888; letter-spacing: 0.05em; }
  .mh-bloat-box { background: rgba(255,51,51,0.1); border: 1px solid #f33; color: #f33; padding: 1rem; margin-bottom: 1.5rem; font-size: 0.9rem; border-radius: 2px; }
  .mh-clean-box { background: rgba(0,230,118,0.1); border: 1px solid #00e676; color: #00e676; padding: 1rem; margin-bottom: 1.5rem; font-size: 0.9rem; border-radius: 2px; }

  
  .mh-asset-header { display: grid; grid-template-columns: 2fr 1fr 0.5fr; gap: 10px; font-size: 0.7rem; text-transform: uppercase; color: #888; border-bottom: 1px solid #333; padding-bottom: 5px; margin-bottom: 10px; }
  .mh-asset-row { display: grid; grid-template-columns: 2fr 1fr 0.5fr; gap: 10px; padding: 10px 0; border-bottom: 1px solid #222; align-items: center; font-size: 0.85rem; }
  .mh-asset-name { font-family: "Space Mono", monospace; color: #fff; word-break: break-all; }
  .mh-asset-alt { color: #ccc; font-style: italic; font-size: 0.8rem; }
  .mh-asset-alt.missing { color: #f33; font-style: normal; }
  .mh-asset-badge { display: inline-block; padding: 2px 6px; border-radius: 2px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; text-align: center; }
  .bg-good { background: rgba(0,230,118,0.15); color: #00e676; border: 1px solid #00e676; }
  .bg-bad { background: rgba(255,51,51,0.15); color: #f33; border: 1px solid #f33; }
  .mh-asset-stats { display: flex; gap: 20px; margin-bottom: 1.5rem; background: rgba(255,255,255,0.05); padding: 1rem; border-radius: 2px; }
  .mh-stat-item strong { display: block; font-size: 1.2rem; font-family: "Thunder", sans-serif; line-height: 1; }
  .mh-stat-item span { font-size: 0.7rem; opacity: 0.7; text-transform: uppercase; }

  
  .mh-track-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 1.5rem; }
  .mh-tool-card { background: rgba(255,255,255,0.05); border: 1px solid #333; padding: 1rem; border-radius: 2px; display: flex; justify-content: space-between; align-items: center; }
  .mh-tool-name { font-weight: 700; font-size: 0.9rem; color: #fff; }
  .mh-tool-status { font-family: "Space Mono", monospace; font-size: 0.7rem; text-transform: uppercase; padding: 2px 6px; border-radius: 2px; }
  .status-found { background: rgba(0,230,118,0.2); color: #00e676; border: 1px solid #00e676; }
  .status-missing { background: rgba(255,255,255,0.1); color: #666; border: 1px solid #444; }
  .mh-privacy-box { padding: 1.5rem; border-radius: 2px; margin-bottom: 1.5rem; font-size: 0.9rem; }
  .mh-priv-ok { background: rgba(0,230,118,0.1); border: 1px solid #00e676; color: #00e676; }
  .mh-priv-bad { background: rgba(255,51,51,0.1); border: 1px solid #f33; color: #f33; }
  .mh-conv-list { background: #111; padding: 1rem; border: 1px solid #333; margin-top: 1rem; font-family: "Space Mono", monospace; font-size: 0.8rem; color: #ccc; }
}

@keyframes mhHFadeIn { from { opacity: 0; } to { opacity: 1; } }


@media screen and (max-width: 991px) {
  .service-grid { grid-column-gap: 3rem; grid-row-gap: 3rem; grid-template-columns: 1fr 1fr; }
  .service-heading-wrapper { position: sticky; }
  .single-service { position: sticky; }
  .heading-style-h4 { font-size: 2.2rem; }
  .tittle-sticky-h3 { font-size: 3rem; position: static; }
  .saeule { height: auto; margin-bottom: 10px; margin-left: 2.5px; margin-right: 2.5px; padding-left: 15px; padding-right: 15px; }
  .blackbox, .blackbox.hell { margin-left: 5px; margin-right: 5px; padding-left: 20px; padding-right: 20px; }
  .vorteile-liste.preis-block { grid-column-gap: 10px; grid-row-gap: 10px; height: auto; min-height: 30vh; }
  .div-block-29 { grid-template-columns: 15% 65% 15%; }
  .grid-boxes-4 { grid-template-rows: auto auto; grid-template-columns: 50% 50%; }
  .grid-boxes-2-1 { margin-bottom: -30px; }
  .blackbox-facts { grid-column-gap: 10px; grid-row-gap: 10px; }
  .heading-style-h4-card { font-size: 1.7rem; }
  .btn-weiterlesen.text-content-2 { margin-bottom: 100px; padding-bottom: 0; }
  
  .rich-text-block-4.hidden-p, .paragraph-small.hidden-p { display: none; }
  .rich-text-block-4.hidden-p.is-open, .paragraph-small.hidden-p.is-open { display: block; }
  
  .heading-large { font-size: 7.5rem; }
  .heading-large.contact { font-size: 15vh; }
  .cta-wrap { grid-column-gap: 24px; grid-row-gap: 24px; flex-direction: column; justify-content: center; align-items: flex-start; margin-bottom: 40px; padding-bottom: 10px; }
  .footer-link-wrap { grid-column-gap: 16px; grid-row-gap: 16px; flex-direction: column; align-items: flex-start; display: flex; }
  .footer-section { padding-bottom: 0; }
  .padding-section-medium { padding-top: 4rem; padding-bottom: 4rem; }
  .footer-link-container { grid-row-gap: .5rem; }
}
@media screen and (max-width: 767px) {
  .service-grid { flex-flow: column; grid-template-columns: 1fr; display: flex; }
  .service-heading-wrapper { order: -9999; position: static; top: auto; }
  
  .single-service { margin-top: 0; }
  .grid-boxes-2 { flex-flow: column; display: flex; }
  .grid-boxes-2-1 { flex-flow: column; display: flex; }
  .grid-boxes-3 { flex-flow: column; display: flex; }
  .grid-boxes-4 { grid-template-rows: auto auto; }
  .service-item-container { align-self: center; margin-left: auto; margin-right: auto; }
  .btn-weiterlesen.text-content-2 { margin-bottom: 0; padding-bottom: 0; }
  
  .heading-large { font-size: 5.5rem; }
  .heading-large.contact { font-size: 25vw; }
  .footer-section { padding-bottom: 0; }
  .padding-section-medium { padding-top: 3rem; padding-bottom: 2rem; }
  .text-size-large { font-size: 1rem; }
  .footer-link-container { grid-column-gap: 1rem; }
}
@media screen and (max-width: 479px) {
  .single-service { padding: 5px; }
  .tittle-sticky-h3 { margin-bottom: 20px; }   
  .heading-style-h4 { font-size: 2rem; }
  .grid-boxes-4 { grid-column-gap: 0px; grid-row-gap: 0px; grid-template-rows: auto auto auto auto; grid-template-columns: 100%; }
  .grid-boxes-2 { grid-row-gap: 20px; grid-template-rows: auto auto auto auto auto auto; grid-template-columns: 100%; }
  .grid-boxes-2-1 { grid-row-gap: 20px; flex-flow: column; margin-bottom: 0; display: flex; }
  .grid-boxes-3 { flex-flow: column; display: flex; }
  .content-4-6 { grid-column-gap: 40px; grid-row-gap: 40px; flex-flow: column; margin-bottom: 20px; display: flex; }
  .vorteile-liste.preis-block { height: auto; min-height: 22vh; }
  .paragraph-22 { font-size: .9rem; }
  
  .heading-large { font-size: 4.1rem; }
  .heading-large.contact { white-space: normal; font-size: 25vw; }
  .footer-link.text-color-white { text-align: center; }
  .footer-link-wrap { grid-column-gap: 24px; grid-row-gap: 24px; flex-direction: column; align-items: flex-start; }
  .footer-section { padding-bottom: 0; overflow: hidden; }
  .padding-section-large.bottom-padding-5-rem { padding-bottom: 5rem; }
  .padding-section-medium { padding-bottom: 1.75rem; }
  .text-size-large { font-size: 1rem; }
  .footer-link-container { grid-template-rows: auto auto; grid-template-columns: 1fr 1fr 1fr; }
  .content-2-5-5 { grid-column-gap: 10px; grid-row-gap: 10px; }
  .footer-additional-links-wrap { grid-template-rows: auto auto; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .mh-h-body { padding: 1.5rem; }
  .mh-code-grid, .mh-track-grid { grid-template-columns: 1fr; }
  .mh-h-title { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .service-heading-wrapper, .single-service { position: static; top: auto; }
}


@media screen and (min-width: 992px) {
  #content-design.padding-section-large,
  #prozess-automation.padding-section-large { padding-top: 56px; padding-bottom: 120px; }
  #live-demo.padding-section-large { padding-top: 101px; }
  .footer-section .padding-section-medium.bottom-2rem { padding-top: 69px; }

  
  .mh-slot-card { margin-inline: auto; }

  
  .content-5-5.cc { align-items: start; }

  
  .content-5-5.dual { align-items: start; }
}



@media screen and (max-width: 991px) {
  .padding-section-large,
  .padding-section-medium { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .padding-section-large.top-padding-off { padding-top: 0; }
  .padding-section-medium.bottom-2rem { padding-bottom: 2rem; }
}
@media screen and (max-width: 767px) {
  .padding-section-large,
  .padding-section-medium { padding-top: var(--m-sect-pad); padding-bottom: var(--m-sect-pad); }
  .padding-section-large.top-padding-off { padding-top: 0; }
  .padding-section-medium.bottom-2rem { padding-bottom: 2rem; }
  
  .block-next-steps { gap: 16px; }
  .block-next-steps-2 { gap: 16px; }
  
  .content-5-5 { row-gap: 2.25rem; }
}


.heading-style-h3 { font-size: 4rem; }
.tittle-sticky-h3 { font-size: 4rem; }
@media screen and (max-width: 991px) {
  .heading-style-h3 { font-size: 3.2rem; }
  .tittle-sticky-h3 { font-size: 3.2rem; }
}
@media screen and (max-width: 767px) {
  
  
  main h1:not([class]) { font-size: var(--m-fs-h1); }
  main h2:not([class]) { font-size: var(--m-fs-h2); }
  main h3:not([class]) { font-size: var(--m-fs-h3); line-height: 1.25; }
  main h4:not([class]), main h5:not([class]) { font-size: var(--m-fs-h3); }
  .heading-style-h3,
  .tittle-sticky-h3 { font-size: var(--m-fs-h2); line-height: 1.15; }
  .heading-style-h4,
  .heading-style-h5,
  .heading-style-h4-card,
  .heading-style-h5-leistungen { font-size: var(--m-fs-h3); line-height: 1.25; }
  
  .p-opener { font-size: var(--m-fs-eyebrow); letter-spacing: 0.08em; }
  
  main p,
  .paragraph-small,
  .paragraph-16,
  .paragraph-22,
  .p-block,
  main li,
  .check-list-item-text { font-size: 0.9rem; line-height: 1.55; }
  
  .p-lead { font-size: var(--m-fs-lead); line-height: 1.5; }
  
  .button,
  .mh-wz-next-btn,
  .mh-back-btn { font-size: 0.8rem; }
  
}


@media screen and (max-width: 767px) {
  .saeule { grid-row-gap: 8px; gap: 8px; }
}





.saeule > .button { margin-top: auto; }
.saeule > .wfh-preis-ctas { margin-top: auto; }


.mh-cert-modal .mh-cert-content { flex-direction: column; align-items: center; }
.mh-cert-modal .mh-cert-note {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 10px 0 0;
  padding: 10px 14px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 2px;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
  color: #333;
}


@media screen and (max-width: 767px) {
  
  main input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
  main select,
  main textarea,
  .mh-input,
  .branche-select {
    font-size: 1rem;
    min-height: 3rem;
  }
  main input[type="checkbox"],
  main input[type="radio"] { width: 1.5rem; height: 1.5rem; }
  

  
  .button.is-primary,
  .mh-btn,
  .mh-wz-next-btn,
  .mh-back-btn,
  .mh-link-btn,
  .mh-h-btn,
  .lp-roi-toggle {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  
  .footer-link,
  .btn-weiterlesen,
  .link-6 { display: inline-flex; align-items: center; min-height: var(--m-tap); }
  .nav-logo-link { display: inline-flex; align-items: center; min-height: var(--m-tap); }
  
  .mh-nav-btn { min-width: var(--m-tap); min-height: var(--m-tap); }
  .blackbox-arrow { min-width: var(--m-tap); min-height: var(--m-tap); display: inline-flex; align-items: center; justify-content: center; }
  
  .mh-info-trigger { position: relative; }
  .mh-info-trigger::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--m-tap);
    height: var(--m-tap);
    transform: translate(-50%, -50%);
  }
}


@media (hover: none) and (pointer: coarse) {
  .button.is-primary, .mh-btn, .pvd-open { transition: transform 120ms ease; }
  .button.is-primary:active, .mh-btn:active, .pvd-open:active { transform: scale(0.97); }
}
@media (prefers-reduced-motion: reduce) {
  .button.is-primary:active, .mh-btn:active, .pvd-open:active { transform: none; transition: none; }
}



.m-cta-bar { display: none; }
@media screen and (max-width: 767px) {
  
  .m-cta-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 0.5rem max(1rem, env(safe-area-inset-left))
             calc(0.5rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-right));
    background: rgba(244, 244, 244, 0.96);
    border-top: 1px solid var(--mh-black);
    backdrop-filter: blur(6px);
  }
  .m-cta-bar a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    background: var(--mh-black);
    color: var(--white);
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-transform: uppercase;
  }
  .m-cta-bar a:active { transform: scale(0.98); }
  body:has(.m-cta-bar) { padding-bottom: calc(4rem + env(safe-area-inset-bottom)); }
  @supports (animation-timeline: scroll()) {
    .m-cta-bar {
      animation: m-cta-rein linear both;
      animation-timeline: scroll(root);
      animation-range: 35% 42%;
    }
  }

  
  .nav-link { display: flex; align-items: center; min-height: var(--m-tap); }
  .nav-dropdown-link { display: flex; align-items: center; min-height: var(--m-tap); }

  
  main table { display: block; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  
  main .visually-hidden table { display: table; overflow: visible; }

  
  .content-5-5 > .dyn-content { min-width: 0; max-width: 100%; }
  .mh-conf-wrapper { max-width: 100%; box-sizing: border-box; overflow-x: auto; }

  
  .mh-checkbox-wrapper { min-height: var(--m-tap); align-items: center; }
  .mh-checkbox-wrapper input[type="checkbox"] { width: 1.5rem; height: 1.5rem; flex: 0 0 auto; }
  .mh-checkbox-wrapper label { display: flex; align-items: center; min-height: var(--m-tap); }
}
@keyframes m-cta-rein {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .m-cta-bar { animation: none !important; }
}


@media screen and (max-width: 991px) {
  main input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
  main select,
  main textarea { font-size: 1rem; }
  main input[type="checkbox"] { width: 1.5rem; height: 1.5rem; font-size: 1rem; }
  main .w-checkbox, main label:has(> input[type="checkbox"]) { display: flex; align-items: center; min-height: var(--m-tap); }
  main .w-checkbox a, main label a {
    display: inline-block;
    padding-block: 0.75rem;
    margin-block: -0.75rem;
  }
}


@media screen and (max-width: 991px) {
  
  #live-demo .text-content, #live-tools .text-content { display: contents; }
  #live-demo .dyn-content, #live-tools .dyn-content { order: 1; }
  #live-demo .text-content > .div-block-77,
  #live-tools .text-content > .div-block-77 { order: 2; margin-top: var(--sp-lg); }
  

  #demo-landingpages .text-content { display: contents; }
  #demo-landingpages .text-content > .margin-bottom:has(h2) { order: -1; }
}
@media screen and (max-width: 767px) {
  
  .block-next-steps, .block-next-steps-2 { flex-flow: row; flex-wrap: nowrap; gap: 10px; align-items: stretch; width: 100%; }
  .block-next-steps .button, .block-next-steps-2 .button { flex: 1 1 0; min-width: 0; display: inline-flex; align-items: center; justify-content: center; text-align: center; margin-top: 0; }

  
  .btn-weiterlesen[hidden], [data-benefits-toggle][hidden] { display: none !important; }

  
  .mh-roi-wrapper { margin: 1rem 0; }
  .mh-roi-grid { gap: 1.25rem; }
  .mh-roi-input-group { margin-bottom: 1rem; }
  .mh-roi-slider { margin: 1rem 0; }
  .mh-roi-value-display { font-size: 1.8rem; }
  .mh-roi-disclaimer { display: none; }
  .mh-roi-infobtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.25rem;   
    min-height: var(--m-tap);
    background: transparent;
    border: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
  }
  .mh-roi-infobtn .mh-roi-infoicon {
    text-transform: none;   
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 0.75rem;
    font-style: normal;
  }

  
  .leistungen-collection-list [data-leist-card].is-hidden { display: block; }
  .leistungen-collection-list [data-leist-ex] { display: none; }
  .leistungen-collection-list [data-leist-ex].is-open { display: block; }
  .leistungen-collection-list [data-leist-ex] .div-block-84 { display: none; }
  .leistungen-collection-list [data-leist-ex] { border: 0; padding: 0.25rem 0 0.5rem; margin-top: -1.25rem; }
  .leistungen-collection-list [data-leist-card][aria-expanded="true"] { border-bottom: 0; }
  .leistungen-collection-list [data-leist-ex] .block-next-steps-leistungen { display: flex; gap: 10px; margin-top: 0.75rem; }

  
  .blackbox-emoj { font-size: 1.75rem; line-height: 1.2; }

  
  .saeule:has(.preis-tag) .heading-style-h4 { font-size: 2rem; line-height: 1.1; }
  .saeule .preis-tag { font-size: 1.25rem; }
}

.mh-roi-litebox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 1.5rem; background: rgba(209, 209, 207, 0.95); backdrop-filter: blur(2px); }
.mh-roi-litebox.open { display: flex; }
.mh-roi-litebox .mh-modal-content { max-height: 80vh; overflow-y: auto; }
.mh-roi-infobtn { }
@media screen and (min-width: 768px) {
  .mh-roi-infobtn { display: none; }
}


@media screen and (max-width: 767px) {
  
  .leistungen-collection-list [data-leist-card] { position: relative; }
  
  .leistungen-collection-list [data-leist-card]::after {
    content: "";
    position: absolute;
    right: 0.9rem;
    top: 0.9rem;
    width: 20px;
    height: 20px;
    background: url("/images/pfeil-aufklappen-dark.png") center / contain no-repeat;
    transition: transform 200ms ease;
  }
  .leistungen-collection-list [data-leist-card][aria-expanded="true"]::after {
    transform: rotate(180deg);
  }
  
  .leistungen-collection-list [data-leist-ex].is-open { width: 100%; grid-column: 1 / -1; }
}
@media (prefers-reduced-motion: reduce) {
  .leistungen-collection-list [data-leist-card]::after { transition: none; }
}

.saeule:has(.preis-tag) { padding: 28px 30px; }
@media screen and (max-width: 991px) {
  .saeule:has(.preis-tag) { padding: 30px 26px; }
}


@media screen and (max-width: 991px) {
  
  .check-list.hidden-p.is-open,
  .paragraph-small.hidden-p.is-open,
  .rich-text-block-4.hidden-p.is-open { margin-bottom: 0; }
  .check-list.hidden-p.is-open > li:last-child { margin-bottom: 0; padding-bottom: 0; }
}


.div-block-62 { display: flex; align-items: stretch; gap: 10px; }
.div-block-62 .text-field { height: auto; margin-bottom: 0; flex: 1 1 auto; box-sizing: border-box; }
.div-block-62 .button-newsletter { flex: 0 0 auto; }
@media screen and (max-width: 767px) {
  .div-block-62 { flex-direction: column; align-items: stretch; }
  .div-block-62 .button-newsletter { width: 100%; }
}



.button, .w-button { display: inline-flex; align-items: center; justify-content: center; text-align: center; }


.saeule:has(.preis-tag) .vorteile-liste.preis-block { margin-bottom: 14px; }


.heading-style-h4-box-smal {
  font-family: "Thunder", sans-serif;
  text-transform: uppercase;
  align-self: center;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
  font-size: 2.5rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  
  .heading-style-h4-card { font-size: var(--m-fs-h3); line-height: 1.25; }
  
  .heading-style-h4-box-smal { font-size: var(--m-fs-h2); line-height: 1.15; }
}


@media (hover: none) {
  .leistungen-content:hover { color: inherit; background-color: transparent; }
  .leistungen-content:hover .badge { border-color: #000; }
}



.button.button.button, .w-button.w-button.w-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  
  .heading-style-h4-card.heading-style-h4-card.heading-style-h4-card { font-size: var(--m-fs-h3); line-height: 1.25; }
  
  .mh-switcher-title { font-size: 1rem; }
  .mh-switcher-title .mh-switcher-sub, .mh-switcher-title small { font-size: 0.75rem; }
  
  .author-quote-tool-text .heading-style-h3 { font-size: var(--m-fs-h2); }
}
@media screen and (max-width: 991px) {
  
  
  .paragraph-small.hidden-p.is-open, .rich-text-block-4.hidden-p.is-open { margin-bottom: 10px; }
}

.dyn-sprechstunde { position: relative; z-index: 1; }



@media screen and (max-width: 479px) {
  .button.button.on-nav { display: none; }
}
@media screen and (max-width: 767px) {
  
  .author-quote-tool-text .heading-style-h3 { transform: none; margin-bottom: 8px; }
}


@media screen and (max-width: 767px) {
  .mh-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: auto; height: auto; z-index: 1500; }
  .mh-modal-overlay .mh-modal-content { max-height: 80vh; overflow-y: auto; }
}


.mh-modal-title { color: #000; font-size: 0.75rem; }


@media screen and (max-width: 991px) {
  #live-demo .margin-bottom .p-opener, #live-demo .margin-bottom h2,
  #live-tools .margin-bottom .p-opener, #live-tools .margin-bottom h2,
  #demo-landingpages .margin-bottom .p-opener, #demo-landingpages .margin-bottom h2 { text-align: left; }
  
  #live-demo .margin-bottom:has(h2), #live-tools .margin-bottom:has(h2),
  #demo-landingpages .margin-bottom:has(h2) { align-self: stretch; width: 100%; }
}



@media screen and (max-width: 767px) {
  .mh-thunder-title { font-size: 1.5rem; }
  .mh-h-btn { font-size: 0.9rem; }
  .mh-roi-stat { font-size: 2rem; }  
  .mh-btn { font-size: 0.9rem; }     
  
  .hero-block .p-opener { text-align: center; }
  
  .mh-portrait-wrapper.mh-portrait-wrapper { max-width: 300px; margin-left: auto; margin-right: auto; }
}


.mh-portrait-wrapper .mh-cert-wrapper,
.mh-portrait-wrapper .mh-name-badge {
  z-index: 10;
}



.mh-portrait-wrapper .mh-portrait-img.mh-portrait-img {
  filter: none;
  -webkit-filter: none;
}

.mh-portrait-wrapper:hover .mh-portrait-img.mh-portrait-img {
  filter: none;
  -webkit-filter: none;
  transform: scale(1.02);
}

.mh-portrait-wrapper .mh-circle-bg.mh-circle-bg {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  transform: none;
  -webkit-transform: none;
}
.mh-portrait-img--sw.mh-portrait-img--sw {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.mh-portrait-wrapper:hover .mh-portrait-img--sw.mh-portrait-img--sw {
  opacity: 0;
  transform: scale(1.02);
}


.mh-res-card .mh-res-title.is-bar,
.mh-res-card .mh-res-desc.is-bar {
  display: block;
  border-radius: 2px;
  text-decoration: none;
}
.mh-res-card .mh-res-title.is-bar { height: 0.8em; width: 72%; background: #1a0dab; }
.mh-res-card .mh-res-desc.is-bar { height: 0.6em; width: 92%; background: #4d5156; margin-top: 6px; }


html.js .reveal.reveal-auto {
  opacity: 1;
  transform: none;
  transition: none;
  animation: mhRevealAuto 0.6s ease 0.15s both;
}
@keyframes mhRevealAuto {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal.reveal-auto { animation: none; }
}
